/* --- Variables & Setup --- */
:root {
    --bg-color-main: #b6c6bf; /* The lighter sage green */
    --bg-color-dark: #9aafa5; /* The slightly darker green band */
    --text-white: #ffffff;
    --text-dark: #647069; /* Slate grey for reading text */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color-main);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- Header & Nav --- */
.site-header {
    text-align: center;
    padding-top: 40px;
}

.site-header h1 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.site-header .subtitle {
    color: var(--text-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.main-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

.announcement-bar {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    color: var(--text-white);
    font-size: 0.9rem;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image-wrapper {
    flex: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border: 15px solid white;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-text {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-text h2 {
    color: var(--text-dark);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-text .intro-text {
    font-size: 1.3rem;
}

.inline-link {
    color: var(--text-dark);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--text-white);
}

/* --- Services Section --- */
.dark-band {
    background-color: var(--bg-color-dark);
    padding: 20px 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.service-card {
    position: relative;
    background: white; /* Fallback */
    height: 350px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(240, 245, 255, 0.9);
    color: #6d7f96; /* Muted blue/grey for button text */
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- Testimonials Section --- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-col {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly lighter box */
    padding: 40px 30px;
}

.testimonial-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
}


/* --- Responsive Media Queries --- */

/* Tablet & Smaller Desktop */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-image-wrapper {
        width: 80%;
        margin: 0 auto;
    }

    .services, .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2.5rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-image-wrapper {
        width: 100%;
    }

    .services, .testimonials {
        grid-template-columns: 1fr;
    }
    
    .section-container {
        padding: 40px 20px;
    }
}

/* --- Support List Styles --- */
.support-list {
    list-style: none; /* Removes standard bullet points */
    padding: 0;
    margin: 15px auto 30px auto;
    text-align: left; /* Aligns the text cleanly to the left */
    display: inline-block; /* Keeps the whole list block centered on the page */
}

.support-list li {
    font-size: 1.1rem;
    margin-bottom: 12px; /* Adds the spacing between each footprint */
    color: var(--text-dark);
}

/* --- Contact Page Styles --- */
.contact-section {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.contact-container {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 50px;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-text {
    text-align: center;
    margin-bottom: 30px;
}

.contact-text h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-text p {
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #c8d4ce;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bg-color-dark);
    box-shadow: 0 0 5px rgba(154, 175, 165, 0.5);
}

.submit-btn {
    background-color: var(--bg-color-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #7d9387; /* Slightly darker green for hover */
}

/* Mobile adjustments for contact form */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }
}

.hidden-honeypot {
    display: none !important;
}

h1 a, 
h1 a:link, 
h1 a:visited, 
h1 a:hover, 
h1 a:active {
  color: #ffffff; /* Replace with your exact hex color */
  text-decoration: none; /* Optional: removes the default underline */
}