/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FFFDF4;
    --green: #758956;
    --brown: #A37C5E;
    --dark-brown: #6A5746;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 12px rgba(106, 87, 70, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ===== SECTION TITLES WITH GREEN UNDERLINE ===== */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

/* Underline with space on sides - GREEN for all sections */
.section-title::after {
    content: '';
    position: absolute;
    width: calc(100% - 80px); /* 40px space on each side */
    max-width: 600px; /* Maximum width it can grow to */
    height: 4px; /* Slightly thicker */
    background-color: var(--green); /* Your green color: #758956 */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px; /* Slightly rounded ends */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title::after {
        width: calc(100% - 60px); /* 30px space on each side */
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding-bottom: 15px;
    }
    
    .section-title::after {
        width: calc(100% - 40px); /* 20px space on each side */
        max-width: 400px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }
    
    .section-title::after {
        width: calc(100% - 30px); /* 15px space on each side */
        max-width: 300px;
    }
}
/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFFDF4;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-brown);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--green);
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-brown);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: 
        url('../images/hero-bg.jpg') 
        center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

/* Add dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    color: #afc58c;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== SHORT INTRO ===== */
.short-intro {
    background-color: white;
    padding: 80px 0;
}

.short-intro .container {
    max-width: 900px;
    margin: 0 auto;
}

.key-line {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--green);
    font-family: 'Montserrat', sans-serif;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    background-color: rgba(117, 137, 86, 0.05);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--green);
}

.mission-item.full-width {
    border-left-color: var(--brown);
}

.mission-item h2 {
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    
}

.number {
    display: inline-block;
    background-color: var(--green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    font-weight: 700;
}

.highlight {
    background-color: rgba(117, 137, 86, 0.1);
    padding: 20px;
    border-radius: 8px;
    font-weight: 500;
    border-left: 3px solid var(--green);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background-color: white;
}



.problem-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-content p {
    margin-bottom: 25px;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    background-color: rgba(163, 124, 94, 0.05);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

.unique-approach {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid var(--brown);
    box-shadow: var(--shadow);
}

.unique-approach h3 {
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.who-section {
    background-color: rgba(106, 87, 70, 0.1);
    padding: 60px 0;
}

.who-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.who-icon-container {
    flex-shrink: 0;
}

.who-icon {
    font-size: 3rem;
    color: var(--dark-brown);
    background-color: rgba(117, 137, 86, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-content {
    flex-grow: 1;
}

.who-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.who-title i {
    color: var(--green);
}

.who-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--green);
}

.who-source {
    font-weight: 600;
    color: var(--green);
    text-align: right;
    margin-top: 20px;
}

.world-first {
    background-color: var(--green);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.world-first h3 {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.world-first p {
    color: var(--cream)
}

.world-first i {
    font-size: 1.5rem;
}

/* ===== DESIGN SECTION - 4 PICTURES (2x2 GRID) ===== */
.design-section {
    background-color: white;
    padding: 80px 0;
}

.design-description {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.design-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* Simplest: Just center the whole grid */
.design-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* More columns for control */
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Top row: 3 items */
.design-item:nth-child(1) { grid-column: 1 / span 2; }
.design-item:nth-child(2) { grid-column: 3 / span 2; }
.design-item:nth-child(3) { grid-column: 5 / span 2; }

/* Bottom row: 2 items centered (skip first and last columns) */
.design-item:nth-child(4) { grid-column: 2 / span 2; } /* Columns 2-3 */
.design-item:nth-child(5) { grid-column: 4 / span 2; } /* Columns 4-5 */

.design-item {
    width: 100%;
    height: 0;
    padding-bottom: 71.43%; /* 5/7 = 0.7143 = 71.43% (maintains 7:5 aspect ratio) */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 87, 70, 0.2);
    transition: var(--transition);
    position: relative;
    border: 3px solid var(--dark-brown);
}

.design-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(106, 87, 70, 0.3);
}

/* Text overlay at the top (always visible) */
.design-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, 
        rgba(106, 87, 70, 0.9) 0%,
        rgba(106, 87, 70, 0.7) 100%);
    color: white;
    padding: 12px 15px;
    text-align: center;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--green);
}

/* Caption overlay that appears on hover */
.design-hover-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, 
        rgba(117, 137, 86, 0.95) 0%,
        rgba(117, 137, 86, 0.85) 100%);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 3;
    transform: translateY(100%);
    transition: var(--transition);
    opacity: 0;
}

.design-item:hover .design-hover-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Caption content */
.hover-caption-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: white;
}

