:root {
    --primary-color: #8da399; /* Sage Green */
    --secondary-color: #f7f5f0; /* Cream/Warm Beige */
    --text-color: #333333; /* Dark Charcoal */
    --accent-color: #5d6e66; /* Darker Sage */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1001; /* Higher than nav-links */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 90vh;
    background-color: var(--secondary-color);
    background-image: url('assets/hero.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.hero-text {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* Safari support */
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    max-width: 90%;
}

.hero-text h1 {
    font-size: clamp(2rem, 10vw, 4.5rem);
    margin-bottom: 0.2rem;
    line-height: 1.1;
    color: var(--accent-color); /* Dark Sage for contrast on light wall */
    text-shadow: none;
}

.hero-text p {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-color); /* Dark Charcoal */
    text-shadow: none;
}

.hero-action {
    width: 100%;
}

.btn-large {
    padding: 24px 64px;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-color);
}

.btn-outline {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* Generic Section Styles */
.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.bg-dark {
    background-color: var(--accent-color);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}



/* Pricing Section */
.pricing-image {
    margin-bottom: 3rem;
    text-align: center;
}

.action-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    background: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    top: -10px;
}

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin: 1rem 0;
}

.price-card p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #666;
}

.price-card .btn, .price-card .btn-outline {
    margin-top: 1.5rem;
}

/* Contact Section */
.contact-container {
    text-align: center;
}

.contact-container h2 {
    color: var(--white);
}

.contact-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    font-size: 1.2rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.contact-item:hover {
    border-bottom-color: var(--white);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #888;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    background-color: var(--text-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 60px; /* Aligned with navbar height */
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-bottom: 2rem;
        z-index: 1000; /* Below navbar */
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        margin: 2.5rem 0;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 10vw, 4rem);
    }

    .hero-text p {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .btn-large {
        padding: 16px 40px;
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

}
