/* --- COLOR VARIABLES (Lavender Scheme) --- */
:root {
    --color-primary: #A3A0E5; /* Soft Lavender for accents and buttons */
    --color-secondary: #3F3D56; /* Deep Violet for main text and headings */
    --color-background: #FCFCFC; /* Clean off-white */
    --color-text-light: #666; /* Light gray for secondary text */
}

/* --- Global & Typography --- */
body {
    font-family: Arial, sans-serif;
    color: var(--color-secondary);
    background-color: var(--color-background);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    color: var(--color-secondary);
    font-weight: 600;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

/* --- Navigation & Header --- */
#main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-secondary);
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li a {
    padding: 10px 15px;
    display: block;
    color: var(--color-secondary);
    transition: color 0.3s;
}

nav ul li a:hover:not(.btn) {
    color: var(--color-primary);
}

/* --- Hamburger Button (Hidden by default) --- */
.hamburger {
    display: none; 
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--color-secondary);
    padding: 10px;
}

/* --- Buttons (Call-to-Action) --- */
.btn-primary, .btn-large {
    background-color: var(--color-primary); 
    color: white !important; 
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover, .btn-large:hover {
    background-color: #8D8BCC; 
    cursor: pointer;
}

/* --- Hero Section --- */
#hero {
    /* Set a placeholder background color */
    background-color: #f0f0f5; 
    color: var(--color-secondary);
    text-align: center;
    padding: 80px 20px;
}

#hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* --- Credentials Bar (Trust Signals) --- */
#credentials {
    background-color: var(--color-primary);
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.credentials-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    max-width: 1000px;
    margin: 0 auto;
}

.credential-item {
    padding: 10px 15px;
}

.credential-item span {
    font-size: 1.5em; 
}

.credential-item p {
    margin-top: 5px;
    font-weight: 500;
    font-size: 0.9em;
}

/* --- About & Booking Sections --- */
#about, #booking, #services-preview {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Testimonials --- */
#testimonials {
    padding: 60px 20px;
    background-color: #f0f0f5; 
    text-align: center;
}

.review-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-left: 5px solid var(--color-primary); 
    border-radius: 5px;
    max-width: 450px;
    flex: 1; 
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-light);
}

/* --- Footer --- */
footer {
    background-color: var(--color-secondary); 
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact-details, .map-container {
    padding: 10px;
    max-width: 350px;
    text-align: left;
}

footer h3 {
    color: white;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 5px;
}

footer a {
    color: var(--color-primary);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    #main-header {
        flex-direction: row; 
        justify-content: space-between; 
        padding: 10px 20px;
    }

    /* Show the hamburger button */
    .hamburger {
        display: block; 
    }

    /* Hide the navigation menu by default (The collapse state) */
    #main-menu {
        display: none; 
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        left: 0;
        background-color: white; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 10;
        border-top: 1px solid var(--color-primary);
    }
    
    /* The class the JS will toggle to show the menu */
    #main-menu.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        border-top: 1px solid #eee;
    }
    
    /* Ensure the Call Now button gets the full width */
    nav ul li .btn-primary {
        display: block;
        text-align: center;
        margin: 5px 15px;
    }

    .credentials-bar {
        flex-direction: column;
    }

    .testimonial-card {
        max-width: 100%;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }
}
