/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   1. PROFESYONEL STİLLER VE DEĞİŞKENLER
   ========================================================================== */
:root {
    --primary-color: #007bff;
    --primary-color-darker: #0056b3;
    --primary-color-glow: rgba(0, 123, 255, 0.4);
    
    --background-color: #f0f2f5;
    --surface-color: rgba(255, 255, 255, 0.7);
    --text-color: #1c1e21;
    --text-muted-color: #5c6269;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.08);

    --border-radius: 12px;
    --transition-speed: 0.3s;
}

body.dark-mode {
    --primary-color: #33a1ff;
    --primary-color-darker: #0085ff;
    --primary-color-glow: rgba(51, 161, 255, 0.5);

    --background-color: #0d1117;
    --surface-color: rgba(22, 27, 34, 0.7);
    --text-color: #e6edf3;
    --text-muted-color: #8b949e;
    --border-color: rgba(255, 255, 255, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    overflow-x: hidden;
}

/* Modern Scrollbar Tasarımı */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--background-color); }
::-webkit-scrollbar-thumb { background-color: var(--primary-color); border-radius: 10px; border: 2px solid var(--background-color); }
::-webkit-scrollbar-thumb:hover { background-color: var(--primary-color-darker); }


h1, h2, h3 { line-height: 1.3; margin-bottom: 1rem; font-weight: 600; }
h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; }
a { text-decoration: none; color: var(--primary-color); transition: color var(--transition-speed) ease; }
a:hover { color: var(--primary-color-darker); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ==========================================================================
   2. HEADER & NAVİGASYON (GLASSMORPHISM)
   ========================================================================== */
.main-header {
    background: var(--surface-color); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color); padding: 1rem 0; position: sticky; top: 0; z-index: 1000;
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.corner-flag-image { position: absolute; top: 12px; left: 20px; width: 45px; height: auto; z-index: 1001; }

.corner-logo-image {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 85px;
    height: auto;
    z-index: 1001;
}
.logo { font-size: 1.5rem; font-weight: 700; color: var(--text-color); white-space: nowrap; }
.logo span { color: var(--primary-color); text-shadow: 0 0 10px var(--primary-color-glow); }

.main-nav ul { list-style: none; display: flex; align-items: center; margin: 0; padding: 0; }
.main-nav ul li { margin: 0 15px; }
.main-nav ul li a { color: var(--text-muted-color); font-weight: 500; position: relative; padding: 5px 0; }
.main-nav ul li a:not(.btn)::after {
    content: ''; position: absolute; width: 100%; height: 2px; bottom: 0; left: 0;
    background-color: var(--primary-color); transform: scaleX(0); transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.main-nav ul li a:not(.btn):hover::after, .main-nav ul li a.active:not(.btn)::after {
    transform: scaleX(1); transform-origin: bottom left;
}
.main-nav ul li a.active { color: var(--primary-color); }

.mobile-nav-flag {
    display: none;
}

.logo-image {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.language-switcher {
    position: relative;
    display: inline-block;
    margin-right: 15px; 
}

/* Açık Tema (default) için dil seçici */
.language-switcher select {
    background-color: #eee;
    color: #333;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

/* Koyu tema için dil seçici */
body.dark-mode .language-switcher select {
    background-color: #333;
    color: white;
    border-color: #555;
}


/* ==========================================================================
   3. SAYFA BÖLÜMLERİ
   ========================================================================== */
.hero {
    background: linear-gradient(rgba(13, 17, 23, 0.7), rgba(13, 17, 23, 0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726a?q=80&w=2070&auto-format&fit=crop') no-repeat center center/cover;
    min-height: 80vh; color: #fff; display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; padding: 4rem 0;
}
.hero h1 { font-size: 3.8rem; text-shadow: 0 0 20px var(--primary-color-glow); }
.hero-subtitle { font-size: 1.2rem; max-width: 650px; margin: 1rem 0 2rem 0; color: rgba(255,255,255,0.8); }
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.btn-secondary { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-secondary:hover { background: #fff; color: #000; border-color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.5); }
.hero b { font-size: 1.2rem; max-width: 600px; font-weight: 400; line-height: 1.7; }

.page-header { padding: 80px 0; text-align: center; }
.page-section { padding: 80px 0; }

.card-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; }
.team-grid .team-card { flex: 0 1 320px; }

.card, .event-card, .testimonial-slider {
    background: var(--surface-color); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color); border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.card:hover, .event-card:hover { transform: translateY(-10px); box-shadow: 0 0 25px var(--primary-color-glow); border-color: var(--primary-color); }
.card { padding: 2.5rem; text-align: center; }
.card i { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 1rem; text-shadow: 0 0 15px var(--primary-color-glow); }

.team-card {
    background: var(--surface-color); backdrop-filter: blur(10px); border: 1px solid var(--border-color);
    border-radius: var(--border-radius); text-align: center; overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.team-card:hover { transform: translateY(-10px); box-shadow: 0 0 25px var(--primary-color-glow); }
.team-card-img { width: 100%; height: 280px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body { padding: 1.5rem; }
.team-card-body .title { color: var(--primary-color); font-weight: 600; margin-bottom: 1rem; }
.team-card-body .subtitle {
    font-size: 0.9em;
    color: var(--text-muted-color);
    margin-top: -10px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.team-card-body .social-links a { color: var(--text-muted-color); font-size: 1.5rem; margin: 0 10px; }

/* ==========================================================================
   4. ANASAYFA BÖLÜMLERİ
   ========================================================================== */
.stats-section { background-color: var(--background-color); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; text-align: center; }
.stat-item i { font-size: 3rem; color: var(--primary-color); }
.stat-number { font-size: 3.5rem; font-weight: 700; margin: 0.5rem 0; }
.stat-label { font-size: 1.1rem; color: var(--text-muted-color); }

.events-section { background-color: var(--surface-color); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.events-grid { margin-top: 3rem; display: grid; gap: 2rem; }
.event-card { display: flex; align-items: center; padding: 1.5rem; }
.event-date { text-align: center; padding-right: 1.5rem; border-right: 2px solid var(--primary-color); font-weight: 600; }
.event-date span { font-size: 2.5rem; display: block; line-height: 1; color: var(--primary-color); }
.event-details { padding-left: 1.5rem; }
.event-details h3 { margin: 0 0 0.5rem 0; color: var(--text-color); }
.event-details p { margin: 0; color: var(--text-muted-color); }

.testimonials-section { position: relative; }
.testimonial-slider { max-width: 800px; margin: 3rem auto 0 auto; padding: 3rem; text-align: center; position: relative; overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-slide { min-width: 100%; box-sizing: border-box; opacity: 0; transition: opacity 0.5s ease-in-out; position: absolute; top: 3rem; left: 0; right: 0; }
.testimonial-slide.active { opacity: 1; position: relative; }
.testimonial-quote { font-size: 1.2rem; font-style: italic; color: var(--text-muted-color); margin-bottom: 2rem; }
.author-name { font-weight: 600; color: var(--text-color); }
.author-title { font-size: 0.9rem; color: var(--text-muted-color); }
.testimonial-nav { position: absolute; top: 50%; width: calc(100% - 40px); left: 20px; display: flex; justify-content: space-between; transform: translateY(-50%); }
.testimonial-nav button { background: var(--surface-color); border: 1px solid var(--border-color); color: var(--primary-color); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; transition: all 0.2s ease; }
.testimonial-nav button:hover { background-color: var(--primary-color); color: #fff; }

/* ==========================================================================
   5. HAKKIMIZDA SAYFASI
   ========================================================================== */
.about-intro-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem;
    align-items: center; margin-bottom: 5rem;
}
.about-intro-image img {
    width: 100%; border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}
.about-intro-text h2 { margin-top: 0; }
.mission-vision-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
}

/* ==========================================================================
   6. BUTONLAR, FORMLAR, FOOTER
   ========================================================================== */
.btn {
    display: inline-block; padding: 12px 28px; background-color: var(--primary-color); color: #fff;
    border: 1px solid var(--primary-color); border-radius: var(--border-radius);
    font-weight: 600; cursor: pointer; transition: all var(--transition-speed) ease;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn:hover {
    background-color: transparent; color: var(--primary-color);
    transform: translateY(-3px); box-shadow: 0 0 20px var(--primary-color-glow);
}
.form-container {
    max-width: 700px; margin: 2rem auto; padding: 2.5rem; background: var(--surface-color);
    backdrop-filter: blur(10px); border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.form-container iframe {
    width: 100%;
    height: 600px; 
    border: none;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px; border: 1px solid var(--border-color); border-radius: 8px; font-family: 'Poppins', sans-serif;
    background-color: var(--background-color); color: var(--text-color); transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.form-group textarea { resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary-color); box-shadow: 0 0 10px var(--primary-color-glow);
}
.main-footer {
    background-color: transparent; color: var(--text-muted-color); text-align: center;
    padding: 2.5rem 0; margin-top: 40px; border-top: 1px solid var(--border-color);
}
.main-footer .social-media-icons { margin-bottom: 1rem; display: flex; justify-content: center; gap: 25px; }
.main-footer .social-icon { font-size: 1.8rem; color: var(--text-muted-color); }

/* ==========================================================================
   7. İLETİŞİM SAYFASI
   ========================================================================== */
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start;
}
.contact-details, .contact-form-container {
    background: var(--surface-color); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 2.5rem;
}
.contact-details h2, .contact-form-container h2 { margin-top: 0; }
.contact-list { list-style: none; padding: 0; margin: 2rem 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-list i { font-size: 1.5rem; color: var(--primary-color); margin-top: 5px; }
.contact-list strong { display: block; color: var(--text-color); font-weight: 600; margin-bottom: 0.25rem; }
.contact-list p { margin: 0; color: var(--text-muted-color); }
.contact-social-icons { display: flex; gap: 1.5rem; margin-top: 2rem; border-top: 1px solid var(--border-color); padding-top: 2rem; }
.contact-social-icons .social-icon { font-size: 2rem; color: var(--text-muted-color); }
.contact-social-icons .social-icon:hover { color: var(--primary-color); }

/* ==========================================================================
   8. EFEKTLER & ANİMASYONLAR
   ========================================================================== */
.theme-switch-wrapper { display: flex; align-items: center; }
.theme-switch { display: inline-block; height: 24px; position: relative; width: 50px; }
.theme-switch input { display: none; }
.slider { background-color: #555; bottom: 0; cursor: pointer; left: 0; position: absolute; right: 0; top: 0; transition: .4s; }
.slider:before { background-color: white; content: ""; height: 16px; left: 4px; position: absolute; bottom: 4px; transition: .4s; width: 16px; }
input:checked + .slider { background-color: var(--primary-color); }
input:checked + .slider:before { transform: translateX(26px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* YENİ DUYURU SLIDER STİLLERİ */
.announcement-bar-slider {
    background-color: var(--primary-color);
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 48px; 
    text-align: center;
    font-weight: 500;
}

.announcement-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; 
    justify-content: center;
    align-items: center;
    opacity: 0; 
    transition: opacity 0.7s ease-in-out; 
}

.announcement-slide.active {
    opacity: 1; 
}

.announcement-slide i {
    margin-right: 10px;
}

[data-anim] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-anim="fade-in-up"] {
    transform: translateY(40px);
}
.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === YENİ EKLENDİ (SLIDER İÇİN) === */
/* Slayt geçişi için fade animasyonu */
@keyframes slider-fade {
    from {opacity: .6}
    to {opacity: 1}
}

/* ==========================================================================
   9. DUYURU KARTI STİLLERİ
   ========================================================================== */
#duyurular {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.duyuru-grid {
    margin-top: 3rem;
    display: grid;
    justify-content: center;
    gap: 2rem;
}

.duyuru-kart-tek {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    padding: 1.5rem 2rem;
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.duyuru-kart-tek:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 0 25px var(--primary-color-glow);
}

.duyuru-tarih-tek {
    padding-right: 2rem;
    font-weight: 600;
    text-align: center;
    border-right: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.duyuru-tarih-tek span {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--primary-color);
}

.duyuru-detay-tek {
    flex-grow: 1; 
}

.duyuru-detay-tek h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: var(--text-color);
}

.duyuru-detay-tek p {
    margin: 0;
    color: var(--text-muted-color);
    line-height: 1.7;
}

.duyuru-buton {
    display: inline-block;
    padding: 10px 24px;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-transform: uppercase;
    white-space: nowrap; 
    transition: all var(--transition-speed) ease;
}

.duyuru-buton:hover {
    color: var(--primary-color);
    background-color: transparent;
    transform: scale(1.05);
}

/* ==========================================================================
   10. FOTOĞRAF SLIDER (ANASAYFA) - (YENİ EKLENDİ)
   ========================================================================== */
.main-slider-section {
    width: 100%;
    position: relative;
    margin: 0 auto;
    background-color: var(--background-color);
    transition: background-color var(--transition-speed) ease;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 550px; /* Slider yüksekliği - Değiştirebilirsin */
    overflow: hidden;
    background: #111; /* Resimler yüklenene kadar koyu arka plan */
}

.slider-slide {
    display: none; /* JS ile 'display: block' yapılacak */
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    animation-name: slider-fade;
    animation-duration: 1.2s;
}

.slide-caption {
    position: absolute;
    bottom: 80px; /* Noktalara yer bırakmak için */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    
    /* Sitenin mevcut Glassmorphism stilini kullanalım */
    background: var(--surface-color); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    
    padding: 20px 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.slide-caption h2 {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
    color: var(--text-color); /* Ana metin rengini kullanalım */
}

.slide-caption p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-muted-color); /* Soluk metin rengi */
}

/* İleri/Geri Butonları (Testimonial butonları gibi stilize edildi) */
.slider-prev, .slider-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    transition: all var(--transition-speed) ease;
    user-select: none;
    
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%; /* Yuvarlak buton */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color-glow);
}

/* Navigasyon Noktaları */
.slider-dots {
    text-align: center;
    padding: 15px;
    background-color: var(--background-color); /* Sayfa arka planıyla aynı */
    transition: background-color var(--transition-speed) ease;
}

.slider-dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 5px;
    background-color: var(--text-muted-color);
    opacity: 0.5;
    border-radius: 50%;
    display: inline-block;
    transition: all var(--transition-speed) ease;
}

.slider-dot.active, .slider-dot:hover {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

/* ==========================================================================
   11. MOBİL UYUMLULUK (10. BÖLÜMDÜ, YENİDEN NUMARALANDI)
   ========================================================================== */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
    z-index: 1004;
    position: relative;
}
.mobile-nav { display: none; }

@media(max-width: 1024px) {
    .main-nav { display: none; }
    
    .corner-flag-image { 
        display: none; 
    }
    
    .corner-logo-image { 
        width: 70px;
        top: 50%; 
        right: 4px; 
        transform: translateY(-50%); 
    }
    
    .main-header .container {
        justify-content: center;
        position: relative;
    }

    .hamburger {
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        position: static;
        transform: none;
    }
    
    .mobile-nav { display: block; position: fixed; top: 0; left: -100%; width: 80%; max-width: 300px; height: 100%; background: var(--background-color); transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 10px 0px 30px rgba(0,0,0,0.2); z-index: 1003; }
    .mobile-nav.active { left: 0; }
    
    .mobile-nav-flag {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        width: 50px;
    }

    .mobile-nav ul { flex-direction: column; width: 100%; text-align: center; padding: 80px 1rem 1rem 1rem; list-style: none; align-items: flex-start; }
    .mobile-nav ul li { margin: 15px 0; width: 100%; text-align: left; }
    .mobile-nav ul li a { color: var(--text-color); font-weight: 600; font-size: 1.2rem; }
    
    .contact-wrapper,
    .about-intro-grid, 
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

@media(max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 80%; margin: 0 auto; }
    
    .duyuru-kart-tek {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    .duyuru-tarih-tek {
        padding-right: 0;
        padding-bottom: 1rem;
        border-right: none;
        border-bottom: 2px solid var(--primary-color);
    }
    .duyuru-detay-tek h3 {
        font-size: 1.3rem;
    }

    /* === YENİ EKLENDİ (SLIDER MOBİL) === */
    /* Fotoğraf Slider Mobil Stilleri */
    .slider-container {
        height: 350px; /* Mobil için daha kısa */
    }
    .slide-caption {
        bottom: 20px;
        padding: 15px 20px;
        max-width: calc(100% - 40px);
    }
    .slide-caption h2 {
        font-size: 1.5rem;
    }
    .slide-caption p {
        font-size: 0.9rem;
    }
    .slider-prev, .slider-next {
        font-size: 16px;
        width: 40px;
        height: 40px;
    }
    .slider-prev { left: 15px; }
    .slider-next { right: 15px; }
}

body.mobile-menu-open .corner-flag-image,
body.mobile-menu-open .corner-logo-image {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
}

.mobile-nav .language-switcher,
.mobile-nav .theme-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 0 5px;
}

.mobile-nav .language-switcher select {
    font-size: 1rem;
    padding: 5px 8px;
}

.mobile-nav .language-switcher .fa-globe {
    display: none;
}