body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg,#041f15,#062a1d);
    color: #fff;
}



/* ===== PREMIUM NAV ANIMATION ===== */

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #e6c26a;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: 0.3s ease;
}

/* GOLD UNDERLINE ANIMATION */

.nav-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,#e6c26a,#ffffff);
    transition: width 0.4s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* ACTIVE PAGE STYLE */

.nav-menu ul li a.active {
    color: #ffffff;
}

.nav-menu ul li a.active::after {
    width: 100%;
}

/* HERO */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
                url('../images/about-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(90deg,#d4af37,#fff,#d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    margin-top: 15px;
    font-size: 18px;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* STORY */
.about-story {
    padding: 120px 0;
}

.about-story .container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: gold;
    margin-bottom: 20px;
}

.story-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ddd;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* VISION MISSION */
.vision-mission {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 40px;
}

.vm-card {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    transition: 0.4s;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 30px rgba(212,175,55,0.6);
}

.vm-card h3 {
    color: gold;
    margin-bottom: 15px;
}

/* TRUST */
.trust-section {
    padding: 120px 0;
    text-align: center;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(90deg,#d4af37,#fff,#d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 40px;
}

.trust-card {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    transition: 0.4s;
}

.trust-card:hover {
    transform: scale(1.05);
    border-color: gold;
    box-shadow: 0 0 25px rgba(212,175,55,0.6);
}

.trust-card h4 {
    color: gold;
    margin-bottom: 10px;
}

footer {
    padding: 20px;
    text-align: center;
    background: #041f15;
    border-top: 1px solid gold;
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(4,31,21,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

/* MENU */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* GOLD HOVER LINE */
.nav-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: gold;
    transition: 0.3s;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-menu ul li a:hover {
    color: gold;
}

/* ADD TOP SPACE FOR HERO */
.about-hero {
    margin-top: 90px;
}

/* ================= NAVIGATION ================= */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
}

.main-header.scrolled {
    background: rgba(4,31,21,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    transition: 0.3s;
}

.main-header.scrolled .logo img {
    height: 55px;
}

/* MENU */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* GOLD UNDERLINE */
.nav-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,#d4af37,#fff,#d4af37);
    transition: 0.4s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-menu ul li a:hover {
    color: gold;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: gold;
}

@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        right: 0;
        background: rgba(4,31,21,0.95);
        width: 200px;
        display: none;
        border-radius: 10px;
        padding: 20px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu.active {
        display: block;
    }
}

/* HERO OFFSET */
.about-hero {
    margin-top: 100px;
}

/* ===== PREMIUM NAV ===== */

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 50px;
    position: relative;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #e6c26a;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    display: inline-block;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(230,194,106,0.5);
}

/* GOLD SLIDING BAR */

.nav-indicator {
    position: absolute;
    bottom: -5px;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg,#e6c26a,#ffffff);
    transition: all 0.4s ease;
    border-radius: 2px;
}

/* ===== PREMIUM ABOUT SECTION ===== */

.about-story {
    padding: 140px 0;
    background: linear-gradient(135deg,#031c12,#052b1d);
}

.about-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.about-left {
    flex: 1;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,#d4af37,#fff,#d4af37);
    display: block;
    margin-bottom: 25px;
}

.about-left h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: #f4d03f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-left p {
    font-size: 16px;
    line-height: 1.9;
    color: #dcdcdc;
    margin-bottom: 20px;
    max-width: 550px;
}

/* RIGHT SIDE IMAGE */
.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 25px;
    border: 1px solid rgba(212,175,55,0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212,175,55,0.3);
}

.image-frame img {
    width: 380px;
    max-width: 100%;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-left p {
        max-width: 100%;
    }

    .gold-line {
        margin: 0 auto 25px;
    }
}

/* MULTI IMAGE STACK */

.image-stack {
    position: relative;
    width: 380px;
    height: 500px;
}

.stack-img {
    position: absolute;
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(212,175,55,0.3);
    opacity: 0;
    transform: translateY(60px);
}

/* slight layered look */
.stack-img:nth-child(1) { top: 0; z-index: 3; }
.stack-img:nth-child(2) { top: 20px; left: 20px; z-index: 2; }
.stack-img:nth-child(3) { top: 40px; left: 40px; z-index: 1; }

