:root {
    --primary-black: #1a1a1a;
    --secondary-gold: #D4AF37;
    --soft-grey: #f4f4f4;
    --text-grey: #666;
    --white: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    color: var(--primary-black);
    line-height: 1.6;
}

h1,h2,h3 {
    font-family: 'Georgia', serif;
    font-weight: 400;
    margin:0 0 15px 0;
}

.container {
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

/* HEADER */
header {
    background: var(--white);
    padding:20px 0;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-flex {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo {
    font-size:24px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:bold;
}

.nav-btn {
    background:var(--primary-black);
    color:var(--white);
    border:none;
    padding:10px 20px;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    cursor:pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: white;
    overflow: hidden; /* Keeps the image inside the box */
}

/* This makes the HTML <img> behave like a background */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes it fill the area without stretching */
    z-index: 1;
}

/* The dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* Keeps the text and form on top of the image */
.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size:3rem;
    max-width:800px;
    margin:auto;
}

.hero p {
    font-size:1.2rem;
    max-width:600px;
    margin:20px auto 40px;
    color:#e5e5e5;
}

/* WAITLIST FORM */
.waitlist-box {
    background: var(--white);
    padding: 40px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    color: var(--primary-black);
}

.waitlist-form {
    display:flex;
    flex-direction:column;
    gap:15px;
}

.waitlist-form input,
.waitlist-form select {
    padding:15px;
    font-size:16px;
    border:1px solid #ddd;
}

.submit-btn {
    background:var(--secondary-gold);
    border:none;
    padding:15px;
    font-weight:bold;
    text-transform:uppercase;
    cursor:pointer;
}

/* BRANDS */
.brands {
    background:var(--primary-black);
    color:var(--white);
    padding:20px 0;
    overflow:hidden;
    white-space:nowrap;
}

.brand-text {
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    display:inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.how-it-works {
    padding:80px 0;
    text-align:center;
}

.grid-3 {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

footer {
    background:#111;
    color:#666;
    text-align:center;
    padding:40px 0;
}

@media (max-width:768px) {
    .hero h1 { font-size:2rem; }
}