/* --- Global Styles & Variables --- */
:root {
    --teal: #2A7A8C;
    --gold: #E8B468;
    --slate-blue: #5E7C88;
    --off-white: #F5F5F3;
    --charcoal: #333333;
    --heading-font: 'Merriweather', serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--off-white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--teal);
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--gold); text-decoration: none; }

/* --- Header & Navigation --- */
.header {
    background-color: rgba(245, 245, 243, 0.9); /* Semi-transparent off-white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--teal);
    font-weight: 700;
}

.nav-logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.cta-button {
    background-color: var(--gold);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #d6a356; /* Darker gold */
    transform: translateY(-2px);
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--charcoal);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(42, 122, 140, 0.7), rgba(94, 124, 136, 0.6)), url('images/hero-background.jpg') no-repeat center center/cover;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* --- General Content Section Styling --- */
.content-section {
    padding: 80px 0;
}

.alt-bg {
    background-color: #eef1f2; /* A very light slate blue tint */
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

/* --- About Me Section --- */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    max-width: 350px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 2;
}

/* --- My Approach Section --- */
.approach-columns {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.approach-col {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- Services & Fees Section --- */
.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card h3 {
    color: var(--slate-blue);
}

.card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.price {
    color: var(--teal);
    font-size: 1.2rem;
}

/* --- Contact Section --- */
.contact-info {
    text-align: center;
    margin: 40px 0;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

#contact.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* --- Footer --- */
.footer {
    background-color: var(--charcoal);
    color: #ccc;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1s ease-in forwards;
}

.hero-content h1 { animation-delay: 0.2s; }
.hero-content p { animation-delay: 0.4s; }
.hero-content.cta-button { animation-delay: 0.6s; }

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transform: translateY(50px);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
   .service-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
   .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--off-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

   .nav-menu.active {
        left: 0;
    }

   .nav-item {
        margin: 2.5rem 0;
    }

   .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);
    }

   .about-container {
        flex-direction: column;
    }
    
   .approach-columns {
        flex-direction: column;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
}