* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #050505;
    color: #f5f5f5;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 120px 8%;
}

/* INTRO */

.intro {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    overflow: hidden;
    z-index: 99999;
    transition: 1.5s;
}

    .intro.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.intro-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    filter: brightness(.7) contrast(1.2) saturate(1.3);
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, rgba(0,0,0,.85) 75%);
}

.intro-logo {
    width: 720px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: scale(.7) translateY(40px);
    animation: logoReveal 3s forwards;
    filter: drop-shadow(0 0 40px rgba(255,0,0,.7));
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(.5) translateY(60px);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    transition: .3s;
}

    header.scrolled {
        padding: 18px 8%;
        background: #050505;
    }

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 40px;
}

    nav a {
        color: #d7d7d7;
        transition: .3s;
    }

        nav a:hover {
            color: #ff2a2a;
        }

/* DİL BUTONU */

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,15,15,0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 10px 16px;
    cursor: pointer;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: all .25s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
    text-align: left;
}

    .lang-toggle::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,42,42,0.12), transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .lang-toggle:hover {
        border-color: rgba(255,42,42,0.45);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255,42,42,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
    }

        .lang-toggle:hover::after {
            opacity: 1;
        }

    .lang-toggle:active {
        transform: scale(0.95) translateY(0);
    }

.lang-flag {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    position: relative;
    z-index: 1;
}

.lang-text-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: relative;
    z-index: 1;
}

.lang-switch-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    line-height: 1;
}

.lang-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1;
}

/* HERO */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.8)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    color: #ff2a2a;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(52px, 9vw, 110px);
    line-height: 1;
    margin-bottom: 25px;
}

.hero p {
    color: #c9c9c9;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 34px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #ff2a2a;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #444;
    color: white;
}

.btn:hover {
    transform: translateY(-4px);
}

/* TARİHÇE & FAYDALAR */

.history-section {
    padding: 100px 8% 120px;
    position: relative;
    background: #050505;
    overflow: hidden;
}

    .history-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255,42,42,0.06) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 90% 80%, rgba(255,120,30,0.05) 0%, transparent 60%);
        pointer-events: none;
    }

.fire-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

    .fire-divider span {
        color: #ff2a2a;
        font-size: 18px;
        opacity: 0.7;
    }

.fire-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff2a2a55, transparent);
}

.history-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 100px;
}

.eyebrow {
    color: #ff2a2a;
    letter-spacing: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.history-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(44px, 6vw, 80px);
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 700;
}

    .history-headline em {
        font-style: italic;
        color: #ff4444;
    }

.history-lead {
    color: #aaa;
    line-height: 2;
    font-size: 16px;
}

/* ZAMANÇİZELGESİ */

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 120px;
    padding-left: 40px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, transparent, #ff2a2a55 20%, #ff2a2a55 80%, transparent);
    }

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 70px;
    align-items: flex-start;
    position: relative;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -44px;
        top: 14px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ff2a2a;
        box-shadow: 0 0 12px rgba(255,42,42,0.6);
    }

.timeline-marker {
    text-align: right;
    padding-top: 4px;
}

.timeline-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.timeline-year {
    color: #ff2a2a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    margin-bottom: 14px;
    font-weight: 600;
}

.timeline-content p {
    color: #999;
    line-height: 1.9;
    font-size: 15px;
}

/* FAYDALAR */

.benefits-wrapper {
    position: relative;
}

.benefits-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

    .benefits-header h2 {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(38px, 5vw, 64px);
        margin: 16px 0 20px;
        font-weight: 700;
    }

        .benefits-header h2 em {
            font-style: italic;
            color: #ff4444;
        }

.benefits-lead {
    color: #aaa;
    line-height: 1.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #111 100%);
    border: 1px solid #1c1c1c;
    border-radius: 24px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,42,42,0.4), transparent);
        opacity: 0;
        transition: .4s;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
        border-color: #2a2a2a;
        box-shadow: 0 20px 60px rgba(255,42,42,0.08);
    }

        .benefit-card:hover::before {
            opacity: 1;
        }

.benefit-icon {
    font-size: 36px;
    margin-bottom: 18px;
    display: block;
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #f0f0f0;
}

.benefit-card p {
    color: #888;
    line-height: 1.8;
    font-size: 14px;
}

/* ALINTI */

.history-quote {
    text-align: center;
    margin-top: 100px;
    padding: 60px;
    position: relative;
}

    .history-quote::before {
        content: '';
        position: absolute;
        inset: 0;
        border-top: 1px solid #1a1a1a;
        border-bottom: 1px solid #1a1a1a;
    }

    .history-quote blockquote {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(22px, 3.5vw, 38px);
        font-style: italic;
        color: #ddd;
        line-height: 1.5;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .history-quote cite {
        color: #ff2a2a;
        font-size: 13px;
        letter-spacing: 2px;
        font-style: normal;
        font-weight: 600;
    }

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #0f0f0f;
    border: 1px solid #1c1c1c;
    padding: 40px;
    border-radius: 28px;
    transition: .4s;
}

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: #ff2a2a;
    }

    .feature-card h3 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .feature-card p {
        color: #aaa;
        line-height: 1.8;
    }

/* MENU */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

    .section-title span {
        color: #ff2a2a;
        letter-spacing: 4px;
    }

    .section-title h2 {
        font-size: clamp(36px, 5vw, 60px);
        margin-top: 15px;
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background: #0f0f0f;
    border-radius: 28px;
    overflow: hidden;
    transition: .4s;
}

    .menu-card:hover {
        transform: translateY(-10px);
    }

    .menu-card img {
        height: 260px;
        object-fit: cover;
    }

.menu-content {
    padding: 28px;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    color: #ff2a2a;
    font-weight: 700;
}

.menu-content p {
    color: #aaa;
    line-height: 1.7;
}

/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

    .about img {
        height: 600px;
        object-fit: cover;
        border-radius: 30px;
    }

.about-text span {
    color: #ff2a2a;
    letter-spacing: 4px;
}

.about-text h2 {
    font-size: 58px;
    margin: 20px 0;
}

.about-text p {
    color: #aaa;
    line-height: 2;
    margin-bottom: 35px;
}

/* FOOTER */

footer {
    padding: 60px 8%;
    text-align: center;
    border-top: 1px solid #1f1f1f;
}

    footer h3 {
        margin-bottom: 15px;
    }

    footer p {
        color: #888;
        margin-top: 8px;
    }

/* ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* NAV ACTIVE */

nav a.active {
    color: #ff2a2a;
    position: relative;
}

    nav a.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: #ff2a2a;
    }

/* MOBILE */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    section {
        padding: 90px 20px;
    }

    .hero {
        padding: 0 20px;
    }

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

    .about {
        grid-template-columns: 1fr;
    }

        .about img {
            height: 400px;
        }

    .about-text h2 {
        font-size: 42px;
    }

    .intro-logo {
        width: 260px;
    }

    .history-section {
        padding: 80px 20px 100px;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-item {
        grid-template-columns: 90px 1fr;
        gap: 20px;
    }

        .timeline-item::before {
            left: -28px;
        }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .history-quote {
        padding: 40px 20px;
    }

        .history-quote blockquote {
            font-size: 20px;
        }

    .lang-toggle {
        padding: 6px 12px;
        font-size: 12px;
    }
}