.hover-caption-text {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Actual images container */
.design-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.design-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.design-item:hover .design-image {
    transform: scale(1.05);
}

/* Dark overlay on image during hover */
.design-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.design-item:hover::after {
    opacity: 1;
}

/* Caption below image (outside) */
.design-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--dark-brown);
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .design-grid {
        gap: 25px;
        max-width: 700px;
    }
    
    .design-text-overlay {
        padding: 10px 12px;
        font-size: 1rem;
    }
    
    .design-hover-caption {
        padding: 12px;
    }
    
    .hover-caption-title {
        font-size: 1rem;
    }
    
    .hover-caption-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .design-section {
        padding: 60px 0;
    }
    
    .design-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 30px;
    }
    
    .design-item {
        padding-bottom: 71.43%; /* Still 7:5 aspect ratio */
    }
    
    .design-description {
        margin-bottom: 40px;
    }
    
    .design-description p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .design-text-overlay {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .design-hover-caption {
        padding: 15px;
    }
    
    .hover-caption-title {
        font-size: 1.1rem;
    }
    
    .hover-caption-text {
        font-size: 0.9rem;
    }
    
    .design-caption {
        margin-top: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .design-grid {
        max-width: 350px;
    }
    
    .design-description {
        margin-bottom: 30px;
    }
    
    .design-description p {
        font-size: 1rem;
    }
    
    .design-text-overlay {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .design-grid {
        max-width: 300px;
        gap: 25px;
    }
    
    .design-text-overlay {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .design-hover-caption {
        padding: 10px;
    }
    
    .hover-caption-title {
        font-size: 1rem;
    }
    
    .hover-caption-text {
        font-size: 0.8rem;
    }
}

/* ===== USER APP SECTION ===== */
.user-app-section {
    background-color: white;
    padding: 80px 0;
}

.user-app-content {
    max-width: 900px;
    margin: 0 auto;
}

.user-app-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

/* Gallery for photos and video */
.user-app-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.media-container {
    width: 280px; /* Phone width */
    height: 497px; /* 9:16 aspect ratio (280 * 16/9 ≈ 497) */
    border-radius: 25px; /* Phone-like rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 87, 70, 0.2);
    transition: var(--transition);
    position: relative;
}

.media-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(106, 87, 70, 0.3);
}

.media-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
}

.media-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--green);
}

.media-placeholder img,
.media-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    border: 3px solid var(--green);
}

.video-container .media-placeholder i {
    color: var(--brown);
}

.photo-container .media-placeholder i {
    color: var(--green);
}

/* Captions for media */
.media-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 992px) {
    .user-app-gallery {
        gap: 20px;
    }
    
    .media-container {
        width: 250px;
        height: 444px; /* 250 * 16/9 ≈ 444 */
    }
}

@media (max-width: 768px) {
    .user-app-gallery {
        flex-direction: column;
        gap: 30px;
    }
    
    .media-container {
        width: 280px;
        height: 497px;
    }
    
    .user-app-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .media-container {
        width: 250px;
        height: 444px;
    }
    
    .user-app-section {
        padding: 60px 0;
    }
}

/* ===== DEVELOPMENT SECTION ===== */
.development-section {
    background-color: rgba(117, 137, 86, 0.05);
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stage-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.stage-card:hover {
    transform: translateY(-5px);
}

.stage-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background-color: var(--brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.stage-card h3 {
    color: var(--dark-brown);
    margin-top: 10px;
    margin-bottom: 15px;
}

.phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.phase {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.phase h3 {
    color: var(--dark-brown);
    margin-bottom: 15px;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(117, 137, 86, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background-color: var(--green);
    color: white;
}

.stat-item:hover h3 {
    color: white;
}

.stat-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.stat-item p span {
    font-weight: 600;
    color: var(--green);
}

.stat-item:hover p span {
    color: white;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: rgba(163, 124, 94, 0.05);
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.team-row:first-child {
    /* First row with 3 members */
    justify-content: space-around;
}

.team-row:last-child {
    /* Second row with 2 members - centered */
    justify-content: center;
    gap: 80px; /* More space between the 2 centered members */
}

.team-member {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 280px; /* Fixed width for consistent sizing */
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(106, 87, 70, 0.2);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--green);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--dark-brown);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.member-title {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.member-school {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brown);
    font-size: 0.9rem;
    transition: var(--transition);
}

.member-email:hover {
    color: var(--green);
}

/* Responsive Design for Team Section */
@media (max-width: 992px) {
    .team-row {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .team-row:first-child {
        justify-content: center;
    }
    
    .team-member {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .team-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .team-member {
        width: 100%;
        max-width: 300px;
    }
    
    .team-row:last-child {
        gap: 30px;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-brown);
    color: var(--cream);
    padding: 40px 0;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo p {
    color: rgba(255, 253, 244, 0.8);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-contact p {
    color: rgba(255, 253, 244, 0.8);
    text-align: right;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    @media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0 !important;
    }
    
    body {
        padding-top: 100px !important;
    }
}
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-item h2 {
        font-size: 1.5rem;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-contact p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== MOBILE MENU FIX ===== */
@media (max-width: 768px) {
    /* Make nav position relative so we can position nav-links absolutely */
    nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        position: absolute;
        top: 100%; /* Position right below the header */
        left: 0;
        width: 100%;
        background-color: var(--cream);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid rgba(106, 87, 70, 0.1);
        display: none;
        margin-top: 0; /* Reset any margin */
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 30px;
        font-size: 1.1rem;
        color: var(--dark-brown);
        border-bottom: 1px solid rgba(106, 87, 70, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: rgba(117, 137, 86, 0.1);
        color: var(--green);
        padding-left: 40px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    /* Hamburger icon */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1001; /* Above the menu */
    }
    
    .mobile-menu-btn i {
        font-size: 1.5rem;
        color: var(--dark-brown);
    }
    
    /* Make header position relative for proper stacking */
    header {
        position: relative;
    }
}