@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Glacial+Indifference&display=swap');

body {
    font-family: 'Glacial Indifference', sans-serif; /* Regular text font */
    
    /* 1. Set the solid background color to black (removes the white) */
    background-color: black;

    /* 2. Add the image with a gradient that fades to black at the bottom */
    /* Replace 'img/1.jpg' with the specific background image file you want to use */
    background-image: linear-gradient(
        to bottom,              /* Direction of the fade */
        rgba(0, 0, 0, 0.5),     /* Top: 50% opacity black (shows image) */
        rgba(0, 0, 0, 1)        /* Bottom: 100% solid black */
    ), url('img/3.jpg');

    /* 3. Formatting ensures the image covers the screen and stays fixed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background still while you scroll */
    
    margin: 0; /* Ensures no white bars on the edges */
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif; /* Heading font */
}

/* Hero section with faded background image */
/* In styles.css */
.hero {
    /* Use the shorthand 'background' to ensure no other properties interfere */
    background: linear-gradient(
        rgba(0, 0, 0, 0.5), /* Reduced opacity to 0.5 for visibility */
        rgba(0, 0, 0, 0.5)
    ), url('img/1.jpg');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Ensure height is sufficient to see the image */
    min-height: 60vh; 
    
    /* Text styling */
    color: #cea964;
    padding: 120px 40px 80px 40px;
    text-align: center;
    margin: 20px 0 0 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Style for the menu under the logo */
header .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0; /* Space between logo and menu */
    text-align: center;
}

header .main-nav li {
    display: inline-block;
    margin: 0 15px;
}

header .main-nav a {
    text-decoration: none;
    color: #fff; /* Assuming white text on the dark background */
    font-size: 0.7em;
    font-family: 'Glacial Indifference', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header .main-nav a:hover {
    color: #cea964; /* Gold hover effect */
}


header {
    background: linear-gradient(
        rgba(0, 0, 0, 0.3), 
        rgba(0, 0, 0, 0.6)
    ), url('img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
    max-width: 100%;
    margin: 0;
    position: relative;
}


.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center; /* Centers the text and the image */
}

.about-image {
    max-width: 100%; /* Ensures image shrinks on mobile */
    height: auto;    /* Maintains aspect ratio */
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px; /* Optional: rounds the corners slightly */
    box-shadow: 0 4px 8px rgba(0,0,0,0.5); /* Optional: adds a subtle shadow */
}

/* styles.css */
.service p {
    text-align: left; /* Makes long paragraphs easier to read */
    line-height: 1.6; /* Adds breathing room between lines */
    margin-bottom: 15px;
}

/* Keeps the quote centered if you prefer */
.service p:last-child {
    text-align: center; 
}


/* Add overlay for better text readability */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4), 
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

header > * {
    position: relative;
    z-index: 2;
}

.logo {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.logo img {
    max-width: 200px;
}

/* Style the Instagram Icon */
.instagram-icon {
    position: absolute;
    top: 20px;   /* Distance from top of the grey box */
    right: 20px; /* Distance from right of the grey box */
    display: inline-block;
    width: 30px;
    height: 30px;
    z-index: 10;
}

.instagram-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, fill 0.3s ease;
}

/* Hover effect */
.instagram-icon:hover svg {
    fill: #cea964; /* Changes color to gold on hover */
    transform: scale(1.1); /* Slightly grows */
}

/* Mobile adjustment: Move it slightly if it overlaps on small screens */
@media (max-width: 768px) {
    .instagram-icon {
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
    }
}

/*#navbar {
    position: fixed;
    top: -80px; /* HIDDEN by default (pulled up off-screen) */
/*    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.4s ease, background-color 0.4s ease; /* Smooth slide effect */
    
    /* Ensure existing styles like padding/height remain if you had them */
/*}

/* Styling for the container of the email and icon */
.nav-contact-info {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between divider, email, and icon */
    margin-left: 10px;
}

/* The vertical divider line */
.divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
}

