/* ----------------------------
   GENEL AYARLAR
------------------------------*/

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    color: #111;
    scroll-behavior: smooth;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #0e0e0e;
        color: #eee;
    }
}
/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* DARALTILDI */
    z-index: 9999;
}

    /* LOGO */
    .navbar .logo {
        font-size: 22px; /* BİRAZ KÜÇÜLTÜLDÜ */
        font-weight: 700;
    }

/* MENU */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px; /* daralttık */
    box-sizing: border-box;
    z-index: 9999;
}

    .navbar .logo {
        font-size: 20px; /* biraz küçülttük */
        font-weight: 700;
    }

.nav-links {
    list-style: none;
    display: flex;
    gap: 12px; /* aralık daraltıldı */
    flex-wrap: nowrap; /* taşmayı önler */
    justify-content: flex-end;
    overflow: hidden; /* taşarsa gizle */
}

    .nav-links li a {
        text-decoration: none;
        color: white;
        font-size: 15px; /* biraz küçültüldü */
        white-space: nowrap; /* satır kırılmasın */
    }



/* ----------------------------
   HERO BÖLÜMÜ
------------------------------*/

/* HERO */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Sayfanın üstünde değil, aşağıda */
    padding-top: 180px; /* İKİLİ BLOĞU aşağıya indir */
    margin-top: 60px; /* Navbar boşluğu */
}

/* Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* İçerik */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column; /* ÜST ÜSTE */
    justify-content: center;
    align-items: center;
}



/* LOGO */
.hero-logo {
    width: 260px;
    height: auto;
    margin-bottom: 20px; /* Altta boşluk */
}

/* BUTON */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

    .btn:hover {
        background: #333;
    }

/* ----------------------------
   GENEL SECTIONS
------------------------------*/
.section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: auto;
}

    .section h2 {
        font-size: 36px;
        color: #d90429;
        margin-bottom: 40px;
        text-align: center;
    }

/* ----------------------------
   HİZMETLER
------------------------------*/
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.service-card {
    padding: 22px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 32px rgba(0,0,0,0.25);
    }

@media (prefers-color-scheme: dark) {
    .service-card {
        background: rgba(255,255,255,0.07);
        backdrop-filter: blur(6px);
        box-shadow: 0 0 16px rgba(217,4,41,0.25);
    }
}

/* ----------------------------
   SPOTIFY
------------------------------*/
.spotify-embed {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 20px;
}

/* ----------------------------
   KONUM / HARİTA
------------------------------*/
.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

@media (prefers-color-scheme: dark) {
    .map-container iframe {
        filter: invert(90%) hue-rotate(180deg);
    }
}

/* ----------------------------
   SOSYAL MEDYA
------------------------------*/
.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 80px;
    font-size: 20px;
}

    .social-links a {
        color: #d90429;
        font-weight: 600;
        transition: 0.3s;
        text-decoration: none;
    }

        .social-links a:hover {
            opacity: 0.7;
        }

/* ----------------------------
   WHATSAPP POPUP
------------------------------*/
.whatsapp-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50px;
    padding: 16px 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: 0.25s;
    opacity: 1;
    z-index: 99999 !important;
}

}

.whatsapp-popup a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
/* ----------------------------
   İLETİŞİM / SOSYAL BUTONLAR
------------------------------*/

.contact-section {
    background: #d90429;
    color: white !important;
    padding: 100px 40px 80px 40px; /* Alt padding var, ama margin YOK */
    margin: 0 !important; /* TÜM marginleri iptal */
    width: 100%;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

    /* Instagram */
    .social-btn.instagram {
        background: #e1306c;
    }

        .social-btn.instagram:hover {
            background: #b42555;
        }

    /* YouTube */
    .social-btn.youtube {
        background: #ff0000;
    }

        .social-btn.youtube:hover {
            background: #cc0000;
        }

    /* Spotify */
    .social-btn.spotify {
        background: #1DB954;
    }

        .social-btn.spotify:hover {
            background: #15963f;
        }
