/* Color Palette (kept for background/border use) */
:root {
    --primary-leaf-green: #6BBF59;
    --primary-black: #000000;
    --accent-fire-orange: #E25822;
    --secondary-dark-gray: #444444;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
    color: #000000;
}

.navbar {
    background: var(--primary-leaf-green);
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.navbar .logo {
    color: var(--accent-fire-orange);
    font-size: 24px; /* or your original size */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.logo-img {
    max-width: 6vw;
    height: auto;
    transition: transform 0.3s ease;
    padding: 0;
    margin-left: 24px; /* or 32px, 40px, etc. adjust as needed */
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0;
    padding: 0;
    padding-right: 5%;
    justify-content: center;
    align-items: center;
}

.nav-menu a {
    color: var(--accent-fire-orange); /* Or #000 or any color you want */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em; /* Make this bigger as needed */
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li {
    margin: 0;
    padding: 2% 0;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary-leaf-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
}

.hero h1 {
    font-size: 6rem;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

.hero .btn {
    background: var(--accent-fire-orange);
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.hero-text-container {
    max-width: 600px;
    margin: 20px;
    color: #000000;
}

.hero-text-container h1 {
    font-size: 4.5em;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #000000;
}

.hero-text-container p {
    font-size: 1em;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 10px;
    color: #fff; /* <-- Make the text white */
    line-height: 1.2;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Services */
.services {
    padding: 50px 20px;
    text-align: center;
    background: #F3E5AB; /* Slightly transparent background for readability */
}

.services h2 {
    padding: 20px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.services h3 {
    font-family: 'Montserrat', sans-serif;
    padding-top: 2vw;
    padding-bottom: 2vw;
    color: #000000;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: var(--primary-leaf-green);
    color: #000000;
    padding: 20px;
    width: 20%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;      /* Set a fixed height for all images */
    border-radius: 10px;
    object-fit: cover;  /* Ensures the image fills the area and is cropped if needed */
    margin-bottom: 15px;
}

.service-card ul {
    margin: 15px 0;
    padding-left: 20px;
    text-align: left;
}

.service-card ul ul {
    margin: 10px 0;
    padding-left: 20px;
}

.service-card li {
    font-family: 'Lora', serif;
    font-size: 1em;
    line-height: 1.6;
    color: #000000;
}

.service-card li::marker {
    font-size: 1.5em;
    color: var(--accent-fire-orange);
}

@media (max-width: 768px) {
    .service-card {
        width: 80%;
        margin: 0 auto;
    }
}

/* Gallery */
.gallery {
    text-align: center;
    background: #f9eec5;
    color: #000000;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-container img {
    width: 100%;
    transition: transform 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

.gallery-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.gallery-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.gallery h2 {
    text-align: center;
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    z-index: 3;
    padding-bottom: 2vw;
}

.gallery h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

/* Testimonials */
.testimonials {
    padding: 50px 20px;
    background: #f9eec5; /* now pale yellow */
    text-align: center;
    color: #000000;
}

.testimonials h2 {
    padding: 20px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial {
    background: var(--accent-fire-orange); /* logo orange */
    color: var(--primary-leaf-green);
    padding: 20px;
    width: 300px;
    border-radius: 10px;
}

/* About Us */
.about {
    position: relative;
    padding: 50px 20px;
    text-align: center;
    background: var(--primary-leaf-green);
    overflow: hidden;
}

.about-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #000000;
    background: #F3E5AB;
    padding: 20px;
    border-radius: 10px;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #000000;
}

.about-content p {
    font-family: 'Lora', serif;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        padding-right: 3%;
    }
    .about-content {
        padding: 15px;
    }
    .about-content h2 {
        font-size: 1.8em;
    }
    .about-content p {
        font-size: 1em;
    }
    .footer-links-container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-right: 20%;
    }
    .nav-menu li {
        margin: 0;
    }
    .logo-img {
        transform: scale(4.8);
        margin-left: 80px;
        padding: 0;
        border-radius: 1px;
    }
}

/* CTA Section */
.cta {
    background: var(--primary-leaf-green);  /* logo leaf green */
    color: #fff;                            /* white text for contrast */
    text-align: center;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.cta h2 {
    padding: 20px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.cta .btn {
    background: var(--primary-leaf-green);
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background-color: var(--accent-fire-orange); /* now orange */
}

.footer-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.footer-menu li a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
    padding: 10px 20px;
    margin: 5px 0;
    width: 100%;
    text-align: center;
    font-size: 1em;
}

.footer-menu li a:hover {
    color: #000000;
    /* Optionally, keep hover effect but ensure it's black */
}

.footer p {
    margin: 5px 0;
    color: #000000;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-icon {
    color: var(--primary-leaf-green);
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #000000;
    transform: scale(1.2);
}

/* Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#areas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-style: italic;
    margin-top: 2vw;
    font-size: 1.2em;
    width: 100%;
    color: #000000;
}

#footer-text {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 2vw;
    color: #000000;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    max-width: 900px;      /* Limit carousel width */
    margin: 0 auto;
    height: 350px;         /* Set the height you want */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* Show the whole image, no cropping */
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }
}

/* Contact section styles */
.contact-section {
    background-color: #6F4E37;
    padding: 2rem;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}