/* Specific style for the email address */
.nav-email {
    font-size: 0.85rem !important; /* Smaller than main links */
    text-transform: lowercase !important; /* Keep email lowercase */
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Icon styling */
.nav-icon svg {
    display: block;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    color: #cea964;
    transform: scale(1.1); /* Slight zoom on hover */
}

/* --- Responsive Tweak --- */
/* On smaller tablets, hide the email text but keep the icon to save space */
@media (max-width: 992px) {
    .nav-email, .divider {
        display: none;
    }
}

/* On Mobile Menu, ensure they are visible and stacked */
@media (max-width: 768px) {
    .nav-contact-info {
        margin-left: 0;
        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 15px;
        justify-content: center;
    }
    
    .nav-email, .divider {
        display: block; /* Bring back email on mobile menu */
    }
    
    .divider { display: none; } /* Actually, hide divider on mobile, not needed */
}


/* Remove bullet points and align items horizontally */
.nav-list {
    list-style: none;
    display: flex;       /* key for horizontal layout */
    justify-content: flex-end; /* pushes items to the right */
    align-items: center;
    gap: 20px;           /* Space between the words */
    margin: 0;
    padding: 0 20px;
}

/* Style the links */
.nav-list li a {
    text-decoration: none;
    color: #fff;        /* White text */
    font-size: 0.6rem;
    font-family: 'Glacial Indifference', sans-serif; /* Your font */
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #cea964;     /* Gold hover effect */
}


/* MOBILE VIEW UPDATES */
/* When the screen is small, we stack them vertically */
@media (max-width: 768px) {
    .nav-list {
        display: none;        /* Hidden by default on mobile */
        flex-direction: column; /* Stack vertically when open */
        width: 100%;
        text-align: center;
        background-color: rgba(51, 51, 51, 0.95);
        position: absolute;
        top: 60px; /* Height of the navbar */
        left: 0;
        padding: 30px 0;
    }

    /* This class is added by your JavaScript when clicked */
    .nav-list.active {
        display: flex; 
    }
    
    .nav-list li {
        margin: 15px 0; /* Space between items on mobile */
    }
}



nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #cea964; /* Warm Gold for better contrast */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

nav ul li a:hover {
    color: #d39f8f; /* Soft Pink on hover */
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Side padding for large screens */
}

.hero h1 {
    color: #f4f1ed; /* Light Neutral for main heading */
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

.hero p {
    font-size: 1em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #f4f1ed;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background-color: #cea964; /* Warm Gold */
    color: black;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #cea964;
}

.cta-button:hover {
    background-color: #d39f8f; /* Soft Pink on hover */
    border-color: #d39f8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

section {
    padding: 60px 40px;
    background-color: black; /* Black background */
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid #424739; /* Subtle border */
}

section h2 {
    color: #d39f8f; /* Soft Pink for section headings */
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
}

section h3 {
    color: #48785d; /* Deep Green for service titles */
    font-size: 1.5em;
    margin-bottom: 15px;
}

section p {
    color: #f4f1ed; /* Light Neutral for paragraph text */
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.service {
    margin: 30px 0;
    padding: 30px;
    border: 0px solid #48785d;
    border-radius: 8px;
    text-align: center;
    
}

/* Packages Layout */

/* Ensure the container places items in a row */
.services-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: center;
    gap: 20px; /* Space between the package boxes */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Package Box Styling */
.service {
    flex: 1 1 300px; /* Each box is at least 300px wide, but grows to fit */
    background: rgba(0, 0, 0, 0.7); /* slightly transparent black background */
    padding: 30px;
    border: 1px solid #48785d; /* Your green border color */
    border-radius: 8px;
    color: #fff;
    text-align: left; /* Aligns list text to the left */
}

/* Styling the lists inside packages */
.package-list {
    list-style-type: none; /* Removes default bullets */
    padding: 0;
    margin: 15px 0;
}

.package-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Add a custom green bullet point */
.package-list li::before {
    content: "•"; 
    color: #48785d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Highlight text (Coordinator count) */
.highlight {
    margin-top: 15px;
    color: #48785d; /* Green accent color */
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}
    

/* --- REPLACEMENT CODE START --- */

/* 1. Fixes the naming match (services) and the overlay bug (position: relative) */
#services, 
#packages {
    position: relative; /* CRITICAL: This traps the overlay inside the section */
    overflow: hidden;   /* Keeps everything neat */
    padding: 60px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. Specific Background for Services */
#services {
    background-image: url('img/6.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 3. Specific styling for Packages (Optional: Add a background image here if you want) */
#packages {
    /* Currently uses default black background. 
       Uncomment the lines below to add an image like Services has: */
    /* background-image: url('img/3.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
}

/* 4. The Overlay - applies to both sections now */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darkens the background image */
    z-index: 1;
}

/* 5. Ensure text sits ON TOP of the overlay */
#services h2, 
#services .service,
#packages h2, 
#packages .service {
    position: relative;
    z-index: 2; 
    color: #fff;
}

/* --- REPLACEMENT CODE END --- */


/* Form styling for better contrast and centering */
#contact {
    text-align: center;
    background-color: black; /* Keep section background black */
}

form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f4f1ed; /* Light Neutral background for form */
    border-radius: 10px;
    border: 2px solid #48785d;
}

form input, form textarea, form select {
    background-color: white; 
    color: #424739; 
    border: 1px solid #48785d;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
    font-family: 'Glacial Indifference', sans-serif; /* Ensures font matches */
}


form input::placeholder, form textarea::placeholder {
    color: #424739; /* Dark Green placeholders for better visibility */
}

form textarea {
    height: 120px;
    resize: vertical;
}

form button {
    background-color: #cea964; /* Warm Gold */
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
    font-weight: bold;
}

form button:hover {
    background-color: #d39f8f; /* Soft Pink on hover */
}

footer {
    background-color: black; /* Black background */
    color: #48785d; /* Deep Green text */
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #424739; /* Subtle border */
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    main {
        padding: 0 20px;
    }
    
    .hero {
        padding: 80px 20px 60px 20px;
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    section {
        padding: 40px 20px;
    }
    
    form {
        padding: 20px;
        margin: 0 10px;
    }
}

/* Add to your existing CSS */

/* Touch-friendly navigation */
@media (max-width: 768px) {
    nav ul li {
        display: block;  /* Stack nav items vertically */
        margin: 10px 0;
        text-align: center;
    }
    
    nav ul li a {
        padding: 15px;  /* Larger touch targets */
        display: block;
    }
}

/* Improved button sizing for mobile */
@media (max-width: 768px) {
    .cta-button {
        padding: 20px 25px;
        font-size: 1.1em;
        width: 80%;
        max-width: 300px;
    }
}
/* --- GLOBAL RESET FOR ALL MENUS (Static & Floating) --- */

/* 1. Kill bullets on ALL lists inside ANY 'nav' tag */
nav ul, 
nav li, 
.main-nav ul, 
.main-nav li {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. Kill underlines (dashes) on ALL links inside ANY 'nav' tag */
nav a, 
.main-nav a {
    text-decoration: none !important;
}

/* 3. Ensure the Static Menu under the logo is centered and flexible */
.main-nav ul {
    display: flex; /* Makes them sit side-by-side, not stacked */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between words */
}

/* 4. On Mobile, hide the STATIC menu links so only the logo remains */
/* (The floating menu handles navigation on mobile) */
@media screen and (max-width: 768px) {
    .main-nav {
        display: none !important;
    }
}
