/* ============================================
   The Cricketers Inn — Cosy Village Pub Styles
   A warm, inviting design inspired by 
   crackling fires, oak beams & good company
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- Custom Properties --- */
:root {
    --hearth-red: #7a2e2e;
    --deep-burgundy: #5c1a1a;
    --warm-amber: #d4a24e;
    --golden-glow: #e8c36a;
    --dark-oak: #2b1d12;
    --medium-oak: #4a3425;
    --light-oak: #6b5240;
    --creamy-white: #faf6f0;
    --warm-cream: #f3ece0;
    --parchment: #ede3d0;
    --text-dark: #2b1d12;
    --text-body: #4a3a2e;
    --text-muted: #7a6b5e;
    --copper: #b87333;
    --firelight: #f5deb3;
    --shadow-warm: rgba(43, 29, 18, 0.12);
    --shadow-deep: rgba(43, 29, 18, 0.25);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--creamy-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a {
    color: var(--hearth-red);
    transition: color 0.3s ease;
}
a:hover { color: var(--warm-amber); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--dark-oak);
    line-height: 1.3;
}

/* --- Decorative Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 12px auto 0;
    max-width: 260px;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--warm-amber), transparent);
}
.divider-icon {
    color: var(--warm-amber);
    font-size: 1.1em;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background-color: var(--creamy-white);
    color: var(--dark-oak);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(43, 29, 18, 0.1);
    border-bottom: 1px solid var(--warm-cream);
}

.header-top {
    background: linear-gradient(135deg, var(--deep-burgundy), var(--hearth-red));
    padding: 8px 0;
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(212, 162, 78, 0.3);
}
.header-top p { margin: 0; color: var(--parchment); }
.header-top a { color: var(--golden-glow); text-decoration: none; }
.header-top a:hover { color: #fff; }

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    max-width: 155px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.03); }

nav ul { list-style: none; display: flex; gap: 6px; }

nav a {
    color: var(--dark-oak);
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.95em;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}
nav a:hover {
    color: var(--hearth-red);
    background: rgba(122, 46, 46, 0.06);
}
nav a.active {
    color: var(--hearth-red);
    background: rgba(122, 46, 46, 0.08);
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--hearth-red);
    transition: width 0.3s ease;
    border-radius: 1px;
}
nav a:hover::after, nav a.active::after { width: 60%; }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--dark-oak);
    color: var(--dark-oak);
    font-size: 1.3em;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
    background: var(--dark-oak);
    color: var(--creamy-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg,
            rgba(43, 29, 18, 0.78) 0%,
            rgba(92, 26, 26, 0.55) 50%,
            rgba(43, 29, 18, 0.82) 100%),
        url('/images/banner-photo.jpg') center/cover;
    color: var(--creamy-white);
    overflow: hidden;
}

/* --- Hero Slideshow --- */
.hero-slideshow {
    background: var(--dark-oak);
    min-height: 650px;
}
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(43, 29, 18, 0.75) 0%,
        rgba(92, 26, 26, 0.50) 50%,
        rgba(43, 29, 18, 0.78) 100%);
}
.hero-slideshow .hero-content {
    position: relative;
    z-index: 2;
}
.hero-slideshow .hero-slide-text {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
}
.hero-slideshow .hero-slide-text.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}
.hero-slide-btns {
    position: relative;
    z-index: 3;
    margin-top: 10px;
}

/* Slide Dots */
.hero-slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.hero-dot:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.3);
}
.hero-dot.active {
    background: var(--golden-glow);
    border-color: var(--golden-glow);
    transform: scale(1.15);
}

/* Slide Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(43, 29, 18, 0.4);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(4px);
}
.hero-arrow:hover {
    background: rgba(43, 29, 18, 0.7);
    color: #fff;
    border-color: rgba(212, 162, 78, 0.4);
}
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* Slide progress bar */
.hero-slideshow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-amber), var(--golden-glow));
    z-index: 5;
    animation: slideProgress 6s linear infinite;
}
@keyframes slideProgress {
    0% { width: 0; }
    100% { width: 100%; }
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(212, 162, 78, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    max-width: 800px;
    padding: 50px 30px;
    z-index: 2;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 3px 8px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}
.hero .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5em;
    font-style: italic;
    color: var(--golden-glow);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.hero p {
    font-family: 'Lora', serif;
    font-size: 1.15em;
    margin-bottom: 30px;
    color: var(--parchment);
    line-height: 1.8;
}
.hero-small { min-height: 350px; }

/* ============================================
   IMAGE GALLERY & SHOWCASES
   ============================================ */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.food-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-warm);
    aspect-ratio: 4 / 3;
}
.food-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.food-gallery-item:hover img {
    transform: scale(1.05);
}
.food-gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(transparent, rgba(43, 29, 18, 0.85));
    color: var(--creamy-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.05em;
}

