/* Ayhan Projesi - Ana CSS DosyasÄ± */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Video gÃ¶rselleri iÃ§in Ã¶zel kurallar - en yÃ¼ksek Ã¶ncelik - EN ÃœSTTE */
.video-image-container,
.video-image-container *,
.video-image-container img,
.video-image,
.video-image-wrapper,
.video-image-wrapper img,
article.video-card .video-image,
article.video-card .video-image *,
.videolar-grid .video-image,
.videolar-grid .video-image *,
.videolar-section .video-image,
.videolar-section .video-image *,
.video-card .video-image,
.video-card .video-image *,
.video-image img,
.video-image-wrapper img,
div.video-image img,
.video-link .video-image img,
article.video-card .video-image img,
.videolar-grid .video-image img,
.video-link .video-image-container img,
.video-link .video-image-container,
article.video-card .video-image-container,
article.video-card .video-image-container img {



    
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #007bff;
    --text-color: #333;
    --bg-color: #fff;
    --border-color: #e0e0e0;
    --hover-color: #0056b3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-search {
    flex: 0 0 300px;
}

.search-form {
    display: flex;
    gap: 0;
}

.search-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.search-button {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
}

.search-button:hover {
    background: var(--hover-color);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Slider Section */
.slider-section {
    margin-bottom: 3rem;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
    z-index: 2;
}

.slider-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.slider-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.slider-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.slider-button:hover {
    background: var(--hover-color);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: white;
}

/* Reklam AlanlarÄ± */
.reklam-alanlari-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.reklam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reklam-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.reklam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reklam-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.reklam-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.reklam-image img,
.reklam-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reklam-image .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.reklam-card:hover .video-play-overlay {
    opacity: 1;
}

.reklam-placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.reklam-content {
    padding: 1.5rem;
}

.reklam-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.reklam-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Slider Section */
.slider-section {
    margin-bottom: 3rem;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
    z-index: 2;
}

.slider-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.slider-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.slider-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.slider-button:hover {
    background: var(--hover-color);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: white;
}

/* Reklam AlanlarÄ± */
.reklam-alanlari-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.reklam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reklam-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.reklam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reklam-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.reklam-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.reklam-image img,
.reklam-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reklam-image .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.reklam-card:hover .video-play-overlay {
    opacity: 1;
}

.reklam-placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.reklam-content {
    padding: 1.5rem;
}

.reklam-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.reklam-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* YazÄ±lar Section */
.yazilar-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.yazilar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.yazi-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.yazi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.yazi-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.yazi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yazi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yazi-content {
    padding: 1.5rem;
}

.yazi-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.kategori {
    color: var(--accent-color);
    font-weight: 600;
}

.yazi-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.yazi-title a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

.yazi-title a:hover {
    color: var(--accent-color);
}

.yazi-excerpt {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--hover-color);
}

.no-content {
    text-align: center;
    padding: 3rem;
    color: var(--secondary-color);
    grid-column: 1 / -1;
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-color);
}

/* YazÄ± Detay SayfasÄ± */
.yazi-detay-section {
    padding: 2rem 0;
}

