* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff8f2;
    color: #333;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    margin: 15px 0;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar a {
    margin: 0 15px;
    text-decoration: none;
    color: #f67280;
    font-weight: 600;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* GRID */
.cake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cake-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.price {
    font-weight: bold;
    margin: 10px 0;
}

/* BUTTONS */
.btn, .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.btn {
    background: #f67280;
    color: white;
}

.btn-primary {
    background: white;
    color: #f67280;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 25px;
}
