/* =========================
   FONTS
========================= */

@font-face {
    font-family: "Chronicle Display";
    src: url("../assets/fonts/Chronicle Display Roman.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Chronicle Display";
    src: url("../assets/fonts/Chronicle Display Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Chronicle Display";
    src: url("../assets/fonts/Chronicle Display Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Chronicle Display";
    src: url("../assets/fonts/Chronicle Display Light Italic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}


/* =========================
   GLOBAL RESET
========================= */

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

body {
    margin: 0;
    background: #ffffff;
}

header {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   TOP AIRLINE BAR
========================= */

.airline-bar {
    height: 46px;
    background: #0b1d2c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.airline-bar-content {
    width: 100%;
    max-width: 1550px;
    height: 100%;

    margin: 0 auto;
    padding: 0 40px;

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

.airline-links {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 34px;
}

.airline-link {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 15px;
    font-weight: 400;
}

.airline-link img {
    width: 24px;
    height: 32px;

    object-fit: contain;
}

.sign-in {
    font-size: 15px;
    font-weight: 400;
}

.airline-link:hover,
.sign-in:hover {
    opacity: 0.75;
}


/* =========================
   MAIN NAVIGATION
========================= */

.main-nav {
    width: 100%;
    height: 96px;

    background: #0b1d2c;
}

.main-nav-content {
    width: 100%;
    max-width: 1550px;
    height: 100%;

    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
}


/* =========================
   ATMOS LOGO
========================= */

.atmos-brand {
    width: 320px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
}

.atmos-brand img {
    width: 220px;
    height: 58px;

    display: block;

    object-fit: contain;
    object-position: left center;
}


/* =========================
   NAVIGATION LINKS
========================= */

.nav-links {
    flex: 1;

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

    gap: 32px;
}


/* =========================
   NAV DROPDOWN
========================= */

.nav-dropdown {
    height: 96px;

    position: relative;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}


/* =========================
   NAV DROPDOWN BUTTON
========================= */

.nav-dropdown-button {
    height: 100%;

    padding: 0;

    display: flex;
    align-items: center;

    gap: 9px;

    background: none;
    background-color: transparent;

    border: 0;
    border-radius: 0;
    outline: none;

    appearance: none;
    -webkit-appearance: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;

    color: #ffffff;

    white-space: nowrap;

    cursor: pointer;
}

.nav-dropdown-button:hover {
    opacity: 0.75;
}


/* =========================
   DROPDOWN ARROW
========================= */

.nav-dropdown-button .arrow {
    width: 7px;
    height: 7px;

    position: relative;
    top: -2px;

    display: inline-block;

    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;

    transform: rotate(45deg);

    transition:
        transform 0.2s ease,
        top 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-button .arrow {
    top: 2px;

    transform: rotate(225deg);
}


/* =========================
   DROPDOWN MENU
========================= */

.nav-dropdown-menu {
    min-width: 180px;

    position: absolute;
    top: 96px;
    left: 50%;

    transform: translateX(-50%);

    padding: 6px 0;

    display: none;
    flex-direction: column;

    background: #faf9f5;

    border: 1px solid #dedbd2;

    box-shadow: 0 6px 14px rgba(11, 29, 44, 0.08);

    z-index: 1000;
}


/* =========================
   SHOW DROPDOWN
========================= */

.nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
}


/* =========================
   DROPDOWN LINKS
========================= */

.nav-dropdown-menu a {
    width: 100%;

    display: block;

    padding: 11px 18px;

    background: transparent;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;

    color: #0b1d2c;

    text-align: left;
    white-space: nowrap;

    transition: background 0.15s ease;
}

.nav-dropdown-menu a:hover {
    background: #efeee9;

    opacity: 1;
}


/* =========================
   INDIVIDUAL DROPDOWN WIDTHS
========================= */

.nav-dropdown:nth-child(1) .nav-dropdown-menu {
    min-width: 180px;
}

.nav-dropdown:nth-child(2) .nav-dropdown-menu {
    min-width: 205px;
}

.nav-dropdown:nth-child(3) .nav-dropdown-menu {
    min-width: 180px;
}

.nav-dropdown:nth-child(4) .nav-dropdown-menu {
    min-width: 190px;

    left: auto;
    right: 0;

    transform: none;
}


/* =========================
   SEARCH
========================= */

.search-box {
    width: 260px;
    height: 42px;

    margin-left: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;

    border: 2px solid #ffffff;
    border-radius: 5px;

    overflow: hidden;
}

.search-box input {
    min-width: 0;
    height: 100%;

    flex: 1;

    padding: 0 14px;

    background: transparent;

    border: none;
    outline: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    color: #ffffff;
}

.search-box input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.search-box button {
    width: 44px;
    height: 100%;

    flex-shrink: 0;

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

    padding: 0;

    background: transparent;

    border: none;
    outline: none;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

.search-box button img {
    width: 20px;
    height: 20px;

    display: block;

    object-fit: contain;
}


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

@media (max-width: 1200px) {

    .atmos-brand {
        width: 250px;
    }

    .atmos-brand img {
        width: 200px;
    }

    .nav-links {
        gap: 20px;
    }

    .search-box {
        width: 220px;
        margin-left: 20px;
    }
}    transition:
        background 0.15s ease,
        opacity 0.15s ease;
}


.nav-dropdown-menu a:hover {
    background: #efeee9;
    opacity: 1;
}


/* Points Redemption */

.nav-dropdown:nth-child(3) .nav-dropdown-menu {
    min-width: 190px;
}


/* Locations */

.nav-dropdown:nth-child(4) .nav-dropdown-menu {
    min-width: 200px;
}
/* =========================
   SEARCH
========================= */

.search-box {
    width: 260px;
    height: 42px;
    margin-left: 32px;

    display: flex;
    align-items: center;

    border: 2px solid #ffffff;
    border-radius: 5px;
}

.search-box input {
    min-width: 0;
    flex: 1;
    height: 100%;

    padding: 0 14px;

    background: transparent;
    border: none;
    outline: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.search-box input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.search-box button {
    width: 44px;
    height: 100%;

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

    padding: 0;

    background: transparent;
    border: none;

    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}


/* =========================
   HOVER
========================= */

.airline-link:hover,
.sign-in:hover,
.nav-links a:hover {
    opacity: 0.75;
}

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

.hero {
    width: 100%;
    height: 580px;

    position: relative;
    overflow: hidden;

    background: #0b1d2c;
}

.hero-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

/* =========================
   FEATURED EXPERIENCES
========================= */

.featured-experiences {
    width: 100%;
    padding: 50px 80px 55px;
    background: #faf9f5;
}

.featured-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.featured-title {
    margin-bottom: 40px;

    font-family: "Chronicle Display", Georgia, serif;
    font-size: 48px;
    font-weight: 400;

    text-align: center;
    color: #0b1d2c;
}


/* =========================
   EXPERIENCE GRID
========================= */

.experience-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================
   EXPERIENCE CARD
========================= */

.experience-card {
    width: 100%;
    min-width: 0;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(11, 29, 44, 0.16);
}


/* =========================
   EXPERIENCE IMAGE
========================= */

.experience-image {
    width: 100%;
    height: 180px;

    overflow: hidden;
    background: #e8e8e8;
}

.experience-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.03);
}


/* =========================
   EXPERIENCE CONTENT
========================= */

.experience-content {
    height: 260px;

    padding: 22px 26px 24px;

    display: flex;
    flex-direction: column;
}

.experience-content h3 {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;

    color: #0b1d2c;
}

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

.experience-description {
    margin-top: 14px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    color: #707782;
}

/* =========================
   EXPERIENCE DETAILS
========================= */

.experience-details {
    margin-top: auto;
    margin-bottom: 15px;
}

.experience-location {
    margin-bottom: 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;

    color: #707782;
}

.experience-points {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #0b1d2c;
}


/* =========================
   EXPERIENCE BUTTON
========================= */

.experience-button {
    width: 100%;
    height: 48px;

    flex-shrink: 0;

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

    background: #0b1d2c;
    border-radius: 25px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;

    color: #ffffff;
    text-decoration: none;

    transition: background 0.2s ease;
}

.experience-button:hover {
    background: #16344c;
}


/* =========================
   VIEW ALL BUTTON
========================= */

.featured-view-all {
    margin-top: 30px;

    display: flex;
    justify-content: center;
}

.view-all-button {
    min-width: 130px;
    height: 46px;

    padding: 0 26px;

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

    background: transparent;

    border: 1.5px solid #0b1d2c;
    border-radius: 24px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;

    color: #0b1d2c;
    text-decoration: none;
}


/* =========================
   FEATURED EXPERIENCES MOBILE
========================= */

@media (max-width: 900px) {

    .featured-experiences {
        padding: 45px 25px;
    }

    .featured-title {
        font-size: 40px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
    width: 100%;
    min-height: 500px;

    position: relative;

    padding: 55px 60px 70px;

    background-image: url("../images/how_it_works.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;

    overflow: hidden;
}


/* =========================
   HOW IT WORKS OVERLAY
========================= */

.how-it-works-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.48);

    z-index: 0;
}


/* =========================
   HOW IT WORKS CONTAINER
========================= */

.how-it-works-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    position: relative;
    z-index: 1;
}


/* =========================
   HOW IT WORKS TITLE
========================= */

.how-it-works-title {
    margin: 0 0 50px;

    font-family: "Chronicle Display", Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.1;

    text-align: center;

    color: #ffffff;
}


/* =========================
   HOW IT WORKS GRID
========================= */

.how-it-works-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 60px;
}


/* =========================
   HOW IT WORKS ITEM
========================= */

.how-it-works-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================
   HOW IT WORKS ICON
========================= */

.how-it-works-icon {
    width: 72px;
    height: 72px;

    margin-bottom: 20px;

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

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

    border-radius: 50%;
}

.how-it-works-icon img {
    width: 50%;
    height: 50%;

    display: block;

    object-fit: contain;
}


/* =========================
   HOW IT WORKS ITEM TITLE
========================= */

.how-it-works-item h3 {
    margin: 0 0 14px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 1.5px;

    color: #ffffff;
}


/* =========================
   HOW IT WORKS ITEM TEXT
========================= */

.how-it-works-item p {
    max-width: 330px;

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;

    color: #ffffff;
}


/* =========================
   HOW IT WORKS MOBILE
========================= */

@media (max-width: 900px) {

    .how-it-works {
        min-height: auto;

        padding: 50px 25px 60px;
    }

    .how-it-works-title {
        margin-bottom: 40px;

        font-size: 38px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .how-it-works-icon {
        width: 65px;
        height: 65px;

        margin-bottom: 18px;
    }

    .how-it-works-item p {
        max-width: 400px;

        font-size: 14px;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    width: 100%;

    background: #0b1d2c;

    color: #ffffff;
}


/* =========================
   FOOTER CTA
========================= */

.footer-cta {
    width: 100%;

    padding: 55px 30px 60px;

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

    text-align: center;
}


/* =========================
   FOOTER CTA TITLE
========================= */

.footer-cta h2 {
    margin: 0 0 12px 0;

    font-family: "Chronicle Display", Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;

    text-align: center;

    color: #ffffff;
}


/* =========================
   FOOTER CTA TEXT
========================= */

.footer-cta p {
    margin: 0 0 30px 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;

    text-align: center;

    color: #ffffff;
}


/* =========================
   BUY POINTS LINK
========================= */

.buy-points-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;

    color: #ffffff;
    text-decoration: none;

    transition: opacity 0.2s ease;
}

.buy-points-link:hover {
    opacity: 0.7;
}


/* =========================
   EXTERNAL LINK ICON
========================= */

.external-link-icon {
    width: 16px;
    height: 16px;

    display: block;

    object-fit: contain;
}


/* =========================
   FOOTER LINKS SECTION
========================= */

.footer-links-section {
    width: 100%;

    padding: 45px 40px;

    border-top: 1px solid rgba(255, 255, 255, 0.22);
}


/* =========================
   FOOTER LINKS
========================= */

.footer-links {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

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

    gap: 38px;
}

.footer-links a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;

    color: #ffffff;
    text-decoration: none;

    white-space: nowrap;

    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}


/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 800px) {

    .footer-cta {
        padding: 45px 25px 50px;
    }

    .footer-cta h2 {
        font-size: 40px;
    }

    .footer-cta p {
        font-size: 15px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 20px 30px;
    }
}

/* =========================
   ACCOUNT MENU
========================= */

.account-menu {
    position: relative;
    margin-left: auto;
}

/* My Account Button */

.account-button {
    display: flex;
    align-items: center;
    gap: 8px;

    background: transparent;
    border: none;
    padding: 0;

    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
}

.account-arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

/* =========================
   DEVELOPMENT DISCLAIMER
========================= */

.development-disclaimer {
    width: calc(100% - 70px);
    max-width: 1900px;

    margin: 20px auto;
    padding: 12px 20px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: #ffffff;

    border: 1px solid #0077b5;
    border-left: 8px solid #0077b5;
    border-radius: 7px;

    font-family: Arial, Helvetica, sans-serif;
    color: #0b1d2c;
}

.development-disclaimer-icon {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

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

    border: 2px solid #0077b5;
    border-radius: 50%;

    font-size: 14px;
    font-weight: 600;

    color: #0077b5;
}

.development-disclaimer p {
    margin: 0;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

/* MOBILE */

@media (max-width: 700px) {

    .development-disclaimer {
        width: calc(100% - 30px);
        margin: 12px auto;
        padding: 10px 14px;
        gap: 10px;
    }

    .development-disclaimer p {
        font-size: 12px;
    }

    .development-disclaimer-icon {
        width: 22px;
        height: 22px;
        font-size: 13px;
    }
}

