:root {
    --primary: #E3C598; /* Biscuit */
    --secondary: #D13F4B; /* Raspberry */
    --dark: #5C3A21; /* Brown */
    --light: #FFF8F0; /* Cream */
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Pacifico', cursive;
    color: var(--dark);
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--light);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: var(--dark);
    border-radius: 3px;
}

/* Hero Section */
#home {
    height: 60vh;
    background: url('images/bakery-hero.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.btn {
    background: var(--secondary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #b9323d;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 4rem 2rem;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--dark);
}

.section:nth-of-type(even) {
    background-color: #fffaf3;
}

/* Menu Items */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.item {
    background-color: var(--light);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.item h3 {
    font-family: 'Pacifico', cursive;
    color: var(--dark);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #5c3a1e;
}

.item .price {
    font-weight: bold;
    color: var(--secondary);
    display: block;
    margin-top: 0.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Contact Form */
form {
    max-width: 500px;
    margin: 0 auto;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

form button {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #b9323d;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 2rem;
        top: 60px;
        background-color: var(--light);
        padding: 1rem;
        border-radius: 10px;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .menu-items {
        grid-template-columns: 1fr;
    }
    .item img {
        height: 180px;
    }
}
