:root {
    --dark-green: #1a3a32;
    --gold: #c2a66e;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --header-font: 'Cormorant Garamond', serif;
    --body-font: 'Lato', sans-serif;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: var(--light-gray);
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: var(--header-font);
    font-weight: 600;
    color: var(--gold);
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8rem;
}

/* --- Centered Header Styles (Restored) --- */
.main-header {
    background-color: var(--dark-green);
    padding: 20px 5%;
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center;    /* Centers items horizontally */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
    display: block;
    margin-bottom: 15px; /* Creates space between logo and nav links */
}

.main-header nav a {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--header-font);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 15px; /* Adds space on the left and right of each nav link */
    transition: color 0.3s ease;
}

.main-header nav a:hover {
    color: var(--white);
}
/* --- End of Header Styles --- */

main section {
    padding: 60px 5%;
}

.hero {
    background-color: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 10px 5%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* --- RESPONSIVE LOGO FIX APPLIED HERE --- */
.hero-logo {
    display: block;
    margin: 0 auto 25px auto; 
    max-width: 500px;  /* This is the MAXIMUM size for desktops */
    width: 90%;        /* This makes it FLEXIBLE for mobile phones */
    height: auto;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--gold);
    color: var(--dark-green) !important;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    width: -webkit-fill-available; /* Helps buttons match width in a container */
}

.cta-button:hover {
    background-color: #d4b87e;
}

.services {
    background-color: var(--white);
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.service-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.service-option:last-of-type {
    border-bottom: 1px solid #eee;
}

.service-option h4 {
    margin: 0;
    font-family: var(--body-font);
    font-weight: 700;
    color: #333;
}

.price {
    font-weight: bold;
    color: var(--dark-green);
    font-size: 1.1rem;
    margin: 0;
}

.rush-fee h4{
    color: #a13d3d;
}

.card-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    text-align: center;
    margin-top: auto;
}

.about {
    background-color: var(--light-gray);
}

.bio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
}

.bio-card h3 {
    margin-top: 0;
}

.bio-card h4 {
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--gold);
    margin-top: -15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bio-card p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}

.contact-info {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-info a {
    color: var(--gold);
    font-weight: bold;
}

.booking-hub-section {
    background-color: var(--white);
    text-align: center;
}
.booking-hub-section > p {
    max-width: 600px;
    margin: -20px auto 40px auto;
}
.booking-options-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.booking-option-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}
.booking-option-card h3 {
    margin-top: 0;
}

/* --- Style for Booking Card Buttons --- */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Creates space between the buttons */
    margin-top: 20px;
}

.payment-button {
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}
.payment-button:hover {
    opacity: 0.85;
}
.payment-button.paypal {
    background-color: #00457C;
}
.payment-button.venmo {
    background-color: #008CFF;
}

.google-form-container {
    max-width: 720px;
    margin: 30px auto 0 auto;
    text-align: center;
}

.google-form-container iframe {
    width: 100%;
    height: 950px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

footer {
    background-color: #112520;
    color: var(--light-gray);
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .bio-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .main-header nav a {
        margin: 5px 10px;
    }
}