/* 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;
    }
}

.contact-container {
    padding: 80px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header { text-align: center; margin-bottom: 50px; }

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-box, .contact-links {
    flex: 1 1 450px;
}

/* Form Styling */
.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-weight: 600; margin-bottom: 5px; color: var(--navy); }
.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.full-btn { width: 100%; cursor: pointer; border: none; font-size: 1.1rem; }

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--navy);
    transition: 0.3s;
}

.contact-item:hover { transform: translateX(10px); background: #f0f0f0; }
.contact-item .icon { font-size: 2rem; margin-right: 20px; }

.whatsapp:hover { border-left: 5px solid #25D366; }
.instagram:hover { border-left: 5px solid #E1306C; }

.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;
    }
}
.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;
}
.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;
}
