/* ==========================================================================
   1. Genel Ayarlar ve Değişkenler
   ========================================================================== */

/* Google Fonts - Modern bir font ailesi */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Değişkenler - Renkleri tek bir yerden yönetmek için */
:root {
    --primary-color: #E5252A; /* CHP Kırmızısı */
    --secondary-color: #1A2E40; /* Koyu Mavi - Vurgu için */
    --background-color: #FFFFFF;
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --border-color: #dddddd;
}

/* Genel Sıfırlama ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Metin boyutunun beklenmedik şekilde ayarlanmasını engeller */
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. Header ve Navigasyon
   ========================================================================== */

.main-header {
    background-color: var(--background-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo a {
    display: inline-block;
}
.site-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    display: block;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover {
    background-color: var(--light-gray);
    border-bottom: 2px solid var(--primary-color);
}
.main-nav a.active {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-bottom: 2px solid var(--primary-color);
}

/* ==========================================================================
   3. Mobil Menü (Hamburger) Stilleri
   ========================================================================== */

.hamburger-btn {
    display: none;
}
.mobile-nav {
    display: none;
}

/* NOT: Bu bölümdeki media query, daha iyi organizasyon için aşağıya taşındı */

/* ==========================================================================
   4. Genel Sayfa Elementleri
   ========================================================================== */

.page-header-container {
    padding: 40px 0;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}
.page-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
}
.beta-notice {
    background-color: #fff3cd;
    color: #664d03;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #ffecb5;
}
.beta-notice p {
    margin: 0;
}

/* ==========================================================================
   5. Ana Sayfa Özel Stilleri
   ========================================================================== */

.hero {
    background-color: #fff;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 { font-size: 2.8rem; color: var(--secondary-color); margin-bottom: 15px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; color: #555; }
.ataturk-quote-section { position: relative; padding: 120px 20px; background-image: url('/images/ataturk.jpg'); background-size: cover; background-position: center center; background-attachment: fixed; text-align: center; }
.ataturk-quote-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.55); z-index: 1; }
.ataturk-quote-section .container { position: relative; z-index: 2; }
.ataturk-quote-section blockquote { color: #FFFFFF; font-size: 2.6rem; font-weight: 300; font-style: italic; line-height: 1.4; max-width: 800px; margin: 0 auto; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); border: none; padding: 0; position: relative; }
.ataturk-quote-section blockquote::before { content: ''; font-family: Georgia, serif; font-style: normal; position: absolute; top: -0.2em; left: -0.5em; font-size: 8em; line-height: 1; color: rgba(255, 255, 255, 0.15); z-index: -1; }
.principles-section { padding: 60px 0; background-color: var(--light-gray); }
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.principle-card { background: #fff; padding: 30px; text-align: center; border-radius: 8px; border-bottom: 4px solid var(--primary-color); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.principle-card img { height: 60px; margin-bottom: 20px; }
.principle-card h3 { color: var(--secondary-color); font-size: 1.3rem; margin-bottom: 10px; }

/* ==========================================================================
   6. İç Sayfa Stilleri
   ========================================================================== */

.main-content { padding: 60px 0; }
.main-content h2 { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: var(--secondary-color); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-card { background-color: #fff; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: var(--text-color); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.card-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.card-category { background-color: var(--primary-color); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 15px; align-self: flex-start; margin-bottom: 12px; }
.card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; color: var(--secondary-color); }
.card-excerpt { font-size: 0.95rem; flex-grow: 1; margin-bottom: 15px; }
.card-date { font-size: 0.85rem; color: #888; text-align: right; }
.all-news-button-container { text-align: center; margin-top: 40px; }
.all-news-button { display: inline-block; background-color: var(--secondary-color); color: #fff; padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 500; transition: background-color 0.3s; }
.all-news-button:hover { background-color: var(--primary-color); }
.instagram-promo-box { display: flex; align-items: center; background-color: #f9f9f9; border: 1px solid var(--border-color); padding: 25px; border-radius: 8px; margin-bottom: 50px; gap: 30px; flex-wrap: wrap; justify-content: center; }
.instagram-preview-img { max-width: 250px; width: 100%; height: auto; border-radius: 8px; border: 1px solid #ddd; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); flex-shrink: 0; }
.promo-content { text-align: center; }
.promo-content p { margin: 0; margin-bottom: 10px; font-size: 1.1rem; color: #555; }
.promo-content a { font-weight: 600; color: var(--primary-color); text-decoration: none; font-size: 1.1rem; }
.promo-content a:hover { text-decoration: underline; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.team-card { background-color: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 30px 20px; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); }
.president-title-header { text-align: center; font-size: 1.5rem; font-weight: 500; color: var(--text-color); margin-bottom: 25px; }
.president-section { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 40px; margin-bottom: 40px; }
.president-message { text-align: left; }
.president-message h3 { font-size: 1.8rem; font-weight: 600; color: var(--secondary-color); margin-bottom: 15px; }
.president-message p { font-size: 1.05rem; line-height: 1.7; color: #555; }
.section-divider { border: 0; height: 1px; background: var(--border-color); margin: 30px auto 50px auto; width: 80%; }
.team-card-img { width: 130px; height: 130px; border-radius: 12px; object-fit: cover; margin: 0 auto 20px auto; border: 4px solid #fff; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.team-card-name { font-size: 1.25rem; font-weight: 600; color: var(--secondary-color); margin: 0; }
.team-card-title { font-size: 1rem; color: var(--primary-color); font-weight: 500; margin-top: 5px; }
.bio-button { display: inline-block; background-color: var(--secondary-color); color: #fff; padding: 10px 25px; border-radius: 5px; text-decoration: none; font-weight: 500; margin-top: 20px; transition: background-color 0.3s, transform 0.2s; }
.bio-button:hover { background-color: #2c4a68; transform: scale(1.05); }
.bio-page-container { max-width: 800px; margin: 0 auto; padding-bottom: 60px; }
.bio-header { text-align: center; margin-bottom: 40px; }
.bio-photo { width: 180px; height: 180px; border-radius: 12px; object-fit: cover; margin-bottom: 20px; border: 5px solid #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.bio-name { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 5px; }
.bio-title { font-size: 1.2rem; color: var(--primary-color); font-weight: 500; }
.bio-details { margin-top: 30px; padding: 25px; background-color: var(--light-gray); border-left: 4px solid var(--primary-color); border-radius: 0 8px 8px 0; }
.bio-details p { font-size: 1.1rem; color: #333; margin-bottom: 15px; border-bottom: 1px dashed #ccc; padding-bottom: 15px; display: flex; align-items: center; flex-wrap: wrap; }
.bio-details p:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.bio-details strong { color: var(--secondary-color); display: inline-block; width: 150px; flex-shrink: 0; margin-bottom: 5px;}
.bio-content { font-size: 1.1rem; line-height: 1.8; color: #444; }
.bio-content p { margin-bottom: 1.5em; }
.back-link { display: inline-block; margin-top: 40px; color: var(--secondary-color); text-decoration: none; font-weight: 600; }
.back-link:hover { text-decoration: underline; }
.bio-email-link { display: inline-block; margin-top: 15px; color: #555; text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.3s; }
.bio-email-link:hover { color: var(--primary-color); }
.contact-intro { text-align: center; max-width: 700px; margin: 0 auto 50px auto; font-size: 1.1rem; color: #555; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.contact-card { background-color: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 35px 25px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1); }
.contact-card .icon-container { margin-bottom: 20px; }
.contact-card .icon-container svg { width: 50px; height: 50px; fill: var(--primary-color); }
.contact-card h3 { font-size: 1.4rem; color: var(--secondary-color); margin-bottom: 10px; }
.contact-card p { color: #666; margin-bottom: 25px; min-height: 48px; }
.contact-card .contact-link { display: inline-block; background-color: var(--secondary-color); color: #fff; padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 500; transition: background-color 0.3s; }
.contact-card .contact-link:hover { background-color: var(--primary-color); }
.contact-info { font-weight: 600; color: var(--secondary-color); font-size: 1.1rem; word-break: break-all; min-height: 0 !important; margin-bottom: 20px !important; }
.map-section { margin-top: 60px; }
.map-container { border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }
.form-container { max-width: 700px; margin: 0 auto; background-color: #fff; padding: 40px; border-radius: 8px; border: 1px solid var(--border-color); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; color: var(--secondary-color); }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 5px; font-size: 1rem; font-family: 'Poppins', sans-serif; }
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 5px rgba(229, 37, 42, 0.2); }
textarea.form-control { min-height: 150px; resize: vertical; }
.honeypot-field { display: none; }
.submit-btn { display: block; width: 100%; padding: 15px; background-color: var(--primary-color); color: #fff; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s; }
.submit-btn:hover { background-color: #c41a20; }
.form-message { padding: 20px; border-radius: 8px; margin-bottom: 20px; text-align: center; }
.form-success { background-color: #d1e7dd; color: #0f5132; border: 1px solid #badbcc; }
.form-error { background-color: #f8d7da; color: #842029; border: 1px solid #f5c2c7; }
.form-help-text { font-size: 0.85rem; color: #777; margin-top: 5px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; padding: 10px; background-color: #f8f9fa; border-radius: 5px; border: 1px solid var(--border-color); }
.checkbox-group input { width: auto; margin-top: 5px; }
.checkbox-group label { margin-bottom: 0; font-weight: normal; font-size: 0.9rem; color: #555; }
.andimiz-layout { display: flex; align-items: center; gap: 40px; }
.ataturk-image-container { flex: 1; max-width: 350px; }
.ataturk-image-container img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.oath-text-container { flex: 1.5; }
.oath-container { background: #fff; border-left: 5px solid var(--primary-color); padding: 25px 35px; font-size: 1.2rem; line-height: 2; }
.oath-container p { margin-bottom: 1em; }
.regulations-list { display: flex; flex-direction: column; gap: 15px; max-width: 900px; margin: 0 auto; }
.regulation-item { display: flex; align-items: center; background-color: #fff; border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; text-decoration: none; color: var(--text-color); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.regulation-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }
.regulation-item .icon { font-size: 2rem; color: var(--primary-color); margin-right: 20px; }
.regulation-item .content { display: flex; flex-direction: column; }
.regulation-item .title { font-size: 1.1rem; font-weight: 600; margin: 0; }
.regulation-item .date { font-size: 0.9rem; color: #777; margin-top: 5px; }

/* ==========================================================================
   7. Footer
   ========================================================================== */

.main-footer {
    background-color: #111;
    color: #f0f0f0;
    padding: 40px 0;
    border-top: 5px solid var(--primary-color);
}
.main-footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-about, .footer-links {
    flex: 1;
    min-width: 220px;
}
.footer-contact-wrapper {
    flex: 2;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-social, .footer-logo {
    flex-shrink: 0;
}
.footer-about h4, .footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--background-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    display: inline-block;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.social-icons a {
    display: inline-block;
    transition: transform 0.2s ease;
}
.social-icons a:hover {
    transform: scale(1.15);
}
.social-icons svg {
    width: 28px;
    height: 28px;
    fill: #ccc;
    transition: fill 0.3s;
}
.social-icons a:hover svg {
    fill: var(--primary-color);
}
.footer-action-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}
.footer-action-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.footer-logo img {
    max-width: 180px;
    height: auto;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
    width: 100%;
}

/* ==========================================================================
   FİNAL TASARIM: ETKİNLİK SAYFASI
   ========================================================================== */

.event-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}
.section-title.underlined {
    display: inline-block;
    border-bottom: 3px solid #e3000f;
    padding-bottom: 8px;
}
.event-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px; 
    align-items: center;
}
.event-image-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    line-height: 0;
}
.event-image-card img {
    width: 100%;
    height: auto;
    display: block;
}
.event-details-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 27.5px;
}
.event-details-card h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #e3000f;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}
.event-details-card .event-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}
.event-details-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}
.event-info {
    font-size: 1rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.7;
}
.event-info strong {
    color: #000;
}
.countdown-timer {
    display: flex;
    gap: 15px;
    text-align: center;
    flex-wrap: wrap; /* Küçük ekranlarda sığmazsa alt satıra geçsin */
}
.countdown-unit {
    background-color: #e3000f;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 70px;
    flex-grow: 1; /* Esnek büyüme */
}
.countdown-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}
.countdown-unit p {
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
}
.past-events-section {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}
.no-events-message {
    font-size: 1.1rem;
    color: #777;
    margin-top: 30px;
}


/* ==========================================================================
   8. Kapsamlı Mobil ve Tablet Uyumluluğu  -- YENİ EKLENEN BÖLÜM
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLET GÖRÜNÜMÜ (Örn: iPad Yatay) - Geniş Tabletler ve Küçük Laptoplar
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    /* Genel font boyutlarını ve boşlukları hafifçe azalt */
    .hero { padding: 60px 20px; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    
    .ataturk-quote-section { padding: 100px 20px; }
    .ataturk-quote-section blockquote { font-size: 2.2rem; }

    .event-details-card h2 { font-size: 2.2rem; }
}

/* --------------------------------------------------------------------------
   TABLET GÖRÜNÜMÜ (Örn: iPad Dikey) - Standart Tabletler
   -------------------------------------------------------------------------- */
@media (max-width: 850px) {
    /* Mobil Navigasyonu aktif et */
    .main-nav { display: none; }
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 2001;
    }
    .hamburger-btn .bar { width: 100%; height: 3px; background-color: var(--secondary-color); border-radius: 5px; transition: all 0.3s ease-in-out; }
    .hamburger-btn.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger-btn.active .bar:nth-child(2) { opacity: 0; }
    .hamburger-btn.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    .mobile-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 46, 64, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s ease-in-out;
        z-index: 2000;
    }
    .mobile-nav.active { left: 0; }
    .mobile-nav ul { list-style: none; text-align: center; }
    .mobile-nav li { margin: 20px 0; }
    .mobile-nav a { color: #fff; font-size: 1.8rem; text-decoration: none; }
    .mobile-nav a.active { color: var(--primary-color); }

    /* Etkinlik sayfasını tek sütuna düşür */
    .event-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .event-details-card {
        padding: 30px;
    }
}

/* --------------------------------------------------------------------------
   MOBİL GÖRÜNÜM (Örn: iPhone, Android Cihazlar) - Dikey Telefonlar
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px; /* Konteyner yan boşluklarını azalt */
    }

    /* Genel boşlukları ve fontları daha da küçült */
    .main-content, .principles-section, .event-section { padding: 40px 0; }
    .page-header-container { padding: 30px 0; margin-bottom: 30px; }
    .hero { padding: 50px 15px; }

    .page-title { font-size: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .ataturk-quote-section { padding: 80px 15px; background-attachment: scroll; /* Mobil performansı için parallax'ı kaldır */ }
    .ataturk-quote-section blockquote { font-size: 1.8rem; }
    .main-content h2, .section-title { font-size: 1.8rem; margin-bottom: 30px; }
    
    /* Başkanın Mesajı bölümünü dikey yap */
    .president-section { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .president-message { text-align: center; margin-top: 20px; }
    
    /* Andımız bölümünü dikey yap */
    .andimiz-layout { flex-direction: column; text-align: center; }
    .oath-container { text-align: left; padding: 20px 25px; font-size: 1.1rem; }

    /* Biyografi sayfasındaki detayları daha okunaklı yap */
    .bio-name { font-size: 2rem; }
    .bio-details p { flex-direction: column; align-items: flex-start; gap: 5px; }
    .bio-details strong { width: auto; font-weight: 600; }
    
    /* Footer düzenini tamamen dikey hale getir */
    .main-footer .container, .footer-contact-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-contact-wrapper {
        justify-content: center;
        gap: 40px;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-about h4, .footer-links h4, .footer-social h4 {
        display: block; /* Başlıkların tam genişlik kaplamasını sağla */
    }
}

/* --------------------------------------------------------------------------
   EN KÜÇÜK EKRANLAR İÇİN SON RÖTUŞLAR
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .container {
        padding: 0 10px; /* Kenar boşluklarını minimuma indir */
    }
    
    /* Form elemanlarını iyileştir */
    .form-container {
        padding: 20px;
    }
    .form-control {
        /* iOS'un otomatik zoom yapmasını engellemek için font boyutunu 16px'e ayarla */
        font-size: 16px !important;
    }
    .checkbox-group label {
        font-size: 1rem;
    }

    /* Geri sayım sayacını daha kompakt yap */
    .countdown-unit {
        padding: 8px 10px;
        min-width: 60px;
    }
    .countdown-unit span {
        font-size: 1.5rem;
    }
    .countdown-unit p {
        font-size: 0.7rem;
    }
    
    /* İletişim kartı ve bio sayfasındaki başlıklar */
    .contact-card h3 { font-size: 1.2rem; }
    .bio-name { font-size: 1.8rem; }
    .bio-title { font-size: 1.1rem; }
}