/* ABOUT PAGE SPECIFIC STYLES */
.about-hero {
    padding: 100px 5% 50px;
    text-align: center;
}

.tagline {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--navy);
    margin-top: 10px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 80px 5%;
    align-items: center;
}

.about-image, .about-text {
    flex: 1 1 400px; /* Stacks on mobile automatically */
}

.prof-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px var(--vibrant); /* Professional design flourish */
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* VALUES SECTION */
.values-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 5%;
    background-color: var(--navy);
    color: white;
    text-align: center;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-top: 10px;
}

.value-card .icon {
    font-size: 2.5rem;
}

/* CTA SECTION */
.cta-section {
    padding: 100px 5%;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 768px) {
    .menu-toggle { display: flex; } /* Show icon on mobile */

    .nav-links {
        display: none; /* Keep it hidden until toggled */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-bottom: 1px solid #eee;
        text-align: center;
        z-index: 10;
    }

    /* When this class is added by JS, the menu shows up */
    .nav-links.active {
        display: flex;
    }
}
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    border-radius: 2px;
}

body::before {
    content: "";
    position: fixed; /* Stays in the center while you scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Background Logo Properties */
    background-image: url('../assets/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 500px; /* Adjust this to make it larger or smaller */
    
    /* The "Clean" Secret: Low Opacity */
    opacity: 0.15; /* 0.05 is a subtle hint; 0.1 is a visible watermark */
    
    z-index: -1; /* Puts it behind all your text and cards */
    pointer-events: none; /* Ensures you can still click buttons through it */
}

/* Mobile Tweak */
@media (max-width: 768px) {
    body::before {
        background-size: 250px; /* Scale down so it doesn't overwhelm the screen */
    }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    
    .nav-links {
        display: flex; /* Bring them back! */
        gap: 10px;
    }
}
.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy);
}

.logo span { color: var(--vibrant); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
}

@media (max-width: 480px) {
    .nav-logo {
        height: 60px;
    }
}

/* 3. HERO SECTION */
.hero {
    padding: 80px 5%;
    /* background-color: var(--light);*/
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.vibrant-text { color: var(--vibrant); }

.btn-vibrant {
    background-color: var(--vibrant);
    color: white !important;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-vibrant:hover { opacity: 0.8; }

/* 4. SERVICES (The Responsive Grid) */
.services {
    display: flex;
    flex-wrap: wrap; /* Key for Mobile */
    gap: 20px;
    padding: 60px 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    align-items: center;
    /* background: var(--white); */
    border-bottom: 1px solid #eee;
}

:root {
    --navy: #1A2238;
    --vibrant: #B15F2F; /* Warm Earthy Brown */
    --light: #F9F9F9;
    --white: #FFFFFF;
    --text: #333333;
}

/* Style for the hamburger lines */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; } /* Show icon on mobile */

    .nav-links {
        display: none; /* Keep it hidden until toggled */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-bottom: 1px solid #eee;
        text-align: center;
        z-index: 10;
    }

    /* When this class is added by JS, the menu shows up */
    .nav-links.active {
        display: flex;
    }
}
.nav-logo {
    height: 110px;
}
