:root {
    --primary-color: #d4a373; /* Warm crust color */
    --secondary-color: #faedcd; /* Dough color */
    --text-dark: #3e2723;
    --text-light: #fefae0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 70vh;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background-color: rgba(62, 39, 35, 0.7);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    color: var(--text-light);
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    letter-spacing: 2px;
}

.hero-overlay p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Carousel Section */
.products-section {
    padding: 50px 20px;
    text-align: center;
}

.products-section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0 5px;
    color: var(--primary-color);
}

.card p {
    padding: 0 15px 20px;
    font-size: 0.9rem;
}

/* Booking Form */
.booking-section {
    padding: 50px 20px;
    background-color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-section h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"], input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkbox-group label {
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #b0895b;
}

input[type="text"], 
input[type="date"], 
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    resize: vertical; /* Allows the user to stretch the box vertically but not horizontally */
}

/* Optional: Add a little extra space for the textarea */
textarea {
    min-height: 100px;
}
