* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

@font-face {
  font-family: 'MyFont';
  src: url('/fonts/AreaExtended-Regular.woff2') format('woff2'),
       url('/fonts/AreaExtended-Regular.woff') format('woff'),
       url('/fonts/AreaExtended-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

#navbar_logo,
.navbar_links,
.navbar_btn .button {
  font-family: 'Montserrat', sans-serif;
}

.navbar {
    background-color: #131313;
    height: 80px;   
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;   
    
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar_logo {
    background-color: #ff8177;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip : text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    gap: 8px;
    align-items: center;
    display: flex;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.navbar_logo_img {
  height: 30px;       /* adjust to match font size */
  width: auto;
  margin-right: 8px;  /* space between logo and text */
}

.fa-gem {
    margin-right: 0.5rem;
    
}

.navbar_menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;

}


.navbar_item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
}

.navbar_links {
    color: #fff;
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar_btn {
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;    
align-items: center;
text-decoration: none;
white-space: nowrap;
padding:10px 20px;
height: 75%;
width: 120px;
border: none;
outline: none;
border-radius: 4px;
background: #a2c9a7;
color: #fff;
}



.button:hover {
    background: #095540;
    color: #fff;
    transition: all 0.3s ease;

}

.navbar_links:hover {
    color: #095540;
    transition: all 0.3s ease;
}   

@media screen and (max-width: 960px) {
    .navbar_container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar_menu {
        display: grid;
        grid-template-columns: 1fr;
        position: absolute;
        top: 80px; /* directly under the navbar */
        left: 0;
        width: 100%;
        background-color: #131313;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        z-index: 998;
    }
    
    .navbar_menu.active {
        opacity: 1;
        height: 70vh; /* adjust based on how much content you have */
    }
    

    #navbar_logo {
        padding: 0 1rem;
        
    }   

    #mobile-menu .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar_item {
        width: 100%;
    }

    .navbar_links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
        
    }

    #mobile-menu {
        
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            z-index: 1000;
        
        
    } 
    
    .navbar_btn {
        padding-bottom: 2rem;
    }

    .button {
        display:flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 60px;
        margin: 0;

    }

    .navbar_toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {  
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {  
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {  
        transform: translateY(-8px) rotate(-45deg);
    }
}

body {
    background: linear-gradient(180deg, #0f1a17 0%, #111 30%, #111 100%);
    color: #f4f5f3;
}

.faq-page {
    width: min(1100px, 92%);
    margin: 2rem auto 4rem;
}

.faq-hero {
    margin-bottom: 1.5rem;
    border-left: 4px solid #a2c9a7;
    padding-left: 1rem;
}

.faq-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.faq-hero p {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 70ch;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid rgba(162, 201, 167, 0.3);
    border-radius: 12px;
    overflow: clip;
    background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 1rem 3rem 1rem 1rem;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #a2c9a7;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item[open] summary {
    border-bottom: 1px solid rgba(162, 201, 167, 0.22);
}

.faq-answer {
    padding: 1rem;
}

.faq-answer p {
    font-family: 'Kumbh Sans', sans-serif;
    line-height: 1.75;
    margin-bottom: 0.9rem;
    max-width: 90ch;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin: 1.1rem 0 0.5rem;
    color: #d2e4d4;
}

.footer {
    padding: 1.5rem 1rem 2rem;
    text-align: center;
    color: #d3d3d3;
}

@media screen and (max-width: 680px) {
    .faq-page {
        width: min(1100px, 95%);
        margin-top: 1rem;
    }

    .faq-hero {
        padding-left: 0.75rem;
    }

    .faq-item summary {
        padding: 0.9rem 2.7rem 0.9rem 0.85rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0.9rem 0.85rem;
    }
}