/* General Styles */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #e0f0e0; /* Light green background */
    scroll-behavior: smooth; /* Smooth scrolling */
    text-align: center; /* Center all text */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background: #244742; /* Dark green */
    color: #fff;
    text-align: center;
    position: fixed; /* Sticky header */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.sticky {
    background: rgba(36, 71, 66, 0.9); /* Semi-transparent dark green */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Abril Fatface', cursive; /* More visually appealing font */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

header .subtitle {
    margin: 10px 0 0;
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0; /* Larger hero section */
    position: relative;
    margin-top: 80px; /* Offset for sticky header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1; /* Ensure overlay is above the background image */
}

.hero-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative; /* Ensure logo is positioned relative to its container */
    z-index: 2; /* Place logo above the overlay */
    filter: brightness(1.2) contrast(1.2); /* Enhance brightness and contrast */
}

.hero .book-button {
    background: #244742; /* Dark green */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2; /* Ensure button is above the overlay */
}

.hero .container {
    display: flex;
    flex-direction: column; /* stack items vertically */
    align-items: center;     /* center items horizontally */
    gap: 1rem;               /* space between buttons */
  }
  

.hero .book-button:hover {
    background: #1a352f; /* Darker green */
    transform: scale(1.05); /* Button hover effect */
}

/* About Section */
.about {
    background: #b5cbb3; /* Dark green background */
    color: #fff;
    padding: 60px 0;
}

.about h2 {
    font-size: 2.5rem;
    font-family: 'Abril Fatface', cursive;
    margin-bottom: 20px;
}

.about .about-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center; /* Centered text */
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

/* Opening Hours & Pricing Section */
.hours-pricing {
    background: #244742; /* Light green background */
    padding: 60px 0;
    text-align: center;
}

.hours-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Abril Fatface', cursive;
    color: white; /* Changed heading color to white */
}

/* FLEXBOX for Side-by-Side Brochure Layout */
.hours-grid {
    display: flex; /* Flexbox for side-by-side layout */
    justify-content: center;
    align-items: center;
    gap: 30px; /* Space between brochures */
    flex-wrap: wrap; /* Ensures responsiveness */
    margin-top: 20px;
}

.hours-item {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    width: 45%; /* Ensures both items take 45% of the container */
    min-width: 300px; /* Prevents excessive shrinking */
    aspect-ratio: 1.1/1.1;
}

/* Ensures images fit like brochures */
.hours-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FULL DARK OVERLAY for Text Visibility */
.hours-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1; /* Ensure overlay is above the image */
}

/* Text Section Positioned Over Image */
.hours-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
    padding: 20px;
    z-index: 2; /* Ensure text is above the overlay */
}

.hours-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-family: 'Abril Fatface', cursive;
}

.hours-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    font-family: 'Raleway', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin: 0; /* Remove default margins */
}

/* Hover effect */
.hours-item:hover img {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hours-grid {
        flex-direction: column;
        gap: 20px;
    }
    .hours-item {
        width: 100%; /* Full width on mobile */
        min-width: auto; /* Remove fixed min-width */
    }

    .hours-text {
        padding: 15px; /* Reduce padding for mobile */
    }

    .hours-text h3 {
        font-size: 1.5rem; /* Smaller heading on mobile */
    }

    .hours-text p {
        font-size: 1rem; /* Smaller text on mobile */
    }
}
/* Booking Section */
.booking {
    background: #b5cbb3; /* Dark green background */
    color: #fff;
    padding: 60px 0;
    text-align: left; /* Align text to the left */
}



.booking h2 {
    font-size: 2.5rem;
    font-family: 'Abril Fatface', cursive;
    margin-bottom: 20px;
    text-align: left; /* Align the heading to the left */
}

.booking .booking-content,
.booking .availability-content {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    gap: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
}

.booking .booking-text,
.booking .availability-text {
    flex: 1;
    text-align: left; /* Ensure text is aligned to the left */
}

.booking .booking-text p,
.booking .availability-text p {
    font-size: 1.2rem; /* Bigger text */
    margin-bottom: 10px;
}

.booking .booking-image,
.booking .availability-image {
    flex: 1;
}

.booking .booking-image img,
.booking .availability-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.reservation-form {
    background: #e0f0e0; /* Light green background */
    padding: 60px 0;
}

.reservation-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.reservation-form form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reservation-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #244742; /* Dark green text */
}

