:root {
    --dark: #101828;
    --surface: #1E2939;
    --accent: #F6B53B;
    --text-light: #F9FAFB;
    --text-muted: #CBD5E1;
    --border: #334155;
    --font-heading: "Fraunces", serif;
    --font-body: "Be Vietnam Pro", sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

header {
    position: relative;
    padding: 1rem;
}

header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand h1 {
    padding: 0.4rem;
    font-size: 1.2rem;
}

.menu-toggle {
    border: 1px solid var(--border);
    padding: 0.5rem;
}

.menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

nav {
    position: absolute;
    left: 0;
    top: -100vh;
    width: 100%;
    background: var(--dark);
    transition: top 0.3s ease;
    z-index: 1000;
}

nav.show-menu {
    top: 100%;
}

.menu a {
    display: block;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
}

.search {
    display: flex;
    align-items: center;
    border: solid 1px #CBD5E1;
    border-radius: 0.4rem;
}

.search input {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
    background-color: #1E2939;
    color: #F9FAFB;

}

.search input {
    max-width: 250px;
}

.search button {
    padding: 0.4rem 0.6rem;
    border: none;
    background: gray;
    color: var(--text-light);
}

.search button svg {
    width: 1.1rem;
    height: 1.1rem;
}


.menu-toggle,
.search button {
    color: var(--text-light);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero picture,
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
     z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 2rem 1rem;
    text-align: left;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content h2 {
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.hero-content p {
    color: #f1f5f9;
    font-weight: 500;
}
.hero .actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.hero .actions button {
    width: 220px;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: none;
    background-color: #ffffff;
    color: #111;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}


.path {
    position: relative;
    padding: 2rem;
}

.path .texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.path .content {
    position: relative;
    max-width: 1200px;
    text-align: center;
}

.path .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.path .images img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.path .text {
    max-width: 650px;
    text-align: left;
    margin: 0 auto;
}

.path .text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.path .text p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.itinerary {
    padding: 2rem 1rem;
    background: #E5E7EB;
    color: #111;
}


.itinerary h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.itinerary h3 {
    text-align: center;
    margin-bottom: 1.4rem;
}

.itinerary .meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.itinerary .meta svg {
    width: 1.2rem;
    height: 1.2rem;
}

.itinerary li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.itinerary li svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.itinerary li h4 {
    margin-bottom: 2rem;
}

.cta {
    position: relative;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.cta .texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.path .content,
.itinerary .content,
.cta .content,
footer > div,
header section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.cta .content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.cta .text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta .field {
    margin-bottom: 1rem;
}

.cta input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.cta .consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.cta button {
    width: 60%;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background:var(--text-light);
    display: block;
    margin: 2rem auto 0 auto;
}

.cta .consent label {
    font-size: 0.85rem;
    line-height: 1.4;
}

.cta .consent a {
    text-decoration: underline;
}

footer {
    background: #0b1220;
    color: #f9fafb;
    padding: 3rem;
}

.footer .brand h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.footer .brand p {
    font-size: 0.9rem;
    color: #CBD5E1;
}

.footer h3 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer a {
    font-size: 0.9rem;
}


.footer {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.social svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

a:hover{
    color: var(--accent);
}


button:hover {
    background-color: var(--accent);
}

.hero .actions button:hover{
    background-color: var(--accent);
  
}


@media (min-width: 992px) {

    .menu-toggle {
        display: none;
    }

    nav {
        position: static;
        width: auto;
    }

    .brand h1 {
        font-size: 2rem;
    }

    .menu {
        display: flex;
        gap: 1rem;
    }

    .menu a {
        border: none;
    }

    .brand {
        margin-left: auto;
        margin-right: auto;
    }

    .signin {
        margin-left: 1.5rem;
    }

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

    .hero-content h2 {
        font-size: 4rem;
    }

    .hero .actions {
        flex-direction: row;
        justify-content: center;
    }

    .path .content {
        max-width: 1200px;
        min-height: 650px;
    }

    .path .images img {
        position: absolute;
    }

    .path .images img:nth-child(1) {
        top: 0;
        left: 30%;
        transform: translateX(-50%);
    }

    .path .images img:nth-child(2) {
        top: 30%;
        left: 0;
    }

    .path .images img:nth-child(3) {
        bottom: 2%;
        left: 3%;
    }

    .path .images img:nth-child(4) {
        top: 80%;
        right: 30%;
    }

    .path .images img:nth-child(5) {
        top: 60%;
        right: 0;
    }

    .path .text {
        position: relative;
        max-width: 550px;
        margin: 0 auto;
        padding-top: 12.5rem;
        text-align: left;
    }


    .path .text h2 {
        font-size: 4.5rem;
        margin-bottom: 0.4rem;
    }


    .itinerary {
        padding: 6rem 2rem;
    }

    .itinerary .content {
        display: grid;
        column-gap: 7rem;
        max-width: 1200px;
    }

    .itinerary h2 {
        grid-row: 1 / span 3;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 7rem;
        align-self: center;
    }

    .itinerary h3 {
        text-align: left;
        font-size: 2rem;
    }

    .itinerary ul {
        grid-column: 2;
        max-width: 850px;
    }

    .itinerary .meta {
        justify-content: flex-start;
        text-align: left;
    }

    .cta {
        padding: 5rem 2rem;
    }

    .cta .content {
        display: flex;
        flex-direction: row;
        gap: 4rem;
        max-width: 1200px;
    }

    .cta .text {
        width: 50%;
    }

    .cta .text h2 {
        font-size: 3rem;
    }

    .cta form {
        width: 50%;
    }

    .cta button {
        width: 50%;
        margin: 2rem 0;
    }

    .cta .name-row {
        display: flex;
        gap: 1rem;
    }

    .footer {
        display: grid;
        grid-template-columns: 1.5fr 3fr;
        max-width: 1200px;
    }

    .footer .brand h2 {
        font-size: 6rem;
        margin-bottom: 2.5rem;
    }

    .footer>div:not(.brand) {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 4rem;
        padding-top: 10rem;
    }

}