/* =========================================
   1. DEĞİŞKENLER VE LÜKS ROMA TEMASI
========================================= */
:root {
    --bg-marble: #E8E2D3;        
    --card-bg: transparent;          
    --burgundy-dark: #3D1014;    
    --gold: #C5A059;           
    --light-gold: #E2C986;
    --text-main: #2C1A1D;       
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sayfa Arka Planı: Hafifletilmiş desenler ve çok az beyaz yumuşatma katmanı */
body {
    background-color: var(--bg-marble) !important;
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.45) 0%, transparent 85%), /* Çok az beyaz bulanıklık/sis */
        radial-gradient(circle at 20% 20%, rgba(197, 160, 89, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(61, 16, 20, 0.18) 0%, transparent 50%),
        linear-gradient(135deg, rgba(61, 16, 20, 0.05) 25%, transparent 25%),
        linear-gradient(225deg, rgba(61, 16, 20, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, rgba(197, 160, 89, 0.07) 25%, transparent 25%),
        linear-gradient(315deg, rgba(197, 160, 89, 0.07) 25%, transparent 25%) !important;
    background-size: 100% 100%, 100% 100%, 100% 100%, 70px 70px, 70px 70px, 70px 70px, 70px 70px !important;
    background-attachment: fixed;
    position: relative;
}

/* Sayfa Çerçevesi ve Antik Köşe Süsleri */
.page-border-frame {
    position: fixed;
    top: 12px; left: 12px; right: 12px; bottom: 12px;
    border: 2px double rgba(197, 160, 89, 0.7);
    pointer-events: none;
    z-index: 90;
}

.corner-ornament-tl, .corner-ornament-tr, .corner-ornament-bl, .corner-ornament-br {
    position: fixed;
    width: 40px; height: 40px;
    border-color: var(--burgundy-dark);
    border-style: solid;
    z-index: 91;
    pointer-events: none;
    opacity: 0.8;
}
.corner-ornament-tl { top: 16px; left: 16px; border-width: 4px 0 0 4px; }
.corner-ornament-tr { top: 16px; right: 16px; border-width: 4px 4px 0 0; }
.corner-ornament-bl { bottom: 16px; left: 16px; border-width: 0 0 4px 4px; }
.corner-ornament-br { bottom: 16px; right: 16px; border-width: 0 4px 4px 0; }


/* =========================================
   2. ÜST BAR (TOP BAR / HEADER)
========================================= */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(232, 226, 211, 0.85) !important; 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(61, 16, 20, 0.15);
    z-index: 100;
}

.glass-header::before {
    content: '❖   IMPERIAL ROMAN AESTHETIC   ❖';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: var(--gold);
    opacity: 0.85;
    pointer-events: none;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--burgundy-dark);
    text-decoration: none;
    letter-spacing: 5px;
    position: relative;
    text-shadow: 1px 1px 3px rgba(197, 160, 89, 0.4);
}

.logo::before, .logo::after {
    content: '❦';
    color: var(--gold);
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.logo::before { left: -30px; }
.logo::after { right: -30px; }

/* Hamburger Butonu */
.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 105;
    padding: 12px;
    border: 1px solid rgba(197, 160, 89, 0.6);
    background: rgba(232, 226, 211, 0.5);
    transition: all 0.3s ease;
    user-select: none;
    width: 50px;
    height: 50px;
    align-items: center;
}

.hamburger:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.2);
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background-color: var(--burgundy-dark);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hamburger.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold);
}
.hamburger.active .line:nth-child(2) { opacity: 0; }
.hamburger.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold);
}

/* Tam Ekran Menü */
.fullscreen-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--burgundy-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 102;
    border-bottom: 5px double var(--gold);
}

.fullscreen-menu.active { top: 0; }

.menu-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.menu-links li { margin: 1.5rem 0; }

.menu-links a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--light-gold);
    text-decoration: none;
    letter-spacing: 4px;
    transition: color 0.4s;
    display: inline-block;
}

.menu-links a:hover { color: var(--gold); }


/* =========================================
   3. HERO VE BAŞLIKLAR
========================================= */
.hero, .page-header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.page-header { height: 60vh; }

.overlay-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content, .page-title-text {
    position: relative;
    z-index: 2;
    color: var(--text-main);
    max-width: 900px;
    padding: 4.5rem 3rem;
    background: rgba(232, 226, 211, 0.25) !important;
    backdrop-filter: blur(6px);
    border: 2px solid var(--gold);
    box-shadow: 0 25px 60px rgba(61, 16, 20, 0.15);
}

