@font-face {
    font-family: 'Michigan';
    src: url('Michigan.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Modern Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    /* Colors - Premium Light Theme */
    --bg-main: #FAFAFA;
    --bg-secondary: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --accent-gold: #BC9051; /* Premium Altın Rengi */
    --accent-gold-hover: #9E7740;
    --accent-purple: #371B5B; /* Koyu Patlıcan Moru */
    
    /* Typography - New Premium Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Michigan', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.90);
    --glass-border: rgba(0, 0, 0, 0.03);
    --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.05);
}

/* Custom Selection */
::selection {
    background-color: var(--accent-purple);
    color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #e0d5e8; /* Light purple tint */
    border-radius: 10px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}


body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- General Styles --- */

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}
.navbar.scrolled {
    padding: 0rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.logo {
    font-family: var(--font-script);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.logo:hover {
    color: var(--accent-purple);
}
.logo.has-image {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.logo.has-image img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .logo.has-image img {
        max-height: 40px;
    }
}

.footer-logo {
    display: inline-block !important;
    font-size: 2.6rem !important;
    margin-bottom: 2rem !important;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--accent-purple);
}
.nav-links .instagram-link svg {
    stroke: var(--text-primary);
    transition: stroke 0.3s ease;
}
.nav-links .instagram-link:hover svg {
    stroke: var(--accent-purple);
}

.mobile-logo-item {
    display: none;
}

/* --- NEW Split Layout Hero Section --- */
.hero.split-layout {
    height: 100vh;
    display: flex;
    align-items: stretch;
    background-color: var(--bg-main);
}
.hero-text-side {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8% 0 10%;
    z-index: 2;
}
.hero-image-side {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
}
.ken-burns-wrapper {
    width: 100%;
    height: 100%;
}
.ken-burns-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurnsSmooth 20s infinite alternate linear;
}
@keyframes kenBurnsSmooth {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--text-primary);
}
.hero-title .highlight {
    color: var(--accent-purple);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 450px;
    line-height: 1.8;
}
.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-purple);
    color: #FFFFFF;
    border: 1px solid var(--accent-purple);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.4s ease;
    align-self: flex-start;
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-purple);
}

/* --- Common Section Styles --- */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.divider {
    height: 1px;
    width: 80px;
    background-color: var(--accent-purple);
    margin: 0 auto;
    position: relative;
}
.divider::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 25%;
    width: 50%;
    height: 1px;
    background-color: var(--accent-gold);
    opacity: 0.6;
}

/* --- Load More Button --- */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.btn-outline:hover {
    background: var(--accent-purple);
    color: white;
}

/* --- About Section --- */
.about-section {
    padding: 10rem 10% 8rem 10%;
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}
.about-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}
.about-image {
    width: 100%;
}
.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.about-title {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--text-primary);
}
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Sergiler Bölümü */
.about-exhibitions {
    margin-top: 2rem;
    text-align: left;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .about-exhibitions {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 4rem;
    }
}
@media (min-width: 1024px) {
    .about-exhibitions {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem 3rem;
    }
}
.exhibitions-header {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    display: block;
}
.ex-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.ex-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 500;
}
.ex-gallery {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.ex-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* --- Features Section --- */
.gallery-section {
    padding: 10rem 5%;
    background-color: var(--bg-secondary);
}
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Art Card */
.art-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.art-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.art-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 130%; /* Taller aspect ratio for elegance */
    background-color: #f0f0f0;
    overflow: hidden;
}
.art-image-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.art-card:hover .art-image-wrapper img {
    transform: scale(1.06);
}
/* Art Status Badge */
.art-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    backdrop-filter: blur(4px);
    border-radius: 2px;
}
.art-badge.mevcut {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}
.art-badge.satildi {
    background-color: rgba(26, 26, 26, 0.9);
    color: var(--bg-main);
}

