.carousel-item {
    height: 600px;
    background-color: rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background-color: rgba(199, 70, 53, 0.8);
    border-radius: 10px;
    padding: 15px;
    bottom: 20px;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-indicators {
    bottom: 0;
}

.gallery-title {
    color: #c74635;
    font-family: "Risque", serif;
    margin-bottom: 30px;
    text-align: center;
}

.gallery-description {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.menu-button {
    background-color: #c74635;
    color: white;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background-color: #a73625;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Media queries for better responsiveness */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 10px;
    }
    
    .carousel-caption h3 {
        font-size: 1.25rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 300px;
    }
}