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

ul {
    list-style: none;
}

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

body {
    font-family: "Inter", sans-serif;
}

/* Normal Styles */

.header {
    background-color: #35465D;
    position: relative;
    z-index: 10;
}

.header_content {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    
}


.logo_img {
    display: block;
    height: 60px;
}

.summit_text {
    display: block;
    height: 75px;
}

.nav {
    margin-left: auto;
    padding-right: 30px;
}

.nav_list {
    display: flex;
    column-gap: 20px;
}


.nav_link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.nav_link:hover {
    color: rgba(255, 255, 255, 1);
}

.nav_btn {
        color: rgba(255, 255, 255, 0.75);
        font-weight: 500;
        border: 1px solid white;
        border-radius: 10px;
        padding: 12px 30px;
        
}

.nav_btn:hover {
        color: rgba(255, 255, 255, 1);
}


.hero_div {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

                
.image_stack {
    position: relative;
    width: 100%;
    z-index: 1;
    
}


.image_base {
    display: block;
    width: 100%;
    position: relative; /* NOT absolute */
    z-index: 2;
}



.hero_div {
    position: relative;
    width: 100%;
}

.image_stack {
    position: relative;
    width: 100%;
}

.image_base {
    width: 100%;
    height: auto;
    display: block;
}

.image_overlay {
    position: absolute;
    top: 0%;
    left: 65%;
    transform: translateX(-50%);
    width: 68%;
    height: auto;
    max-width: none;   /* REMOVE size restriction */
    z-index: 2;
}

.hero_content {
    position: absolute;
    top: 10%;              /* move content down from top */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: #37465d;
    z-index: 3;
}

.hero_h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
}

.hero_text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero_btn {
    display: inline-block;
    font-size: 1.2rem;
    padding: 12px 30px;
    background-color: #7FD1C3;
    border-radius: 10px;
}


.offer_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
    text-align: center;
}

.offer_heading {
    font-size: 50px;
    margin-bottom: 60px;
    color: #36465D;
}

.offer_cards {
    display: flex;
    justify-content: center;
    gap: 150px;        /* space between cards */
    flex-wrap: wrap;   /* wrap on smaller screens */
}

.offer_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px; /* optional */
}

.offer_img {
    width: 300px;     /* adjust size */
    height: auto;
    margin-bottom: 20px;
}

.offer_subheading {
    font-size: 22px;
    color: #37465d;
}

.different_div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;              /* space between text and image */
    padding: 80px 10%;      /* space around section */
    background-image: url(img/gradient.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    flex-wrap: wrap;         /* stacks vertically on small screens */
}

.different_text {
    flex: 1;                 /* takes 50% of width */
    min-width: 300px;        /* ensures text doesn’t shrink too much */
}

.different_heading {
    font-size: 40px;
    margin-bottom: 20px;
}

.different_subheading {
    font-style: oblique;
    font-size: 22px;
    margin-top: 20px;
}

.different_text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.different_image {
    flex: 1;                 /* takes 50% of width */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.different_img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.value_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
    text-align: center;
}

.value_heading {
    font-size: 50px;
    margin-bottom: 60px;
    color: #36465D;
}

.value_cards {
    display: flex;
    justify-content: center;   /* center all cards */
    gap: 50px;                 /* space between cards */
    flex-wrap: nowrap;          /* IMPORTANT: prevent wrapping */
    overflow-x: auto;           /* optional: allow horizontal scroll on small screens */
}

.value_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;          /* make sure cards don’t shrink too small */
}

.value_img {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.value_subheading {
    font-size: 22px;
    color: #37465d;
    text-align: center;
}

.new_markets {
    display: flex;
    flex-direction: column;      /* stack h1 above p */
    align-items: center;         /* center horizontally */
    text-align: center;          /* center text inside each element */
    gap: 20px;                   /* space between heading and paragraph */
    margin: 80px 0;              /* vertical spacing */
    padding: 0 20px;             /* optional padding on small screens */
}

.new_markets h1 {
    font-size: 50px;
    color: #37465d;
    margin: 0;                   /* remove default margin */
}

.new_markets p {
    font-size: 20px;
    color: #37465d;
    margin: 0;                   /* remove default margin */
    line-height: 1.6;
    max-width: 900px;            /* optional: limit line width */
}

.mountain_map_wrapper {
    position: relative;        /* wrapper for absolute overlay */
    width: 100%;               /* full page width */
    overflow: hidden;          /* hide anything outside container */
}

.mountain2 {
    width: 100%;               /* full width of container */
    height: auto;              /* keep aspect ratio */
    display: block;
}

.map_overlay {
    position: absolute;        /* overlay on mountain */
    top: 50%;                  /* vertical center */
    left: 50%;                 /* horizontal center */
    transform: translate(-50%, -50%); /* perfect center */
    width: 90%;                /* fills most of the wrapper width */
    height: auto;              /* maintains aspect ratio */
    max-width: 1200px;         /* optional max width */
    z-index: 2;                /* sit above mountain */
}

/* Optional: Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .map_overlay {
        width: 100%;           /* fill wrapper width on mobile */
    }

    .mountain {
        width: 100%;
    }
}

.ready {
    display: flex;               /* use flexbox */
    flex-direction: column;      /* stack heading above button */
    align-items: center;         /* horizontal center */
    justify-content: center;     /* vertical center inside container if height set */
    gap: 20px;                   /* space between heading and button */
    margin: 80px 0;              /* spacing above and below */
    text-align: center;          /* center text inside h1 */
}

.ready h1 {
    font-size: 50px;
    color: #37465d;
    margin: 0;                   /* remove default margin */
}

.ready_btn {
    display: inline-block;       /* ensures proper button styling */
    color: white;
    background-color: #7FD1C3;
    font-weight: 500;
    font-size: 30px;
    border: none;
    border-radius: 10px;
    margin-top: 50px;
    padding: 12px 30px;
    text-decoration: none;
    cursor: pointer;
}

.ready_btn:hover {
    background-color: #66bfb0;
}

.footer {
    background-color: #35465D;
}

.footer_content {
display: flex;
    width: 100%;
    height: 200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}


/* 


Hamburger Menu


*/

/* Hamburger icon */
.hamburger {
    display: none;               /* hide on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    /* Hide nav links by default */
    .nav_list {
        position: absolute;
        top: 70px;            /* below header */
        right: 0;
        flex-direction: column;
        background-color: #35465D;
        width: 200px;
        gap: 20px;
        padding: 20px;
        display: none;        /* hidden by default */
        border-radius: 10px;
        z-index: 100;
    }

    .nav_list.active {
        display: flex;        /* show when toggled */
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        margin-left: auto;    /* push it to the right */
    }

    /* Make nav button full width */
    .nav_btn {
        width: 100%;
        text-align: center;
    }

    /* Optional: adjust spacing for small screens */
    .header_content {
        padding: 0 20px;
        align-items: center;
    }
}

.form-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  padding: 20px;
  background: #fff;
  z-index: 100;
}

form {
background-image: url(img/gradient.png);
}