.image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}
.image-text-block.reverse {
    direction: rtl;
}
.image-text-block.reverse > * {
    direction: ltr;
}
.image-text-block img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-warm);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.image-text-block .text-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--hearth-red);
    font-size: 1.5em;
    margin-bottom: 12px;
}
.image-text-block .text-content p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1.02em;
}

.menu-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.menu-photo-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px var(--shadow-warm);
    border: 3px solid var(--warm-cream);
}
.menu-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.section-image {
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-warm);
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Lora', serif;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.35s ease;
    cursor: pointer;
    border: 2px solid var(--warm-amber);
    background: var(--warm-amber);
    color: var(--dark-oak);
    letter-spacing: 0.5px;
}
.btn:hover {
    background: var(--golden-glow);
    border-color: var(--golden-glow);
    color: var(--dark-oak);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 162, 78, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--creamy-white);
    border-color: var(--creamy-white);
    margin-left: 15px;
}
.btn-secondary:hover {
    background: var(--creamy-white);
    color: var(--dark-oak);
    border-color: var(--creamy-white);
}
.btn-outline {
    background: transparent;
    color: var(--hearth-red);
    border-color: var(--hearth-red);
}
.btn-outline:hover {
    background: var(--hearth-red);
    color: #fff;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 90px 0; }
.section-alt { background-color: var(--warm-cream); }
.section-dark {
    background: linear-gradient(135deg, var(--dark-oak), var(--medium-oak));
    color: var(--creamy-white);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: var(--dark-oak);
    margin-bottom: 8px;
    font-weight: 700;
}
.section-dark .section-title { color: var(--golden-glow); }

.section-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25em;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-style: italic;
    letter-spacing: 0.5px;
}
.section-dark .section-subtitle { color: var(--parchment); }

/* ============================================
   FEATURE / INFO CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.feature-card {
    background: #fff;
    padding: 38px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-warm);
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(212, 162, 78, 0.12);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hearth-red), var(--warm-amber), var(--hearth-red));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px var(--shadow-warm);
}
.feature-card:hover::before { opacity: 1; }

.feature-card .icon {
    font-size: 2.6em;
    margin-bottom: 16px;
    display: inline-block;
}
.card-image {
    margin: -38px -28px 20px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.feature-card:hover .card-image img {
    transform: scale(1.05);
}
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--hearth-red);
    margin-bottom: 12px;
    font-size: 1.3em;
}
.feature-card p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95em;
}

/* ============================================
   MENU ITEMS
   ============================================ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.menu-category {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-warm);
    border: 1px solid rgba(212, 162, 78, 0.1);
}
.menu-category h3 {
    font-family: 'Playfair Display', serif;
    color: var(--hearth-red);
    font-size: 1.65em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--warm-amber);
}

.menu-item {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 162, 78, 0.18);
}
.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.menu-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-oak);
    font-size: 1.08em;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}
.menu-item .price {
    font-family: 'Lora', serif;
    color: var(--hearth-red);
    font-weight: 600;
    font-size: 1.05em;
    white-space: nowrap;
}
.menu-item p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-muted);
    font-size: 1.05em;
    font-style: italic;
    line-height: 1.6;
}
.local-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--hearth-red), #8b3a3a);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7em;
    font-family: 'Lora', serif;
    font-style: normal;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* Sunday Roast highlight */
