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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #081321;
    background: #ffffff;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16.5%;

    background: rgba(255, 255, 255, 0.95);

    border-bottom: 1px solid #eeeeee;

    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 11px;
    font-weight: 800;
}

.brand-icon {
    width: 18px;
    height: 18px;

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

    background: #ff7a00;
    color: white;

    border-radius: 50%;

    font-size: 8px;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-left: 35px;
}

.navbar nav a {
    font-size: 9px;
    color: #596474;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar nav a.active {
    color: #111b27;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 17px;

    font-size: 9px;
}

.nav-login {
    color: #27313c;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.moon {
    font-size: 13px;
    opacity: 0.8;
}

.coming-soon-badge {
    color: #b55a00;
    background: rgba(255, 122, 0, 0.08);
    border: 1px solid rgba(255, 122, 0, 0.18);

    padding: 8px 12px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


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

.hero {
    min-height: calc(100vh - 64px);

    padding-top: 53px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background:
        radial-gradient(
            circle at 18% 12%,
            rgba(255, 188, 120, 0.28),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 12%,
            rgba(155, 170, 255, 0.27),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #fffaf4 0%,
            #f7f9ff 48%,
            #ffffff 100%
        );

    overflow: hidden;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    width: 90%;
    max-width: 760px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Eyebrow */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 5px 10px;

    border: 1px solid #eeeeee;

    background: rgba(255, 255, 255, 0.7);

    border-radius: 20px;

    color: #626d79;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.8px;

    margin-bottom: 21px;
}

.eyebrow span {
    color: #ff7900;
}


/* =========================
   HEADLINE
========================= */

h1 {
    font-size: clamp(58px, 7vw, 88px);

    line-height: 0.94;

    letter-spacing: -4.5px;

    font-weight: 800;

    color: #07111f;

    margin-bottom: 20px;
}

h1 em {
    color: #ff7900;

    font-family: Georgia, "Times New Roman", serif;

    font-weight: 700;

    letter-spacing: -4px;
}


/* =========================
   DESCRIPTION
========================= */

.description {
    width: 560px;
    max-width: 90%;

    color: #596575;

    font-size: 12px;

    line-height: 1.65;

    margin-bottom: 27px;
}


/* =========================
   PROMPT
========================= */

.prompt-box {
    width: 610px;
    max-width: 90%;

    min-height: 43px;

    display: flex;
    align-items: center;

    padding: 4px 5px 4px 14px;

    background: white;

    border: 1px solid #e6e6e6;

    border-radius: 14px;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.07),
        0 2px 5px rgba(0, 0, 0, 0.03);
}

.prompt-text {
    flex: 1;

    text-align: left;

    color: #7b8490;

    font-size: 9px;

    white-space: nowrap;
    overflow: hidden;
}

.coming-soon-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    background: rgba(255, 121, 0, 0.08);
    border: 1px solid rgba(255, 121, 0, 0.2);
    color: #b55a00;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================
   SUGGESTIONS
========================= */

.suggestions {
    display: flex;
    justify-content: center;
    gap: 6px;

    margin-top: 10px;

    flex-wrap: wrap;
}

.suggestions span {
    padding: 6px 10px;

    border: 1px solid rgba(132, 145, 164, 0.2);

    background: rgba(255, 255, 255, 0.45);

    border-radius: 999px;

    color: #6b7786;

    font-size: 7px;
    letter-spacing: 0.04em;
}


/* =========================
   TRAVEL IMAGE
========================= */

.travel-image {
    width: 540px;
    max-width: 65%;

    height: 260px;

    margin-top: 41px;

    border-radius: 18px 18px 0 0;

    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            rgba(0,0,0,0.25)
        ),
        url("https://images.unsplash.com/photo-1533130061792-64b345e4a833?auto=format&fit=crop&w=1400&q=85");

    background-size: cover;
    background-position: center;

    box-shadow:
        0 -8px 35px rgba(0, 0, 0, 0.08);
}

.image-label {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 18px;

    display: flex;
    justify-content: space-between;

    color: white;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


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

@media (max-width: 1000px) {

    .navbar {
        padding: 0 6%;
    }

    .navbar nav {
        margin-left: 0;
    }

    .travel-image {
        max-width: 75%;
    }
}


@media (max-width: 650px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .nav-login,
    .moon {
        display: none;
    }

    .hero {
        padding-top: 45px;
    }

    h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    h1 em {
        letter-spacing: -2px;
    }

    .description {
        font-size: 11px;
    }

    .prompt-box {
        width: 95%;
    }

    .prompt-text {
        font-size: 8px;
    }

    .coming-soon-tag {
        padding: 9px 12px;
    }

    .travel-image {
        width: 90%;
        max-width: 90%;
        height: 220px;
    }
}