/* ===== RESET & GENEL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffcc00;
    --bg-dark: #111223;
    --bg-dark-alt: #1e1e34;
    --accent: #003366;
    --text: #f5f5f5;
    --muted: #ccccdd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #2b2b4f, #111223 55%, #05050e);
    color: var(--text);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 18, 51, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.nav-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-links {
    display: flex;
    gap: 18px;
}

.nav-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 999px;
    opacity: 0.9;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

.nav-link:hover {
    background: var(--primary);
    color: #003366;
    opacity: 1;
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(255,255,255,0.12);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 88vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    
    transform: translate(-50%, -50%);
    filter: brightness(0.35) contrast(1.2);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.25));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 16px;
    max-width: 640px;
    animation: heroFade 1.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 3px 3px 18px rgba(0,0,0,0.85);
}

.hero-content p {
    margin-top: 16px;
    font-size: 1rem;
    color: var(--muted);
}

.hero-divider {
    width: 110px;
    border: 3px solid var(--primary);
    margin: 26px auto 0 auto;
    border-radius: 3px;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
}

.hero-btn.primary {
    background: var(--primary);
    color: #003366;
    box-shadow: 0 12px 26px rgba(0,0,0,0.6);
}

.hero-btn.outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.35);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* ===== CONTACT ===== */
.contact {
    padding: 70px 18px 80px;
    display: flex;
    justify-content: center;
}

.contact-inner {
    width: 100%;
    max-width: 640px;
    background: linear-gradient(135deg, #1f2140, #292b52);
    border-radius: 22px;
    padding: 40px 26px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}

.contact h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact h3 {
    margin-top: 32px;
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-text {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.96rem;
}

.contact-list {
    list-style: none;
    margin-top: 10px;
}

.contact-list li {
    margin: 14px 0;
}

.contact-list a {
    text-decoration: none;
    font-size: 1rem;
    color: #f5f5f5;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    padding: 10px 18px;
    border-radius: 999px;
    transition: background-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.contact-list a:hover {
    color: #003366;
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.45);
}

/* ICON RENKLERİ */
.icon.phone { color: #00d1ff; }
.icon.whatsapp { color: #25d366; }
.icon.instagram { color: #e1306c; }

/* ===== FOOTER ===== */
.footer {
    background-color: #09091a;
    color: #fff;
    padding: 36px 20px 28px;
    text-align: center;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: 0 -12px 30px rgba(0,0,0,0.65);
    margin-top: 40px;
}

.footer p {
    font-size: 0.95rem;
}

.footer ul {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 18px;
    list-style: none;
}

.footer a {
    color: #fff;
    font-size: 1.7rem;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.footer a:hover {
    color: var(--primary);
    transform: scale(1.18);
}

/* ===== GALERİ SAYFASI ===== */
.page-main {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 0 18px;
}

.gallery-section {
    background: rgba(15, 16, 40, 0.9);
    border-radius: 20px;
    padding: 32px 20px 40px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    text-align: center;
}

.gallery-header h1 {
    font-size: 2rem;
    color: var(--primary);
}

.gallery-header p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.96rem;
}

.gallery-header hr {
    width: 90px;
    border: 2px solid var(--primary);
    margin: 20px auto 0;
    border-radius: 3px;
}

.gallery {
    margin-top: 30px;
    display: grid;
    gap: 26px;
    justify-items: center;
}

.gallery-item {
    width: 100%;
    max-width: 520px;
}

.gallery-image,
.gallery-video {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ===== ANİMASYON ===== */
@keyframes heroFade {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .contact-inner {
        padding: 32px 18px;
    }

    .gallery-section {
        padding: 26px 16px 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }

    .hero-actions {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
    }
}
