/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.baked-goods-hero {
    position: relative;
    height: 400px; /* Adjust height as needed */
    background-image: url('https://cdn.erply.com/images/541951/IMG-6285.webp');
    background-size: cover;
    filter: brightness(85%);
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kulits-hero {
    position: relative;
    height: 400px; 
    background-image: url('https://cdn.erply.com/images/541951/IMG-1187-11.jpg');
    background-size: cover;
    filter: brightness(85%);
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.semla-hero{
 position: relative;
    height: 400px; 
    background-image: url('https://cdn.erply.com/images/541951/pohlamoosiga2.webp?width=500&height=500&format=webp');
    background-size: cover;
    filter: brightness(85%);
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



/* Hero Title */
.hero-title {
    font-size: 3.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    background: rgb(114 113 113 / 53%); /* Semi-transparent background for better readability */
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    animation: fadeIn 1.5s ease-in-out;
}



/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .baked-goods-hero {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .baked-goods-hero {
        height: 250px;
    }
}