.hero-content::before, .hero-content::after, 
.page-title-text::before, .page-title-text::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    border: 2px solid var(--burgundy-dark);
    z-index: 3;
}
.hero-content::before, .page-title-text::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.hero-content::after, .page-title-text::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--burgundy-dark);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: var(--burgundy-dark);
    text-shadow: 2px 2px 8px rgba(197, 160, 89, 0.3);
}

.description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-style: italic;
}


/* =========================================
   4. BÖLÜMLER
========================================= */
.content-section {
    padding: 8rem 10%;
    position: relative;
    z-index: 2;
}

.textured-section {
    background: transparent !important;
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    position: relative;
}

.textured-section::before {
    content: '❖ ❖ ❖';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 15px;
    opacity: 0.8;
    pointer-events: none;
}

.roman-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3.5rem 0;
}
.roman-divider::before, .roman-divider::after {
    content: '';
    height: 1px;
    width: 140px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.roman-divider span {
    color: var(--burgundy-dark);
    font-size: 1.5rem;
    margin: 0 20px;
    font-family: serif;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.text-column { flex: 1; }
.image-column { flex: 1; }

.text-column h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--burgundy-dark);
    margin-bottom: 1.5rem;
}

.text-column p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-main);
}

.luxury-img {
    width: 100%;
    height: auto;
    border: 10px solid rgba(232, 226, 211, 0.8);
    outline: 1px solid var(--gold);
    box-shadow: 20px 20px 50px rgba(61, 16, 20, 0.15);
}


/* =========================================
   5. KOMİTELER VE KARTLAR
========================================= */
.committee-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.committee-row {
    display: flex;
    background: rgba(232, 226, 211, 0.35);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(197, 160, 89, 0.6);
    box-shadow: 0 20px 45px rgba(61, 16, 20, 0.1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 6px solid var(--gold);
}

.committee-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(197, 160, 89, 0.3);
    border-color: var(--burgundy-dark);
}



.committee-row:hover .committee-image img {
    transform: scale(1.05);
}

.committee-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.committee-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.3);
    font-weight: bold;
}

.committee-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--burgundy-dark);
    margin-bottom: 0.5rem;
}

.committee-info p {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.7;
}


/* =========================================
   6. BUTONLAR
========================================= */
.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--burgundy-dark);
    border: 1px solid var(--gold);
    background: var(--gold);
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: var(--gold);
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.btn-gold-solid, .btn-gold-outline {
    padding: 12px 25px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    text-align: center;
    flex: 1;
}

.btn-gold-solid {
    background-color: var(--gold);
    color: var(--burgundy-dark);
    border: 1px solid var(--gold);
    font-weight: 600;
}

.btn-gold-solid:hover {
    background-color: var(--burgundy-dark);
    color: var(--gold);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--burgundy-dark);
    border: 1px solid var(--burgundy-dark);
    font-weight: 600;
}

.btn-gold-outline:hover {
    background-color: var(--burgundy-dark);
    color: var(--gold);
}


/* =========================================
   7. BAŞVURU KARTLARI
========================================= */
.app-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
}

.app-luxury-card {
    background: rgba(232, 226, 211, 0.35);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(197, 160, 89, 0.6);
    border-bottom: 8px solid var(--gold);
    padding: 3.5rem 2rem 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 45px rgba(61, 16, 20, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-luxury-card::before {
    content: '❖';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.8;
}

.app-luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(197, 160, 89, 0.3);
    border-color: var(--burgundy-dark);
    border-bottom-color: var(--burgundy-dark);
}

.app-luxury-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--burgundy-dark);
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.btn-apply-card {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: var(--burgundy-dark);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.btn-apply-card:hover {
    background-color: var(--burgundy-dark);
    color: var(--gold);
}


/* =========================================
   8. ANİMASYONLAR VE UYUM
========================================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .glass-header { padding: 1.2rem 2.5rem; }
    .content-section { padding: 6rem 6%; }
    .content-wrapper { flex-direction: column; text-align: center; gap: 3rem; }
    .title { font-size: 3.5rem; }
    .app-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .page-border-frame, .corner-ornament-tl, .corner-ornament-tr, .corner-ornament-bl, .corner-ornament-br { display: none; }
}

@media (max-width: 768px) {
    .glass-header { padding: 1rem 1.5rem !important; }
    .logo { font-size: 1.5rem; letter-spacing: 2px; }
    .logo::before, .logo::after { display: none; }
    .title { font-size: 2.6rem; letter-spacing: 3px; }
    .hero-content, .page-title-text { padding: 2rem 1.5rem; }
    .committee-row { flex-direction: column; }
    .committee-info { padding: 2.5rem 1.5rem; }
    .app-cards-grid { grid-template-columns: 1fr; gap: 2rem; }
}








/* =========================================
   KOMİTE DETAY SAYFASI ÖZEL STİLLERİ
========================================= */
.committee-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem 2rem;
    position: relative;
    z-index: 2;
}

