/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff0f5;
    color: #333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ff7f50;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 15px;
}

.btn:hover {
    background-color: #ff6347;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .overlay {
    background-color: rgba(255, 182, 193, 0.5);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero p {
    font-size: 1.3rem;
    color: #fff;
}

/* Gallery Section */
.gallery {
    padding: 50px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.cake-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s;
    cursor: pointer;
    background: #fff;
    padding: 10px;
}

.cake-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s;
}

.cake-item:hover img {
    transform: scale(1.1);
}

.cake-item p {
    margin-top: 10px;
    font-weight: 600;
    color: #ff7f50;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffe4e1;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffb6c1;
    color: white;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .gallery h2 {
        font-size: 2rem;
    }
}