.reservation-form input[type="text"],
.reservation-form input[type="tel"],
.reservation-form input[type="email"],
.reservation-form input[type="date"],
.reservation-form input[type="number"],
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 15px; /* Larger padding for better appearance */
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.reservation-form select {
    appearance: none; /* Remove default arrow */
    background: url('data:image/svg+xml;utf8,<svg fill="%23244742" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 15px center;
    background-color: #fff;
    background-size: 12px;
    padding-right: 40px; /* Space for custom arrow */
}

.reservation-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.reservation-form button[type="submit"] {
    background: #244742; /* Dark green */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.reservation-form button[type="submit"]:hover {
    background: #1a352f; /* Darker green */
    transform: scale(1.05); /* Button hover effect */
}

/* Success Message */

.success-message h3 {
    font-family: 'Abril Fatface', cursive;
}

.success-message p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.success-message {
    display: none; /* Hidden by default */
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out; /* Fade-in animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Location Section */
.location {
    background: #244742; /* Dark green background */
    color: #fff;
    padding: 60px 0;
}

.location h2 {
    font-size: 2.5rem;
    font-family: 'Abril Fatface', cursive;
    margin-bottom: 20px;
}

.location iframe {
    margin-bottom: 20px;
}

.location .location-text {
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

/* Footer */
footer {
    background: #b5cbb3; /* Light green */
    color: #333;
    padding: 60px 0;
    text-align: center;
}
footer .contact-info h3,
footer .social-links h3 {
    font-family: 'Abril Fatface', cursive;
}

footer .footer-logo {
    width: 200px; /* Larger logo */
    height: auto;
    margin-bottom: 20px;
}

footer .contact-info p,
footer .social-links a,
footer .footer-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

footer .footer-button {
    font-family: 'Raleway', sans-serif;
    font-weight: 600; /* Semibold for button */
}

.footer-button-container {
    display: flex;
    flex-direction: column;  /* Stack the buttons vertically */
    align-items: center;      /* Center them horizontally */
    gap: 1rem;                /* Add space between buttons */
  }

footer .footer-content {
    display: flex;
    justify-content: space-between; /* Space out the left, center, and right sections */
    align-items: center; /* Vertically center all items */
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrapping if needed */
}

/* Contact Info (Left) */
footer .contact-info {
    flex: 1; /* Takes up 1/3 of the space */
    text-align: left; /* Align text to the left */
}

/* Book Table Button (Center) */
.footer-button-container {
    flex: 1; /* Takes up 1/3 of the space */
    display: flex;
    justify-content: center; /* Center the button horizontally */
}

footer .footer-button {
    background: #244742; /* Dark green */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

footer .footer-button:hover {
    background: #1a352f; /* Darker green */
    transform: scale(1.05); /* Button hover effect */
}

/* Follow Us and Social Links (Right) */
footer .social-links {
    flex: 1; /* Takes up 1/3 of the space */
    text-align: right; /* Align text to the right */
}

footer .social-links h3 {
    margin-bottom: 10px;
}

footer .social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end; /* Align icons to the right */
}

footer .social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #244742; /* Dark green on hover */
}

footer .footer-text {
    margin-top: 20px;
}

/* Reservation Form Styles */
.reservation-form {
    background: #e0f0e0; /* Light green background */
    padding: 60px 0;
}

.reservation-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.reservation-form form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reservation-form label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600; /* Semibold for labels */
}

.reservation-form input[type="text"],
.reservation-form input[type="tel"],
.reservation-form input[type="email"],
.reservation-form input[type="date"],
.reservation-form input[type="time"],
.reservation-form input[type="number"],
.reservation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea,
.reservation-form button {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.reservation-form textarea {
    resize: vertical;
}

.reservation-form button[type="submit"] {
    background: #244742; /* Dark green */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.reservation-form button[type="submit"]:hover {
    background: #1a352f; /* Darker green */
    transform: scale(1.05); /* Button hover effect */
}

/* Success Message Styles */
.success-message {
    display: none; /* Hidden by default */
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out; /* Fade-in animation */
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header .subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 0;
    }

    .hero .book-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .about h2, .hours-pricing h2, .booking h2, .reservation-form h2, .location h2 {
        font-size: 2rem;
    }

    .about .about-text, .booking .booking-text p, .booking .availability-text p, .location .location-text {
        font-size: 1rem;
    }

    .hours-item {
        width: 100%;
    }

    .booking .booking-content, .booking .availability-content {
        flex-direction: column;
        gap: 20px;
    }

    .booking .booking-text, .booking .availability-text {
        text-align: center;
    }

    .reservation-form form {
        padding: 15px;
    }

    .reservation-form input[type="text"],
    .reservation-form input[type="tel"],
    .reservation-form input[type="email"],
    .reservation-form input[type="date"],
    .reservation-form input[type="number"],
    .reservation-form select,
    .reservation-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .reservation-form button[type="submit"] {
        font-size: 1rem;
        padding: 10px 20px;
    }

    footer .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    footer .contact-info, footer .social-links {
        text-align: center;
    }

    footer .social-icons {
        justify-content: center;
    }
}

/* Headings - Abril Fatface */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Abril Fatface', cursive;
    font-weight: 400; /* Regular weight */
}

.subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

/* Paragraphs - Raleway Regular */
p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}