:root {
    --primary: #ff6a2a;
    --dark: #06283d;
    --dark-overlay: rgba(6, 40, 61, 0.94);
    --light: #ffffff;
    --muted: #c7d2da;
}

:root {
  --nav-height: 100px;
}

.hero {
  padding-top: var(--nav-height);
}

.hero-content {
  color: #ffffff;
}

.hero-content h1,
.hero-content p,
.hero-content span {
  color: #ffffff;
}

.secondary-btn {
  background: transparent;
  color: #ff7a00;
  border: 2px solid #ff7a00;
}

.secondary-btn:hover {
  background-color: #ff7a00;
  color: #ffffff;
}


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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 40, 61, 0.85);
    backdrop-filter: blur(6px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light);
}

.logo span {
    color: var(--primary);
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary);
}

/* NAV CTA BUTTON */
.nav .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav .btn-primary:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
    display: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background-color: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transform hamburger into X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px; /* adjust based on header height */
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        background-color: var(--dark);
        padding: 1.5rem 0;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center;
    }

    .nav-links li a {
        color: var(--light);
        text-align: center;
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-links li a:hover {
        color: var(--primary);
    }
}

/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--light);
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1,
.hero-subtext {
    color: var(--light);
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--primary);
    color: var(--light);
}

.primary-btn:hover {
    background-color: #e65c22;
}

/* =========================
   RESPONSIVE HERO
========================= */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }
}
