/* Custom Styles extracted from index.html */
/* Use Inter as the default sans-serif font */
body {
    font-family: 'Inter', sans-serif;
    background-color: #001427;
    color: #f4d58d;
}

/* Custom serif font for the logo */
.font-logo {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

/* Accent colors */
.text-accent {
    color: #bf0603;
}
.bg-accent {
    background-color: #bf0603;
}
.hover\:bg-accent-dark:hover {
    background-color: #8d0801;
}
.border-accent {
    border-color: #bf0603;
}

/* Header transition */
.header-transparent {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}
.header-solid {
    background-color: #001427;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Slider */
.hero-slider .swiper-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.hero-slider .swiper-pagination-bullet {
    background-color: #708d81;
    opacity: 0.7;
    width: 10px;
    height: 10px;
}
.hero-slider .swiper-pagination-bullet-active {
    background-color: #bf0603;
    opacity: 1;
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #ffffff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    opacity: 1;
}

/* Testimonials Slider */
.testimonials-slider .swiper-pagination-bullet {
    background-color: #bf0603;
}

/* Parallax Section */
.parallax {
    background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Aesthetic restaurant interior */
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
    
/* Lightbox Modal */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f4d58d;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

/* Scroll-reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

:root {
--color-bg: #fdf9f3; /* Warm Beige */
--color-text: #004225; /* Dark Green */
--color-text-offset: #3a3a3a; /* Dark Grey for body */
--color-accent: #d24423; /* Terracotta Red */
--color-accent-dark: #a9351a; /* Darker Red */
--color-dark-bg: #004225; /* Dark Green */
--color-light-text: #fdf9f3; /* Warm Beige (for dark bg) */
}

/* Apply new fonts and base colors */
body {
font-family: 'Lora', serif;
background-color: var(--color-bg);
color: var(--color-text-offset);
}

/* Font classes */
.font-heading {
font-family: 'Playfair Display', serif;
color: var(--color-text);
}
.font-body {
font-family: 'Lora', serif;
}
.font-logo {
font-family: 'Playfair Display', serif;
font-weight: 700;
}

/* New color utility classes */
.text-accent { color: var(--color-accent); }
.bg-accent { background-color: var(--color-accent); }
.hover\:bg-accent-dark:hover { background-color: var(--color-accent-dark); }
.border-accent { border-color: var(--color-accent); }

.bg-dark-section { background-color: var(--color-dark-bg); }
.text-light-on-dark { color: var(--color-light-text); }
.text-main-heading { color: var(--color-text); }

/* Header transition */
.header-transparent {
background-color: transparent;
transition: background-color 0.3s ease-in-out;
}
.header-solid {
background-color: var(--color-dark-bg); /* Solid dark green */
transition: background-color 0.3s ease-in-out;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
/* Update header link colors for dark bg */
.header-solid a {
color: var(--color-light-text) !important;
}
.header-solid .text-accent {
color: var(--color-accent) !important;
}

/* Hero Slider */
.hero-slider .swiper-slide {
height: 100vh;
background-size: cover;
background-position: center;
}
.hero-slider .swiper-pagination-bullet {
background-color: #ffffff;
opacity: 0.7;
width: 10px;
height: 10px;
}
.hero-slider .swiper-pagination-bullet-active {
background-color: var(--color-accent);
opacity: 1;
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
color: #ffffff;
opacity: 0.5;
transition: opacity 0.3s ease;
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
opacity: 1;
}

/* Testimonials Slider */
.testimonials-slider {
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 10px 30px -10px rgba(0, 66, 37, 0.1);
}
.testimonials-slider .swiper-pagination-bullet {
background-color: var(--color-accent);
}
.testimonials-slider .swiper-slide {
color: var(--color-text-offset);
}
.testimonials-slider h4 {
color: var(--color-text);
}

/* Parallax Section */
.parallax {
background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* New interior shot */
min-height: 400px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

/* Lightbox Modal */
.lightbox {
display: none; /* Hidden by default */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.9);
justify-content: center;
align-items: center;
}
.lightbox-content {
margin: auto;
display: block;
max-width: 80%;
max-height: 80%;
}
.lightbox-close {
position: absolute;
top: 20px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
cursor: pointer;
}

/* Scroll-reveal animation */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* Custom Form Styles */
.form-input, .form-select {
width: 100%;
padding: 0.75rem;
border: 1px solid #d1c9c0; /* Softer border */
border-radius: 0.5rem; /* 8px */
background-color: #ffffff;
color: var(--color-text-offset);
transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-select:focus {
outline: none;
border-color: var(--color-accent);
box-shadow: 0 0 0 2px rgba(210, 68, 35, 0.2);
}
.form-label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--color-text);
}
/* Specific styling for date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
cursor: pointer;
opacity: 0.6;
}