:root {
        --primary-color: #333333;
        --secondary-color: #555555;
        --text-color: #444444;
        --light-bg: #f8f8f8;
        --white: #ffffff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        --gold: #c5a059;
        --base-font: 'Poppins', sans-serif;
        --heading-font: 'Playfair Display', serif;
    }
    
    body {
        font-family: var(--base-font);
        background-color: var(--light-bg);
        color: var(--text-color);
        line-height: 1.6;
        margin: 0;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-transform: none !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: var(--heading-font);
        color: var(--primary-color);
        margin-top: 0;
        line-height: 1.3;
        font-weight: 700;
    }
    
    p, a, span, li, td, th, input, textarea, select, button {
        font-family: var(--base-font);
        text-transform: none;
        letter-spacing: 0.02em;
    }
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
    }
    
    /* Hero Bölümü */
    .hero-section {
        position: relative;
        height: 400px;
        margin-bottom: 60px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-content {
        position: absolute;
        z-index: 2;
        text-align: center;
        padding: 40px;
        color: white;
        max-width: 800px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        opacity: 0.9;
        margin-bottom: 30px;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }
    
    /* Sergiler Bölümü */
    .exhibitions-intro {
        text-align: center;
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .exhibitions-intro h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    
    .exhibitions-intro h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--gold);
    }
    
    .exhibitions-intro p {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }
    
    .exhibitions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .exhibition-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }
    
    .exhibition-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .exhibition-img-container {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    
    .exhibition-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .exhibition-card:hover .exhibition-img {
        transform: scale(1.05);
    }
    
    .exhibition-info {
        padding: 25px;
    }
    
    .exhibition-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: var(--primary-color);
    }
    
    .exhibition-meta {
        display: flex;
        justify-content: space-between;
        color: var(--secondary-color);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .exhibition-location {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .exhibition-location i {
        margin-right: 8px;
        color: var(--gold);
    }
    
    .exhibition-date {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .exhibition-date i {
        margin-right: 8px;
        color: var(--gold);
    }
    
    .exhibition-desc {
        margin-bottom: 15px;
        font-size: 0.95rem;
    }
    
    .exhibition-btn {
        display: inline-block;
        padding: 10px 25px;
        background: var(--gold);
        color: white;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        border: 1px solid var(--gold);
    }
    
    .exhibition-btn:hover {
        background: transparent;
        color: var(--gold);
    }
    
    /* Responsive Tasarım */
    @media (max-width: 1200px) {
        .exhibitions-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
    }
    
    @media (max-width: 992px) {
        .hero-content h1 {
            font-size: 3rem;
        }
        
        .exhibitions-intro h2 {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 768px) {
        body {
            font-size: 15px;
        }
        
        .hero-section {
            height: 300px;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
        }
        
        .hero-content p {
            font-size: 1.1rem;
        }
        
        .exhibitions-intro h2 {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        body {
            font-size: 14px;
        }
        
        .container {
            padding: 15px;
        }
        
        .hero-section {
            height: 250px;
        }
        
        .hero-content h1 {
            font-size: 2rem;
        }
        
        .exhibitions-grid {
            grid-template-columns: 1fr;
        }
    }
    
        /* Sadece Sergiler Sayfasına Özel Stiller */
        .sergiler-page {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }
        
        .sergiler-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            margin-top: 20px;
        }
        
        /* Hero Bölümü */
        .sergiler-hero-section {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-bottom: 50px;
            border-radius: 10px;
        }
        
        .sergiler-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sergiler-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 3px;
        }
        
        .sergiler-hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 30px;
            color: white;
            max-width: 600px;
        }
        
        .sergiler-hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .sergiler-hero-content p {
            font-size: 1.1rem;
        }
        
        /* Sergiler Giriş */
        .sergiler-intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }
        
        .sergiler-intro h2 {
            font-family: 'Playfair Display', serif;
            color: #333;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .sergiler-intro p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Sergiler Grid */
        .sergiler-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .sergiler-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .sergiler-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .sergiler-img-container {
            height: 250px;
            overflow: hidden;
        }
        
        .sergiler-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            cursor: pointer;
        }
        
        .sergiler-card:hover .sergiler-img {
            transform: scale(1.05);
        }
        
        .sergiler-info {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .sergiler-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin: 0 0 10px 0;
            color: #222;
        }
        
        .sergiler-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .sergiler-type {
            background: #f0f0f0;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .sergiler-year {
            color: #666;
            font-size: 0.9rem;
        }
        
        .sergiler-location, .sergiler-date {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #555;
            font-size: 0.9rem;
        }
        
        .sergiler-location i, .sergiler-date i {
            margin-right: 8px;
            color: #888;
        }
        
        .sergiler-desc {
            color: #666;
            font-size: 0.95rem;
            margin: 15px 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        
        .sergiler-btn-container {
            margin-top: auto;
            padding-top: 15px;
            text-align: center;
        }
        
        .sergiler-btn {
            display: inline-block;
            padding: 10px 25px;
            background: #333;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: background 0.3s ease;
            cursor: pointer;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }
        
        .sergiler-btn:hover {
            background: #555;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .sergiler-grid {
                grid-template-columns: 1fr;
            }
            
            .sergiler-hero-section {
                height: 300px;
            }
            
            .sergiler-hero-content h1 {
                font-size: 2rem;
            }
        }
        
        /* Eser bulunamadı mesajı */
        .sergiler-none {
            text-align: center;
            padding: 50px;
            font-size: 1.2rem;
            color: #666;
            grid-column: 1 / -1;
        }
               /* Sadece Sergiler Sayfasına Özel Stiller */
        .sergiler-page {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }
        
        .sergiler-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            margin-top: 20px;
        }
        
        /* Hero Bölümü */
        .sergiler-hero-section {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-bottom: 50px;
            border-radius: 10px;
        }
        
        .sergiler-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sergiler-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 3px;
        }
        
        .sergiler-hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 30px;
            color: white;
            max-width: 600px;
        }
        
        .sergiler-hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .sergiler-hero-content p {
            font-size: 1.1rem;
        }
        
        /* Sergiler Giriş */
        .sergiler-intro {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }
        
        .sergiler-intro h2 {
            font-family: 'Playfair Display', serif;
            color: #333;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .sergiler-intro p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Sergiler Grid */
        .sergiler-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .sergiler-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .sergiler-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .sergiler-img-container {
            height: 250px;
            overflow: hidden;
        }
        
        .sergiler-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            cursor: pointer;
        }
        
        .sergiler-card:hover .sergiler-img {
            transform: scale(1.05);
        }
        
        .sergiler-info {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .sergiler-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin: 0 0 10px 0;
            color: #222;
        }
        
        .sergiler-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .sergiler-type {
            background: #f0f0f0;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .sergiler-year {
            color: #666;
            font-size: 0.9rem;
        }
        
        .sergiler-location, .sergiler-date {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #555;
            font-size: 0.9rem;
        }
        
        .sergiler-location i, .sergiler-date i {
            margin-right: 8px;
            color: #888;
        }
        
        .sergiler-desc {
            color: #666;
            font-size: 0.95rem;
            margin: 15px 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        
        .sergiler-btn-container {
            margin-top: auto;
            padding-top: 15px;
            text-align: center;
        }
        
        .sergiler-btn {
            display: inline-block;
            padding: 10px 25px;
            background: #333;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: background 0.3s ease;
            cursor: pointer;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }
        
        .sergiler-btn:hover {
            background: #555;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .sergiler-grid {
                grid-template-columns: 1fr;
            }
            
            .sergiler-hero-section {
                height: 300px;
            }
            
            .sergiler-hero-content h1 {
                font-size: 2rem;
            }
        }
        
        /* Eser bulunamadı mesajı */
        .sergiler-none {
            text-align: center;
            padding: 50px;
            font-size: 1.2rem;
            color: #666;
            grid-column: 1 / -1;
        }