/* Glassmorphism Details Overlay - Adapted for Light Theme & New Fonts */
.art-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(8px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}
.art-card:hover .art-details {
    transform: translateY(0);
    opacity: 1;
}
.art-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
}
.art-specs {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.art-story {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.art-specs {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: var(--bg-main);
    color: var(--text-primary);
    border: 1px solid #ddd;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border-color: #25D366;
}
.btn-whatsapp svg {
    width: 18px; height: 18px;
    fill: currentColor;
}
.btn-whatsapp.satildi {
    color: var(--text-secondary);
    border-color: #ddd;
}
.btn-whatsapp.satildi:hover {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* --- About Section --- */
.about-section {
    padding: 10rem 10%;
    background-color: var(--bg-main);
}
.about-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.about-text .divider {
    margin-bottom: 3rem;
}
.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 2;
}

/* --- NEW Contact Section --- */
.contact-section {
    padding: 8rem 10%;
    background-color: var(--bg-secondary);
}
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.contact-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: #25D366;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}
.btn-whatsapp-large:hover {
    background-color: #20b858;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-large.satildi {
    background-color: var(--text-primary);
    box-shadow: none;
}
.btn-whatsapp-large.satildi:hover {
    background-color: #333;
}
.btn-whatsapp-large svg {
    width: 24px; height: 24px;
    fill: currentColor;
}

/* --- Guarantee Section --- */
.guarantee-section {
    padding: 6rem 5%;
    background-color: var(--bg-main);
    border-top: 1px solid var(--glass-border);
}
.guarantee-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}
.guarantee-item {
    padding: 2rem;
    background-color: var(--bg-secondary);
    box-shadow: var(--glass-shadow);
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.guarantee-item:hover {
    transform: translateY(-10px);
}
.guarantee-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    stroke: var(--accent-purple);
    stroke-width: 1.5;
    margin-inline: auto;
    display: block;
}
.guarantee-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.guarantee-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    padding: 6rem 5%;
    background-color: var(--accent-purple);
    color: #FFFFFF;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-script) !important;
    font-size: 2.2rem;
    letter-spacing: 3px;
    color: #FFFFFF !important;
    margin-bottom: 2rem;
    text-transform: lowercase;
    text-decoration: none;
    display: inline-block;
}
.footer-logo.has-image img {
    filter: brightness(0) invert(1);
    max-height: 90px;
    object-fit: contain;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
}
@media (max-width: 768px) {
    .footer-logo.has-image img {
        max-height: 55px;
    }
}
.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.footer-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}
.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.footer-links a:hover {
    color: var(--accent-gold);
    opacity: 1;
}
.footer .instagram-link svg {
    stroke: #FFFFFF;
}
.footer .instagram-link:hover svg {
    stroke: var(--accent-gold);
}

/* --- New Detail Page Layout --- */
.detail-section {
    padding: 10rem 5% 5rem 5%;
    background-color: var(--bg-secondary);
    min-height: 100vh;
}
.detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.detail-images-wrapper {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.gallery-img-item {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background-color: var(--bg-main);
    border-radius: 4px;
}
.detail-info-side {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: sticky;
    top: 8rem;
    padding: 2rem 0;
}
.detail-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-purple);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.2;
}
.detail-story {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}
.detail-specs-grid {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.spec-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.spec-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-purple);
    opacity: 0.8;
    font-weight: 500;
}
.spec-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 400;
}
.not-found-message {
    text-align: center;
    padding: 5rem 0;
}
.not-found-message h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}


