/* CSS Variables for Easy Customization */
:root {
    --primary-yellow: #FACC15; /* Lemon Yellow */
    --secondary-gold: #D97706; /* Honey Gold */
    --accent-green: #166534;   /* Leafy Green */
    --text-dark: #1F2937;      /* Charcoal */
    --background-light: #FEFDFB; /* Soft Off-White */
    --background-cream: #FDF6E8; /* Warm Cream for Story section */
}

/* Basic Reset & Body Styling */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; line-height: 1.6; background-color: var(--background-light); color: var(--text-dark); }

/* Typography */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--text-dark); line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 1.5rem; position: relative; }
h2::after { content: ''; display: block; width: 60px; height: 3px; background-color: var(--primary-yellow); margin: 10px auto 0; }
.container { max-width: 1100px; margin: auto; padding: 4rem 2rem; }

/* Header & Navigation */
.header { background-color: rgba(254, 253, 251, 0.9); backdrop-filter: blur(5px); padding: 0.75rem 2rem; position: sticky; top: 0; width: 100%; z-index: 100; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo-link { display: flex; align-items: center; }
.logo-img { max-height: 55px; width: auto; }
.nav-links a { color: var(--text-dark); text-decoration: none; margin-left: 1.5rem; font-weight: 700; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--secondary-gold); }

/* Hero Section */
.hero { min-height: 90vh; background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images_webp/BerriesInhand.webp'); background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; padding: 2rem; }
.hero .logo-img-display { width: 70%; max-width: 400px; height: auto; margin-bottom: 1.5rem; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4)); }
.hero h1 { font-size: 4rem; color: white; margin-bottom: 1rem; }
#hero-subtitle { 
    font-size: 1.25rem; 
    max-width: 600px; 
    margin-bottom: 2rem; 
    color: white;
}
#hero-subtitle p {
    margin: 0;
}

.cta-button { display: inline-block; background-color: var(--primary-yellow); color: var(--text-dark); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: transform 0.3s ease, background-color 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.cta-button:hover { transform: translateY(-3px); background-color: #FFD93D; }

/* Menu Section */
#menu { 
    background-color: var(--background-cream);
    padding: 4rem 2rem;
}
#menu .container {
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border: 1px solid #eaddc7;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.menu-grid {
    column-width: 300px;
    column-gap: 2.5rem;
    margin-top: 2rem;
}
.menu-category {
    break-inside: avoid;
    padding-bottom: 2rem;
}
.menu-category h3 { font-size: 1.8rem; color: var(--secondary-gold); margin-bottom: 1rem; }
.menu-item { margin-bottom: 1rem; }
.menu-item strong { display: block; font-size: 1.1rem; }
.menu-item-description { 
    font-size: 0.95rem; 
    color: #555; 
}
.menu-item-description p {
    margin: 0;
}

.coming-soon-box { 
    width: 100%; 
    background-color: var(--background-cream); 
    border-left: 5px solid var(--primary-yellow); 
    padding: 1.5rem; 
    text-align: center; 
    margin-top: 3rem;
}
.coming-soon-box h3 { color: var(--text-dark); }
#coming-soon-text p {
    margin: 0;
}

/* Story Section */
#story { background-color: var(--background-cream); }
.story-content { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.story-text { 
    flex: 1; 
    min-width: 300px; 
    text-align: left; 
    max-width: 40em;
    margin: 0 auto;
}
.story-text #story-p1 {
    margin-bottom: 1.5em;
}
.story-image { flex: 1; min-width: 300px; }
.story-image img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Gallery Section */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gallery-image { width: 100%; height: 350px; object-fit: cover; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-image:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* Find Us Section */
#find-us { text-align: center; }
.event-card { background-color: var(--background-cream); border-left: 5px solid var(--primary-yellow); padding: 1.5rem; margin-bottom: 1.5rem; text-align: left; border-radius: 0 8px 8px 0; max-width: 700px; margin-left: auto; margin-right: auto; }
.event-card h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.event-card p { margin: 0.25rem 0; font-size: 1.1rem; }
.event-card strong { color: var(--secondary-gold); }
.event-card a { color: var(--accent-green); font-weight: bold; text-decoration: none; }
.event-card a:hover { text-decoration: underline; }
.event-details { margin-top: 0.75rem !important; color: #333; }
.no-events { text-align: center; font-size: 1.1rem; }

/* Footer */
.footer { background-color: var(--text-dark); color: var(--background-light); text-align: center; padding: 3rem 1rem; }
.footer .logo-img-display { display: block; max-width: 180px; height: auto; margin: 0 auto 1.5rem auto; }
.footer p { margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    .header { flex-direction: column; padding: 1rem; }
    .nav-links { margin-top: 1rem; }
    .nav-links a { margin: 0 0.75rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero .logo-img-display { max-width: 350px; }
    h2 { font-size: 2rem; }
    .container, #menu { padding: 3rem 1rem; }
    .story-content { flex-direction: column; }
    .menu-grid {
        column-width: auto;
        column-count: 1;
    }
}