* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #fdfaf5;
    color: #4a3427;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header & Nav */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #2c1e16;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo { 
    font-size: 1.6rem; 
    font-weight: bold; 
    color: #d4a373; 
    letter-spacing: 1px;
}

.header-right { display: flex; align-items: center; gap: 30px; }

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 20px;
}

.phone-number { font-size: 0.9rem; font-weight: 500; }
.phone-number i { color: #d4a373; margin-right: 5px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a { color: #d4a373; transition: 0.3s; font-size: 1.1rem; }
.social-icons a:hover { color: white; transform: translateY(-3px); }

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: bold; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #d4a373; }

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 10px; }
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    background: #d4a373;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}
.btn:hover { background: #bc8a5f; }

/* Menu Sections */
.menu-section { padding: 80px 10%; text-align: center; }
.menu-section h2 { font-size: 2.5rem; margin-bottom: 40px; }
.bakery-bg { background-color: #f7f0e4; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Menu Item Styling */
.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
}
.menu-item:hover { transform: translateY(-10px); }

.img-placeholder {
    width: 100%;
    height: 220px;
    background-color: #eee;
}
.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description { 
    padding: 20px 20px 5px; 
    font-size: 1.15rem; 
    color: #2c1e16; 
    font-weight: 600;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item span {
    display: block;
    font-weight: bold;
    color: #d4a373;
    font-size: 1.3rem;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .navbar { flex-direction: column; gap: 15px; }
    .header-right { flex-direction: column; gap: 15px; }
    .contact-box { border: none; padding: 0; }
    .hero-content h1 { font-size: 2.5rem; }
}