.menu-category-highlight {
    background: linear-gradient(135deg, var(--dark-oak), var(--medium-oak));
    color: var(--creamy-white);
    border: none;
}
.menu-category-highlight h3 {
    color: var(--golden-glow);
    border-bottom-color: var(--warm-amber);
}
.menu-category-highlight .menu-item { border-bottom-color: rgba(255,255,255,0.15); }
.menu-category-highlight .menu-item h4 { color: var(--creamy-white); }
.menu-category-highlight .menu-item .price { color: var(--golden-glow); }
.menu-category-highlight .menu-item p { color: var(--parchment); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
    max-width: 750px;
    margin: 0 auto;
    padding: 45px 50px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-warm);
    border: 1px solid rgba(212, 162, 78, 0.12);
    position: relative;
}
.testimonials-slider::before {
    content: '\201C';
    position: absolute;
    top: 10px; left: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 5em;
    color: rgba(212, 162, 78, 0.2);
    line-height: 1;
}

.testimonial { text-align: center; display: none; }
.testimonial.active {
    display: block;
    animation: fadeInTest 0.6s ease;
}
@keyframes fadeInTest {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.testimonial p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3em;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 18px;
    line-height: 1.8;
}
.testimonial-author {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--hearth-red);
    font-size: 0.95em;
}

.testimonial-dots { text-align: center; margin-top: 22px; }
.dot {
    height: 10px; width: 10px;
    background-color: var(--parchment);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--warm-amber);
}
.dot.active, .dot:hover {
    background-color: var(--warm-amber);
    transform: scale(1.2);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-warm);
    border: 1px solid rgba(212, 162, 78, 0.1);
}
.faq-question {
    background: linear-gradient(135deg, var(--dark-oak), var(--medium-oak));
    color: var(--parchment);
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: linear-gradient(135deg, var(--medium-oak), var(--light-oak));
}
.faq-question::after {
    content: '+';
    font-size: 1.4em;
    color: var(--warm-amber);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p {
    padding: 20px 24px;
    color: var(--text-body);
    line-height: 1.8;
}
.faq-answer a { color: var(--hearth-red); }

/* ============================================
   BOOKING FORM (OpenTable)
   ============================================ */
.booking-form {
    max-width: 880px;
    margin: 0 auto 10px;
    padding: 30px 36px 24px;
    background: linear-gradient(145deg, #fff 0%, var(--creamy-white) 100%);
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(43, 29, 18, 0.12), 0 1px 4px rgba(43, 29, 18, 0.06);
    border: 1px solid rgba(212, 162, 78, 0.25);
    position: relative;
    overflow: hidden;
    text-align: left;
}
.booking-form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}
.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.booking-field label {
    font-family: 'Playfair Display', serif;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--dark-oak);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.booking-field input,
.booking-field select {
    padding: 12px 14px;
    border: 1px solid rgba(212, 162, 78, 0.35);
    border-radius: 10px;
    font-family: 'Lora', serif;
    font-size: 0.95em;
    color: var(--dark-oak);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.booking-field select {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232b1d12' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
    padding-right: 36px;
}
.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--warm-amber);
    box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
}
.booking-field-btn {
    flex: 0 0 auto;
}
.booking-btn {
    padding: 12px 32px !important;
    font-size: 1em !important;
    border-radius: 10px !important;
    white-space: nowrap;
    letter-spacing: 0.03em;
}
.booking-powered {
    text-align: center;
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 0.8em;
    color: var(--text-muted);
    opacity: 0.7;
}
@media (max-width: 768px) {
    .booking-form {
        padding: 24px 20px 20px;
        text-align: center;
    }
    .booking-form-row {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .booking-field {
        text-align: left;
    }
    .booking-field label {
        text-align: center;
    }
    .booking-field input,
    .booking-field select {
        width: 100%;
    }
    .booking-field-btn {
        margin-top: 4px;
    }
    .booking-btn {
        width: 100%;
    }
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: var(--dark-oak);
    font-weight: 600;
    font-size: 0.95em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--parchment);
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Lora', serif;
    color: var(--text-body);
    background: #fff;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--warm-amber);
    box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* ============================================
   LOCATION & MAP
   ============================================ */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.location-info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-warm);
    border: 1px solid rgba(212, 162, 78, 0.1);
}
.info-item { margin-bottom: 28px; }
.info-item:last-child { margin-bottom: 0; }
.info-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--hearth-red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15em;
}
.info-item p { color: var(--text-body); line-height: 1.8; }
.info-item a { color: var(--hearth-red); text-decoration: none; }
.info-item a:hover { color: var(--warm-amber); }

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-warm);
    height: 480px;
    border: 3px solid var(--parchment);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--hearth-red), var(--deep-burgundy));
    color: var(--creamy-white);
    padding: 65px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 162, 78, 0.08), transparent 70%);
    pointer-events: none;
}
.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--golden-glow);
    margin-bottom: 12px;
    font-size: 2em;
    position: relative;
}
.newsletter-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15em;
    margin-bottom: 25px;
    color: var(--parchment);
    position: relative;
}
.newsletter-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    position: relative;
    flex-wrap: wrap;
}
.newsletter-form input[type="text"] {
    flex: 0 1 160px;
    min-width: 120px;
}
.newsletter-form input[type="email"] {
    flex: 1 1 200px;
    min-width: 160px;
}
.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(212, 162, 78, 0.3);
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Lora', serif;
    background: rgba(255,255,255,0.1);
    color: #fff;
    backdrop-filter: blur(5px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--warm-amber);
    background: rgba(255,255,255,0.15);
}
.newsletter-form button {
    padding: 15px 30px;
    background: var(--warm-amber);
    color: var(--dark-oak);
    border: 2px solid var(--warm-amber);
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.newsletter-form button:hover {
    background: var(--golden-glow);
    border-color: var(--golden-glow);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark-oak);
    color: var(--parchment);
    padding: 60px 24px 25px;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hearth-red), var(--warm-amber), var(--hearth-red));
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--golden-glow);
    margin-bottom: 18px;
    font-size: 1.2em;
}
.footer-section p {
    line-height: 1.8;
    color: var(--parchment);
    font-size: 0.95em;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section a {
    color: var(--parchment);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95em;
}
.footer-section a:hover {
    color: var(--golden-glow);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    font-size: 1.3em;
    margin-top: 15px;
}
.social-links a {
    color: var(--parchment);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 162, 78, 0.3);
}
.social-links a:hover {
    color: var(--golden-glow);
    border-color: var(--golden-glow);
    background: rgba(212, 162, 78, 0.1);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 162, 78, 0.2);
    color: var(--text-muted);
    font-size: 0.9em;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.prose-block {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 6px 25px var(--shadow-warm);
    border: 1px solid rgba(212, 162, 78, 0.08);
    position: relative;
}
.prose-block::before {
    content: '';
    position: absolute;
    top: 0; left: 30px; right: 30px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--warm-amber), transparent);
    border-radius: 2px;
}
.prose-block p {
    font-size: 1.1em;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 20px;
}
.prose-block p:last-child { margin-bottom: 0; }