.committee-detail-box {
    background: rgba(232, 226, 211, 0.35);
    backdrop-filter: blur(6px);
    border: 2px solid var(--gold);
    padding: 4rem 3.5rem;
    box-shadow: 0 25px 60px rgba(61, 16, 20, 0.15);
    position: relative;
}

/* En üstteki ortalı büyük komite adı ve altındaki altın çizgi */
.committee-detail-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--burgundy-dark);
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(197, 160, 89, 0.3);
}

.committee-detail-divider {
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Paragraflar ve Açıklamalar */
.committee-description {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.section-heading-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--burgundy-dark);
    letter-spacing: 2px;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.section-content-item {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Geri Dönüş Butonu */
.back-to-committees-btn {
    display: inline-block;
    background-color: var(--burgundy-dark);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 30px;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-weight: 600;
}

.back-to-committees-btn:hover {
    background-color: var(--gold);
    color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
}



/* =========================================
   KOMİTE GÖRSELİ: BÜYÜTÜLMÜŞ KARE VE ÇERÇEVELİ YAPI
========================================= */
.committee-row {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 20px;
}

.committee-image {
    flex: 0 0 200px; /* Kare boyutunu biraz daha büyüttük */
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 15px rgba(61, 16, 20, 0.15);
    background-color: #fff;
    padding: 10px; /* Kenarlarla görsel arasındaki eşit boşluk */
    display: flex;
    align-items: center;
    justify-content: center;
}

.committee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.committee-row:hover .committee-image img {
    transform: scale(1.05);
}

/* Telefon Uyumu */
@media (max-width: 768px) {
    .committee-row {
        flex-direction: column !important;
        text-align: center;
    }
    .committee-image {
        flex: none !important;
        width: 170px !important;
        height: 170px !important;
        margin: 0 auto;
    }
}






/* =========================================
   LETTER FROM THE SECRETARY-GENERAL STİLLERİ
========================================= */
.sg-letter-container {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(232, 226, 211, 0.35);
    backdrop-filter: blur(6px);
    border: 2px solid var(--gold);
    padding: 4.5rem 4rem;
    box-shadow: 0 25px 60px rgba(61, 16, 20, 0.15);
    position: relative;
}

/* Köşelerdeki zarif süs çizgileri */
.sg-letter-container::before, .sg-letter-container::after {
    content: '';
    position: absolute;
    width: 25px; height: 25px;
    border: 2px solid var(--burgundy-dark);
    z-index: 3;
    pointer-events: none;
}
.sg-letter-container::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.sg-letter-container::after { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.sg-letter-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--burgundy-dark);
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(197, 160, 89, 0.3);
}

.sg-letter-divider {
    width: 120px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 3rem auto;
}

.sg-letter-content {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-main);
    text-align: justify;
}

.sg-letter-content p {
    margin-bottom: 1.8rem;
}

.sg-signature {
    margin-top: 3.5rem;
    text-align: right;
    font-family: var(--font-heading);
}

.sg-signature .sg-name {
    font-size: 1.3rem;
    color: var(--burgundy-dark);
    font-weight: 700;
    letter-spacing: 2px;
}

.sg-signature .sg-title {
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    font-style: italic;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .sg-letter-container {
        padding: 2.5rem 1.5rem;
    }
    .sg-letter-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    .sg-letter-content {
        font-size: 1.15rem;
        line-height: 1.8;
    }
}







/* =========================================
   CONTACT SAYFASI ÖZEL STİLLERİ
========================================= */
.contact-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem 2rem;
    position: relative;
    z-index: 2;
}

.contact-box {
    background: rgba(232, 226, 211, 0.35);
    backdrop-filter: blur(6px);
    border: 2px solid var(--gold);
    padding: 4rem 3.5rem;
    box-shadow: 0 25px 60px rgba(61, 16, 20, 0.15);
    position: relative;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--burgundy-dark);
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.contact-divider {
    width: 120px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 2.5rem auto;
}

.contact-intro {
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.6);
    border-top: 4px solid var(--burgundy-dark);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(61, 16, 20, 0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.contact-person-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--burgundy-dark);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.contact-person-role {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-details p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-box { padding: 2.5rem 1.5rem; }
    .contact-title { font-size: 2.2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}








/* =========================================
   LÜKS ROMA TEMALI FOOTER STİLLERİ
========================================= */
.site-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1rem 4rem 1rem;
    margin-top: 4rem;
}

.footer-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem auto;
}

.footer-rights {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-main);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.footer-credit {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--burgundy-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}