.image-stack {
    position: relative;
    width: 400px;
    height: 520px;
}

.stack-img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: translateY(60px);
    transition: 0.4s ease;
}

/* Layer styling */
.stack-img:nth-child(1) { top: 0; left: 0; z-index: 3; }
.stack-img:nth-child(2) { top: 25px; left: 25px; z-index: 2; }
.stack-img:nth-child(3) { top: 50px; left: 50px; z-index: 1; }

/* PREMIUM IMAGE SLIDER */

.image-slider {
    position: relative;
    width: 420px;
    height: 520px;
}

.slide-img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide-img.active {
    opacity: 1;
}

/* ================= LUXURY SLIDER ================= */

.luxury-slider {
    position: relative;
    width: 420px;
    height: 520px;
    overflow: hidden;
}

/* Slides */
.luxury-slide {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(1.05) translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
    filter: drop-shadow(0 0 0px gold);
}

/* Active */
.luxury-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 20px rgba(212,175,55,0.6));
}

/* GOLD LIGHT SWEEP */
.gold-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,215,0,0.2) 40%,
        rgba(255,215,0,0.6) 50%,
        rgba(255,215,0,0.2) 60%,
        transparent 100%
    );
    pointer-events: none;
}

.luxury-slider {
    position: relative;
    width: 400px;
    height: 500px;
}

.luxury-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.luxury-slide.active {
    opacity: 1;
    transform: scale(1);
}
/* ===== LUXURY TRUST CLEAN ===== */

.lux-trust {
    padding: 140px 0;
    background-color: #052c1d; /* solid emerald */
    text-align: center;
}

.lux-trust-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #e6c26a;
    margin-bottom: 80px;
}

/* GRID */

.lux-trust-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */

.lux-trust-card {
    background: #073827;
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid #b9972f;
    transition: 0.4s ease;
}

.lux-trust-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.4);
}

/* TEXT */

.lux-trust-card h3 {
    font-size: 20px;
    color: #f1d38a;
    margin-bottom: 18px;
}

.lux-trust-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #f4f4f4;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .lux-trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lux-trust-container {
        grid-template-columns: 1fr;
    }
}


/* ===== COMMITMENT LUXURY SECTION ===== */

.commitment-lux {
    padding: 140px 0;
    background-color: #052c1d; /* solid emerald */
    text-align: center;
}

.commitment-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #e6c26a;
    margin-bottom: 80px;
}

/* GRID */

.commitment-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */

.commitment-card {
    background: #073827;
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid #b9972f;
    transition: 0.4s ease;
}

.commitment-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.4);
}

/* TEXT */

.commitment-card h3 {
    font-size: 20px;
    color: #f1d38a;
    margin-bottom: 18px;
}

.commitment-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #f4f4f4;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .commitment-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .commitment-container {
        grid-template-columns: 1fr;
    }
}

/* ===== ULTRA PREMIUM COMMITMENT SECTION ===== */

.commitment-lux {
    padding: 160px 0;
    background: radial-gradient(circle at center, #083d2c 0%, #041f17 80%);
    text-align: center;
    position: relative;
}

/* TITLE */

.commitment-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    background: linear-gradient(90deg,#d4af37,#fff,#d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 90px;
}

/* GRID */

.commitment-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 50px;
}

/* CARD */

.commitment-card {
    position: relative;
    padding: 60px 40px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212,175,55,0.35);
    transition: all 0.5s ease;
    overflow: hidden;
}

/* INNER SOFT GLOW */

.commitment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(circle at top left,
        rgba(212,175,55,0.15),
        transparent 60%);
    pointer-events: none;
}

/* GOLD SHIMMER LINE */

.commitment-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,215,0,0.35),
        transparent
    );
    transform: rotate(25deg);
    transition: 0.8s;
}

.commitment-card:hover::before {
    top: 120%;
    left: 120%;
}

/* HOVER DEPTH */

.commitment-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 25px 80px rgba(212,175,55,0.35),
        0 0 40px rgba(212,175,55,0.25);
}

/* TEXT */

.commitment-card h3 {
    font-size: 22px;
    color: #f1d38a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.commitment-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #f5f5f5;
}

/* ================= HERITAGE TIMELINE ================= */

