/* Color Palette from Logo */
:root {
    --cream-bg: #F9F1E7;
    --dark-teal: #415A57;
    --gold: #C5A059;
    --text-color: #2D3A38;
    --white: #ffffff;
}

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

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--cream-bg);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

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

/* Header & Nav */
header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-teal);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-main {
    display: inline-block;
    background: var(--dark-teal);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: 'Lora', serif;
    transition: background 0.3s;
}

.btn-main:hover {
    background: var(--gold);
}

.btn-small {
    background: var(--gold);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(249, 241, 231, 0.8), rgba(249, 241, 231, 0.8)), url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

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

.profile-pic-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
    border: 8px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #888;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.hours-list {
    list-style: none;
    margin-top: 1rem;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: var(--dark-teal);
    color: var(--cream-bg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none; /* In a real project, you'd add a hamburger menu here */
    }
    .hero h1 {
        font-size: 2rem;
    }
}