/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Typography & Layout */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #f9f9f9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    background-color: #eee;
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    font-family: 'Parisienne', cursive;
}

h2 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    font-family: 'Parisienne', cursive;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 0rem;
}

strong {
    font-weight: bold;
}

a {
    color: #333;
    text-decoration: none;
}

h3, p, a {
    font-family: 'Quicksand', sans-serif;
}

a:hover {
    text-decoration: underline;
}

/* Full-width sections */
header,
.hero,
footer {
    width: 100%;
}

/* Constrained-width sections */
section:not(.hero) {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    box-sizing: border-box;
    text-align: center;
}

section:not(.hero) h2 {
    margin-bottom: 1rem;
}

/* Header */
header {
    background: #f7f4ec;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
}

header .branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .tagline {
    font-size: 0.9rem;
    color: #777;
}

/* Hero Section */
.hero {
    position: relative;
    background: #e0f0f7;
    padding: 0;
}

.hero-content {
    position: relative;
    width: 100%;
}

.hero-content img.hero-image {
    width: 100%;
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
}

.cta {
    display: inline-block;
    background: #333333b1;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    white-space: nowrap; /* Prevent wrapping */
}

/* Map & Opening Hours */
.map-container {
    position: relative;
    width: 100%;
}

.map-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.opening-hours p {
    margin: 0.5rem 0;
}

/* Products Carousel */
.product-carousel {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: max-content;
    margin: 0 auto;
    padding: 0 1rem; /* Add padding to create space at both ends */
}

.product {
    background: #fefefe;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 1rem;
    max-width: 300px;
    text-align: left;
    flex: 0 0 auto;
}

.product h3 {
    margin: 1rem 0 0.5rem;
}

.product .price {
    color: #aaa;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product .description {
    font-size: 0.9rem;
    color: #555;
}

/* Reserve Now Section */
.reserve-now {
    background: #f0f0f0;
}

.contact-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.contact-links li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
}

.contact-links li img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    background: #fff;
}

.testimonial {
    max-width: 600px;
    margin: 1rem auto;
    font-style: italic;
    line-height: 1.4;
    color: #444;
}

/* About Us */
.about-us {
    background: #eaeaea;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.about-image {
    max-width: 200px;
    border-radius: 50%;
}

.about-text {
    max-width: 400px;
    text-align: left;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

footer p {
    margin: 0.5rem 0;
}