.yazi-detay {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.yazi-header {
    margin-bottom: 2rem;
}

.yazi-baslik {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.yazi-kapak {
    margin-bottom: 2rem;
}

.yazi-kapak img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.yazi-icerik {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Yorumlar BÃ¶lÃ¼mÃ¼ */
.yorumlar-section {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.yorum-form-container {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.yorum-form-container h3 {
    margin-bottom: 1rem;
}

.yorum-form .form-group {
    margin-bottom: 1rem;
}

.yorum-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.yorum-form input,
.yorum-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.yorum-form textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--hover-color);
}

.yorumlar-listesi {
    margin-top: 2rem;
}

.yorum-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.yorum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.yorum-yazar {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.yorum-tarih {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.yorum-icerik {
    color: var(--text-color);
    line-height: 1.6;
}

.no-comments {
    text-align: center;
    padding: 2rem;
    color: var(--secondary-color);
}

/* Videolar */
.videolar-section {
    padding: 4rem 0;
}

.videolar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex !important;
    flex-direction: column !important;
}

.video-card .video-link {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
}

.video-card .video-link .video-image {
    
    flex-shrink: 0 !important;



}

.video-card .video-image {



    
    flex-shrink: 0 !important;
}

.video-card .video-image img {}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-image,
.video-image-wrapper {
    position: relative;
    width: 100%;


    overflow: hidden;
    background: #000;
    display: block;
}

.video-image {



    overflow: hidden !important;
    position: relative !important;
    clip-path: inset(0 0 0 0) !important;
}

.video-image img,
.video-image-wrapper img,
.video-image-container img {
    width: 100% !important;



    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    vertical-align: top !important;
    box-sizing: border-box !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    
}

.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
    max-height: none;
}

.video-link .video-image {



    
}

.video-image .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100% !important;

    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.youtube-logo {
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.9;
}

.video-content {
    padding: 1rem 1.5rem;
    flex: 1 1 auto;
    min-height: 0;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-title a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

.video-title a:hover {
    color: var(--accent-color);
}

.video-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.video-excerpt {
    color: var(--secondary-color);
    line-height: 1.6;
}

.video-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.2em;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
    flex-wrap: wrap;
}

.video-views {
    color: var(--secondary-color);
}

/* Video Cards */
.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.youtube-logo {
    background: red;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.video-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videolar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Video Detay */
.video-detay-section {
    padding: 2rem 0;
}

.video-detay {
    max-width: 1000px;
    margin: 0 auto;
}

.video-header {
    margin-bottom: 2rem;
}

.video-baslik {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.video-player {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
}

.video-player iframe,
.video-player video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

.video-aciklama {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Ä°letiÅŸim */
.iletisim-section {
    padding: 4rem 0;
}

.iletisim-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.iletisim-bilgileri h2,
.iletisim-formu h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.iletisim-item {
    margin-bottom: 1.5rem;
}

.iletisim-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.iletisim-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.iletisim-item a:hover {
    text-decoration: underline;
}

.sosyal-medya {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--hover-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}

.pagination-link:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.pagination-link.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.kategori-aciklama {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .yazilar-grid,
    .videolar-grid {
        grid-template-columns: 1fr;
    }

    .iletisim-content {
        grid-template-columns: 1fr;
    }

    .yazi-baslik,
    .video-baslik {
        font-size: 1.8rem;
    }

    .yorum-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-player {
        aspect-ratio: 16 / 9;
    }

    .video-detay {
        padding: 1rem;
    }
}

/* Hero Manset Section - Fatih AltaylÄ± Konsepti */
.hero-manset-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    height: 500px;
}

/* Main Hero */
.hero-main {
    position: relative;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-main:hover img {
    transform: scale(1.05);
    /* Zoom effect */
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #e0e0e0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Side Hero */
.hero-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.hero-side-item {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
}

.hero-side-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-side-item a {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.hero-side-img {
    flex: 0 0 160px;
    position: relative;
    overflow: hidden;
}

.hero-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-side-item:hover .hero-side-img img {
    transform: scale(1.1);
}

.hero-side-content {
    flex: 1;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    background: #fff;
    border-left: 1px solid #f0f0f0;
}

.hero-side-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.hero-side-item:hover .hero-side-title {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-main {
        height: 400px;
    }

    .hero-side {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-side-item {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .hero-main {
        height: 250px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-side-item {
        height: auto;
    }

    .hero-side-item a {
        flex-direction: column;
    }

    .hero-side-img {
        height: 180px;
        flex: auto;
    }

    .hero-side-content {
        padding: 1rem;
    }
}

/* Gunun Sozu Section - Fatih AltaylÄ± Konsepti */
.gunun-sozu-section {
    background: #fff;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.gunun-sozu-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #fffcf5;
    /* Creamy background */
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}

.gunun-sozu-wrapper::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
    line-height: 1;
}

.gunun-sozu-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gunun-sozu-wrapper blockquote {
    font-family: 'Times New Roman', Times, serif;
    /* Classical look */
    font-size: 1.6rem;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.gunun-sozu-wrapper cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 500;
}

/* Video Categories - Fatih AltaylÄ± Konsepti */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.section-header-flex .section-title {
    margin-bottom: 0;
    text-align: left;
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
    border-left: 5px solid var(--accent-color);
    line-height: 1;
}

.view-all {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    transition: all 0.3s;
}

.view-all:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.category-section {
    padding: 2rem 0;
}

/* Hizli Iletisim Kutusu - Fatih AltaylÄ± Konsepti */
.hizli-iletisim-section {
    padding: 3rem 0;
    margin: 2rem 0;
}

.hizli-iletisim-box {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hizli-iletisim-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hizli-iletisim-box p {
    color: #bdc3c7;
    margin: 0;
    font-size: 1.1rem;
}

.btn-iletisim {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-iletisim:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hizli-iletisim-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
/* Yazý Kartlarý Fix */
.yazi-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); transition: transform 0.3s, box-shadow 0.3s; height: 100%; display: flex; flex-direction: column; }
.yazi-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.yazi-image { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.yazi-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.yazi-card:hover .yazi-image img { transform: scale(1.05); }
.yazi-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.yazilar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

/* DEFENSIVE FIX: Squashed Video Cards */
.video-image, .video-card .video-image, .video-thumbnail img { aspect-ratio: 16 / 9 !important; height: auto !important; min-height: unset !important; max-height: unset !important; width: 100% !important; object-fit: cover !important; }
.video-card .video-image img { height: 100% !important; width: 100% !important; object-fit: cover !important; }

/* DEFENSIVE FIX V2: Unset Flex constraints */
.video-image, .video-card .video-image, .video-thumbnail img, .video-image-container, .video-link .video-image { flex: none !important; flex-basis: auto !important; height: auto !important; min-height: unset !important; max-height: unset !important; aspect-ratio: 16 / 9 !important; }


/* Gunun Sozu Grid Layout */
.gunun-sozu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .gunun-sozu-grid {
        grid-template-columns: 1fr;
    }
}

.gunun-sozu-card {
    padding: 2.5rem;
    background: #fffcf5;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gunun-sozu-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: rgba(0,0,0,0.05);
    font-family: serif;
    line-height: 1;
}

.gunun-sozu-card blockquote {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.4rem;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.gunun-sozu-card cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
    text-align: right;
}


/* Gunun Sozu Card Icon (Top Right Corner) */
.gunun-sozu-card::after {
    content: '“';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.gunun-sozu-card blockquote {
    position: relative;
    z-index: 2;
}


/* Gunun Sozu Uploaded Icon */
.gunun-sozu-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    z-index: 10;
}

.gunun-sozu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* CSS icon'u gizle eðer yüklenen ikon varsa */
.gunun-sozu-card:has(.gunun-sozu-icon)::after {
    display: none;
}

