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

/* BASE */
body {
    font-family: 'Orbitron', sans-serif;
    background: #050505;
    color: #eaeaea;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-weight: 800;
    letter-spacing: 3px;
    color: #c9a227;
}

nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #c9a227;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    padding-top: 90px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: #000;
    overflow: hidden;
}

/* HERO BACKGROUND IMAGE */
.hero-overlay {
    position: absolute;
    inset: 0;

    background-image: url("../banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    background-color: #000;
    z-index: 1;
}

/* SMOOTH SIDE FADE + LIGHT DARKENING */
.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            #000 0%,
            rgba(0, 0, 0, 0.95) 6%,
            rgba(0, 0, 0, 0.45) 13%,
            rgba(0, 0, 0, 0) 28%,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 0.45) 87%,
            rgba(0, 0, 0, 0.95) 94%,
            #000 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.05) 35%,
            rgba(0, 0, 0, 0.35) 100%
        );

    z-index: 2;
    pointer-events: none;
}

/* GENERAL CINEMATIC DARK LAYER */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.12) 45%,
        rgba(0, 0, 0, 0.65) 100%
    );

    z-index: 2;
    pointer-events: none;
}

/* HERO CONTENT BOX */
.hero-content {
    position: relative;
    z-index: 3;

    padding: 26px 38px;
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow:
        0 0 35px rgba(0, 0, 0, 0.85),
        inset 0 0 20px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(3px);
}

/* EMPTY TITLE FIX */
.title:empty {
    display: none;
}

/* TITLE */
.title {
    font-size: 72px;
    letter-spacing: 8px;
    color: #d4af37;
    text-shadow:
        0 0 12px rgba(212, 175, 55, 0.55),
        0 3px 8px rgba(0, 0, 0, 0.9);
}

/* SUBTITLE */
.subtitle {
    margin-top: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.7px;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 0 10px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(0, 0, 0, 0.85);
}

/* BUTTONS */
.cta-row {
    margin-top: 28px;
}

.btn {
    display: inline-block;
    padding: 13px 28px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 800;
    letter-spacing: 0.5px;

    text-shadow: none;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.65);
}

.primary {
    background: #d4af37;
    color: #030303;
    border: 1px solid #f0c84b;
}

.primary:hover {
    background: #f0c84b;
    transform: translateY(-2px);
}

.secondary {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid #f0c84b;
    color: #f0c84b;
}

.secondary:hover {
    background: #d4af37;
    color: #030303;
    transform: translateY(-2px);
}

/* SECTION */
.section {
    padding: 100px 60px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #c9a227;
}

.section p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: #d0d0d0;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: 0.3s;
}

.card h3 {
    color: #d4af37;
    margin-bottom: 12px;
}

.card p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #c9a227;
    background: rgba(201, 162, 39, 0.05);
}

/* FOOTER */
.footer {
    padding: 40px;
    text-align: center;
    background: #000;
    color: #666;
}

.footer .small {
    font-size: 12px;
    margin-top: 5px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .navbar {
        padding: 18px 30px;
    }

    nav a {
        margin-left: 14px;
        font-size: 13px;
    }

    .hero-content {
        width: calc(100% - 40px);
        padding: 24px 22px;
    }

    .subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    .section {
        padding: 80px 25px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 16px 20px;
        flex-direction: column;
        gap: 14px;
    }

    nav a {
        margin-left: 10px;
        margin-right: 10px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-overlay {
        background-size: cover;
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.55);
    }

    .cta-row {
        margin-top: 22px;
    }

    .btn {
        display: block;
        margin: 12px auto;
        max-width: 240px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}