.highlight-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--parchment), var(--warm-cream));
    border-radius: 12px;
    border-left: 5px solid var(--warm-amber);
    box-shadow: 0 3px 12px var(--shadow-warm);
}
.highlight-box h3 { color: var(--hearth-red); margin-bottom: 12px; }
.highlight-box p { line-height: 1.8; }

/* ============================================
   WARM AMBIENCE PANELS
   ============================================ */
.warm-panel {
    background: linear-gradient(135deg, var(--dark-oak), var(--medium-oak));
    color: var(--creamy-white);
    padding: 50px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.warm-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(212, 162, 78, 0.12), transparent 65%);
    pointer-events: none;
}
.warm-panel h2 {
    color: var(--golden-glow);
    margin-bottom: 20px;
    position: relative;
}
.warm-panel p {
    color: var(--parchment);
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}
.warm-panel .btn { position: relative; }

/* ============================================
   FORM CONTAINER
   ============================================ */
.form-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 6px 25px var(--shadow-warm);
    border: 1px solid rgba(212, 162, 78, 0.08);
    box-sizing: border-box;
}
.form-container h2 {
    color: var(--hearth-red);
    text-align: center;
    margin-bottom: 10px;
}
.form-container .subtitle {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 35px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1em;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1em;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

/* ============================================
   BOOKING INFO
   ============================================ */
.booking-info {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 25px var(--shadow-warm);
    border: 1px solid rgba(212, 162, 78, 0.08);
}
.booking-info h2 { color: var(--hearth-red); margin-bottom: 18px; }
.booking-info p { font-size: 1.05em; line-height: 1.8; color: var(--text-body); }
.booking-info ul {
    list-style: none;
    padding: 15px 0;
    font-size: 1.05em;
    line-height: 2.2;
}
.booking-info ul li::before {
    content: '~';
    color: var(--warm-amber);
    font-weight: bold;
    margin-right: 10px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    box-shadow: 0 4px 15px var(--shadow-warm);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .header-main { flex-wrap: wrap; }
    nav { display: none; width: 100%; order: 3; }
    nav.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    nav ul { flex-direction: column; gap: 0; padding: 15px 0; }
    nav ul li { border-bottom: 1px solid rgba(212, 162, 78, 0.15); }
    nav a { display: block; padding: 14px 0; border-radius: 0; }
    .mobile-menu-toggle { display: block; }
    .hero h1 { font-size: 2.6em; }
    .hero-arrow { width: 40px; height: 40px; font-size: 1em; }
    .hero-arrow-prev { left: 12px; }
    .hero-arrow-next { right: 12px; }
    .location-content { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .menu-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .prose-block, .form-container, .warm-panel { padding: 35px 25px; }
    .image-text-block { grid-template-columns: 1fr; gap: 24px; }
    .image-text-block.reverse { direction: ltr; }
    .menu-photos { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero { min-height: 450px; }
    .hero-slideshow { min-height: 500px; }
    .hero-small { min-height: 280px; }
    .hero h1 { font-size: 2em; }
    .hero .tagline { font-size: 1.15em; }
    .hero-arrow { width: 36px; height: 36px; font-size: 0.9em; }
    .hero-arrow-prev { left: 8px; }
    .hero-arrow-next { right: 8px; }
    .hero-slide-dots { bottom: 20px; gap: 10px; }
    .hero-dot { width: 10px; height: 10px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2em; }
    .features-grid { grid-template-columns: 1fr; }
    .btn { padding: 12px 28px; font-size: 0.95em; }
    .btn-secondary { margin-left: 0; margin-top: 12px; }
    .hero-content .btn-secondary {
        display: block;
        margin: 12px auto 0;
        width: fit-content;
    }
    .testimonials-slider { padding: 35px 25px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .form-container { padding: 24px 16px; }
}

/* ---- Lightbox ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hearth-red, #7a2e2e);
    color: white;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.lightbox-close:hover {
    background: var(--warm-amber, #d4a24e);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(43, 29, 18, 0.97);
    color: var(--creamy-white);
    padding: 14px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    display: none;
}
.cookie-banner.show {
    display: block;
    animation: slideUp 0.35s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.cookie-banner-inner p {
    flex: 1;
    font-family: 'Lora', serif;
    font-size: 0.85em;
    line-height: 1.5;
    margin: 0;
    color: rgba(250, 246, 240, 0.9);
}
.cookie-banner-inner p + p {
    display: none;
}
.cookie-banner-inner a {
    color: var(--golden-glow);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-inner a:hover {
    color: #fff;
}
.cookie-btn-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
}
.cookie-btn-accept,
.cookie-btn-decline {
    padding: 7px 18px;
    border-radius: 20px;
    font-family: 'Lora', serif;
    font-size: 0.8em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.cookie-btn-accept {
    background: var(--warm-amber);
    color: var(--dark-oak);
    border: none;
}
.cookie-btn-accept:hover {
    background: var(--golden-glow);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 162, 78, 0.4);
}
.cookie-btn-decline {
    background: transparent;
    color: rgba(250, 246, 240, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.cookie-btn-decline:hover {
    color: var(--creamy-white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

/* Footer policy links */
.footer-bottom a {
    color: var(--golden-glow);
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Policy page styles */
.prose-block h2 {
    font-size: 1.4em;
    margin-top: 35px;
    margin-bottom: 12px;
    color: var(--hearth-red);
}
.prose-block h3 {
    font-size: 1.15em;
    margin-top: 25px;
    margin-bottom: 8px;
    color: var(--dark-oak);
}
.prose-block ul {
    margin: 10px 0 20px 20px;
    line-height: 1.9;
}
.prose-block ul li {
    margin-bottom: 6px;
}
.prose-block table {
    font-size: 0.92em;
}
.prose-block code {
    background: var(--warm-cream);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cookie-banner-inner p {
        font-size: 0.8em;
    }
    .cookie-btn-group {
        justify-content: center;
        width: 100%;
    }
}
