body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* HERO */
.hero {
    background: url('https://source.unsplash.com/1600x800/?cake') no-repeat center/cover;
    height: 100vh;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.5);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn {
    background: pink;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
}

/* SECTIONS */
section {
    padding: 50px;
    text-align: center;
}

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

.card {
    background: #ffe4e1;
    padding: 20px;
}

/* FORM */
form {
    max-width: 400px;
    margin: auto;
}

input, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

button {
    background: #ff69b4;
    border: none;
    padding: 10px;
    color: white;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    padding: 20px;
}