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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #5C4033;
    --bg-light: #FFF8F0;
    --bg-white: #FFFFFF;
    --border-color: #E5D5C3;
    --success-color: #228B22;
    --warning-color: #FF6347;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 24, 16, 0.95);
    color: white;
    padding: 20px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background-color: #1a6b1a;
    transform: translateY(-1px);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
    order: 3;
    width: 100%;
    text-align: center;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.intro {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.intro-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.intro-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.services-preview h2,
.services-full h2,
.testimonials h2,
.cta-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex-basis: calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0;
}

.btn-select {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-select:active {
    transform: translateY(0);
}

.reservation-form {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.form-wrapper h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.8;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content,
.values,
.team,
.philosophy {
    padding: 60px 0;
}

.about-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.values h2,
.team h2,
.philosophy h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex-basis: calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
    font-size: 18px;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy {
    background-color: var(--bg-light);
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    margin-bottom: 30px;
}

.philosophy-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.philosophy-content .btn-primary {
    margin-top: 20px;
}

.services-full {
    padding: 60px 0;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.menu-section {
    margin-bottom: 70px;
}

.menu-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.menu-section.special .service-card.featured {
    border: 3px solid var(--accent-color);
}

.menu-note {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.menu-note p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-reservation {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    color: white;
}

.cta-reservation h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-reservation p {
    font-size: 18px;
    margin-bottom: 25px;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-list {
    margin-top: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--primary-color);
}

.time {
    color: var(--text-light);
}

.contact-image-section {
    flex: 1;
    min-width: 300px;
}

.contact-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-text-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-text-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-text-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.directions-section {
    margin-top: 60px;
}

.directions-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.direction-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.direction-card h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.direction-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.reservation-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 8px;
}

.reservation-cta h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.reservation-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.reservation-details {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.reservation-details h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.detail-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 180px;
}

.detail-value {
    color: var(--text-light);
}

.next-steps {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 10px 0 10px 30px;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.location-reminder {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.location-reminder h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.location-reminder p {
    color: var(--text-light);
    line-height: 1.7;
}

.small-text {
    font-size: 14px;
    margin-top: 10px;
}

.legal-page {
    padding: 60px 0;
}

.update-date {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 12px 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.cookies-table tbody tr:hover {
    background-color: var(--bg-light);
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-top: 2px solid var(--border-color);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .ad-disclosure {
        order: 1;
        font-size: 10px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .intro-grid,
    .services-cards,
    .testimonial-grid,
    .values-grid,
    .directions-grid {
        flex-direction: column;
    }

    .service-card {
        flex-basis: 100%;
    }

    .about-layout {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-image {
        height: 400px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }
}