/* Responsive Design - Mobile Nav Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001; /* Above nav links */
}
.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Nav Active States */
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        gap: 2rem;
        padding: 4rem 0;
    }
    
    .mobile-logo-item {
        display: block !important;
        margin-bottom: 2rem;
    }
    
    .logo {
        font-size: 2.0rem;
        text-transform: lowercase;
    }
    
    .mobile-logo {
        font-size: 2.65rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        letter-spacing: 3px;
        text-transform: uppercase;
    }
    
    .nav-links a.logo {
        text-transform: lowercase !important;
    }

    .hero.split-layout {
        flex-direction: column;
        height: auto;
    }
    .hero-text-side, .hero-image-side {
        width: 100%;
        flex: none;
    }
    .hero-text-side {
        padding: 8rem 5% 4rem 5%;
        text-align: center;
        align-items: center;
    }
    .btn-primary {
        align-self: center;
    }
    .hero-image-side {
        min-height: 50vh;
    }
    .hero-title { font-size: 3.5rem; }
    
    .about-section {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        padding: 6rem 5%;
    }
    .about-top {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .about-content {
        order: 1;
        text-align: center;
    }
    .about-content .divider {
        margin: 0 auto !important;
    }
    .about-image {
        order: 0;
    }

    .detail-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .detail-gallery-column {
        order: 1;
        width: 100%;
    }
    .detail-images-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding-bottom: 0;
        scrollbar-width: none;
    }
    .detail-images-wrapper::-webkit-scrollbar {
        display: none;
    }
    .gallery-img-item {
        width: 100%;
        flex: 0 0 100%;
        max-height: 75vh;
        scroll-snap-align: start;
        border-radius: 0;
        box-shadow: none;
    }
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #ddd;
        transition: all 0.3s ease;
    }
    .dot.active {
        background-color: var(--accent-gold);
        transform: scale(1.3);
    }
    .detail-info-side {
        order: 2;
        width: 100%;
        position: static;
        padding: 2rem 5% 0 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .detail-specs-grid {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .detail-section { padding: 8rem 5% 5rem 5%; }
    .detail-title { font-size: 2.2rem; }
    
    .section-title { font-size: 2.5rem; }
    .hero-title { font-size: 2.8rem; }
    
    .gallery-section, .about-section, .contact-section {
        padding: 6rem 5%;
    }
    
    .art-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 2rem;
    }
    
    .btn-whatsapp-large {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.75rem;
    }
}

/* --- Lightbox / Detaylı İnceleme --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}
.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

.insta-handle {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.insta-handle:hover {
    color: var(--accent-gold);
}

/* --- Instagram Feed Bölümü --- */
.instagram-feed-section {
    padding: 8rem 5%;
    background-color: #fff;
    text-align: center;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.insta-item:hover img {
    transform: scale(1.08);
}
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(188, 144, 81, 0.2);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: opacity 0.3s;
}
.insta-item:hover .insta-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (max-width: 576px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}

/* =============================================
   Basın & Röportaj Bölümü (Modern Multi-Card Layout)
   ============================================= */
.press-section {
    padding: 8rem 5%;
    background-color: #fafafa;
}

.press-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
    justify-content: center;
    max-items: 3;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tekli veya ikili kart durumunda genişlik kısıtlama (Banner görünümünü engeller) */
@media (min-width: 800px) {
    .press-container:has(> :only-child),
    .press-container:has(> :nth-child(2):last-child) {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .press-container .press-card {
        max-width: 550px;
        width: 100%;
    }
}

.press-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    height: 100%;
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.press-image {
    height: 320px; /* Daha premium bir oran */
    overflow: hidden;
    position: relative;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.press-card:hover .press-image img {
    transform: scale(1.08);
}

.press-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    align-items: center;
}

.press-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.press-date {
    color: var(--text-muted);
    opacity: 0.7;
}

.press-date::before {
    content: "|";
    margin-right: 1rem;
    opacity: 0.5;
}

.press-item-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.press-item-spot {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-item-text-short {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.btn-press-read {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
}

.press-card:hover .btn-press-read {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #fff;
    transform: scale(1.05);
}

/* media queries for frontend press */
@media (max-width: 1200px) {
    .press-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .press-section {
        padding: 6rem 5%;
    }
    .press-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .press-item-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .press-container {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .press-section {
        padding: 6rem 5%;
    }
    .press-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .press-item-title {
        font-size: 1.6rem;
    }
    .press-content {
        padding: 2rem;
    }
}

