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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

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

/* Header */
header {
    background: #2c1810;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    height: 80px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #d4a574;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Sections */
section {
    padding: 3rem 0;
}

.intro {
    background: #fff;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1rem auto;
}

/* Highlights */
.highlights .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.highlight-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: #8b4513;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Services */
.services-list .container {
    display: grid;
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item h2 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4a574;
    margin-bottom: 1rem;
}

/* Team */
.team-list .container {
    display: grid;
    gap: 2rem;
}

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-member h2 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.role {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

/* Contact */
.contact-info .container {
    display: grid;
    gap: 2rem;
}

.info-block {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-block h2 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.hours-table {
    width: 100%;
    margin-top: 1rem;
}

.hours-table td {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
    font-weight: bold;
}

/* Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.booking-form input,
.booking-form select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Button */
.btn {
    background: #8b4513;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #654321;
}

/* CTA */
.cta {
    background: #f5f5f5;
    text-align: center;
}

.cta h2 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.service-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem auto;
    display: block;
}

.social-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: bold;
}

.social-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c1810;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
}
