/* Dishes Page Styles */

/* Header Image */
.ementa-header-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    overflow: hidden;
    margin-bottom: 30px;
}

.ementa-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ementa-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ementa-header-title {
    font-family: "Fjalla One", sans-serif;
    font-size: 64px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ementa-header-container {
        height: 250px;
    }
    
    .ementa-header-title {
        font-size: 42px;
    }
}
