/* CSS Custom Properties */
:root {
    /* Forest-inspired color palette */
    --forest-primary: #2d5016;      /* Deep forest green */
    --forest-secondary: #4a7c59;    /* Medium green */
    --forest-accent: #8fbc8f;       /* Sage green */
    --earth-brown: #6b4423;         /* Rich brown */
    --warm-cream: #faf7f0;          /* Warm cream */
    --soft-gold: #d4af37;           /* Golden accent */
    --deep-shadow: #1a2e0f;         /* Dark green shadow */

    /* Gradients */
    --forest-gradient: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-secondary) 50%, var(--forest-accent) 100%);
    --earth-gradient: linear-gradient(45deg, var(--earth-brown) 0%, #8b6539 100%);
    --warm-gradient: linear-gradient(135deg, var(--warm-cream) 0%, #f5f1e8 100%);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: clamp(3rem, 8vw, 6rem);
    --content-padding: clamp(1rem, 4vw, 2rem);

    /* Animation */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 2vw, 16px);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--forest-primary);
    background: var(--warm-gradient);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--forest-primary);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--forest-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--forest-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep-shadow);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(29, 80, 22, 0.7) 0%,
        rgba(107, 68, 35, 0.5) 50%,
        rgba(45, 80, 22, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--warm-cream);
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1.5s var(--ease-smooth);
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.title-main {
    display: block;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.title-accent {
    display: block;
    font-weight: 700;
    background: linear-gradient(135deg, var(--soft-gold) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--forest-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: ratingPulse 2s ease-in-out infinite;
}

@keyframes ratingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stars {
    color: var(--soft-gold);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.rating-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cta-primary {
    background: var(--forest-gradient);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest-primary);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.button-icon {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--warm-cream);
    opacity: 0.8;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--warm-gradient);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(45,80,22,0.03)"><circle cx="25" cy="25" r="2"/><circle cx="75" cy="25" r="2"/><circle cx="50" cy="50" r="2"/><circle cx="25" cy="75" r="2"/><circle cx="75" cy="75" r="2"/></svg>') repeat;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
    transition: all 0.4s var(--ease-smooth);
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 80, 22, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-secondary) 100%);
    color: white;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.05)"><path d="M20 20h60v60H20z" fill="none" stroke="currentColor" stroke-width="0.5"/><circle cx="30" cy="30" r="1"/><circle cx="70" cy="30" r="1"/><circle cx="50" cy="50" r="1.5"/><circle cx="30" cy="70" r="1"/><circle cx="70" cy="70" r="1"/></svg>') repeat;
    pointer-events: none;
}

.reviews .section-title,
.reviews .section-subtitle {
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--soft-gold);
    opacity: 0.7;
}

.review-header {
    margin-bottom: 1.5rem;
}

.reviewer-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.review-stars {
    color: var(--soft-gold);
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    border-left: 3px solid var(--soft-gold);
    padding-left: 1rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--warm-gradient);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hours-table {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
    transition: all 0.3s ease;
}

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

.hours-row:hover {
    background: rgba(45, 80, 22, 0.05);
    padding-left: 1rem;
    margin: 0 -1rem;
    border-radius: 10px;
}

.hours-row.weekend {
    color: var(--earth-brown);
    font-weight: 600;
}

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

.time {
    font-weight: 600;
    color: var(--forest-secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-items {
    space-y: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: var(--forest-primary);
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.08);
    margin-bottom: 1rem;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
    background: linear-gradient(135deg, white 0%, #f8fdf8 100%);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--deep-shadow);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--soft-gold) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--soft-gold);
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(45, 80, 22, 0.8);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: clamp(2rem, 6vw, 4rem);
        --content-padding: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .rating-badge {
        padding: 0.5rem 1rem;
    }

    .contact-item {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .contact-icon {
        font-size: 1.3rem;
    }

    .review-card {
        padding: 1.5rem;
    }
}