.heritage-section {
    padding: 160px 0;
    background: radial-gradient(circle at center, #083d2c 0%, #041f17 80%);
    position: relative;
}

.heritage-title {
    text-align: center;
    margin-bottom: 100px;
}

.heritage-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    background: linear-gradient(90deg,#d4af37,#fff,#d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,#d4af37,#fff,#d4af37);
    margin: 20px auto 0;
}

/* TIMELINE */

.timeline {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(#d4af37,#fff,#d4af37);
    transform: translateX(-50%);
}

/* ITEM */

.timeline-item {
    position: relative;
    width: 50%;
    padding: 40px 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

/* YEAR CIRCLE */

.timeline-year {
    position: absolute;
    top: 30px;
    left: 100%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #073827;
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #f1d38a;
    box-shadow: 0 0 25px rgba(212,175,55,0.6);
}

.timeline-item:nth-child(even) .timeline-year {
    left: 0;
    transform: translateX(-50%);
}

/* CONTENT */

.timeline-content h3 {
    font-size: 22px;
    color: #f1d38a;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #eee;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-year {
        left: 20px !important;
        transform: translateX(-50%);
    }
}

/* ================= HERITAGE TIMELINE FIXED ================= */

.timeline {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,#d4af37,#fff,#d4af37);
    transform: translateX(-50%);
}

/* ITEM BASE */

.timeline-item {
    position: relative;
    width: 50%;
    padding: 60px 70px;
    box-sizing: border-box;
}

/* LEFT SIDE */

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* RIGHT SIDE */

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* YEAR CIRCLE */

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #073827;
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #f1d38a;
    font-size: 20px;
    box-shadow: 0 0 30px rgba(212,175,55,0.6);
    z-index: 2;
}

/* POSITION YEAR */

.timeline-item:nth-child(odd) .timeline-year {
    right: -45px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -45px;
}

/* CONTENT */

.timeline-content h3 {
    font-size: 22px;
    color: #f1d38a;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #eee;
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 90px;
        padding-right: 20px;
        text-align: left !important;
        left: 0 !important;
    }

    .timeline-year {
        left: 0 !important;
        right: auto !important;
    }
}
.nav-menu ul li a:hover {
    text-shadow: 0 0 10px rgba(230,194,106,0.6);
}


/* ================================= */
/* GLOBAL WIDTH FIX – ALL PAGES */
/* ================================= */

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

/* Prevent horizontal overflow everywhere */
* {
    box-sizing: border-box;
}

/* Section safety */
section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Container alignment fix */
.container,
.elite-container,
.signature-section,
.stack-container,
.why-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================= */
/* SIGNATURE COLLECTION MOBILE FIX */
/* ================================= */

@media (max-width: 768px) {

.signature-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 40px;
}

/* Stack reset for mobile */
.stack-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 25px !important;
}

.stack-card {
    width: 100% !important;
    max-width: 350px !important;
    transform: none !important;
    margin: 0 auto !important;
    position: relative !important;
}

/* Remove GSAP X movement on mobile */
.card-0,
.card-1,
.card-2,


.main-header {
  width: 100%;
  background: #042e1f;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {

.nav-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #032016;
  transition: 0.4s;
  padding-top: 40px;
}

.nav-menu ul {
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.nav-menu.active {
  right: 0;
}

.menu-toggle {
  display: block;
}

}

@media (max-width: 768px) {

.menu-toggle {
    display: block;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #032016;
    transition: 0.3s ease;
    padding-top: 40px;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

}

/* ===== HAMBURGER DEFAULT (HIDDEN ON DESKTOP) ===== */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #d4af37;
}

/* ===== SHOW ONLY ON MOBILE ===== */

@media (max-width: 768px) {

.menu-toggle {
    display: block;
}

.nav-menu {
    display: none;
    flex-direction: column;
    background: #052c1d;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
}

.nav-menu.active {
    display: flex;
}

}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #d4af37;
}

/* Mobile */
@media (max-width: 768px) {

.menu-toggle {
    display: block;
}

.nav-menu {
    display: none;
    flex-direction: column;
    background: #052c1d;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
}

.nav-menu ul {
    list-style: none;
    text-align: center;
}

.nav-menu li {
    margin: 15px 0;
}

.nav-menu.active {
    display: flex;
}

}