* {
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    height: 80vh;
}

.header_title {
    width: fit-content;
    padding: 10px;
    color: white;
    border-radius: 10px;
}

.header_text {
    width: 50%;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.header_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
}

.carousel-inner img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.carousel-caption {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    bottom: 20px;
    max-width: 100%;
}

.carousel-caption h1,
.carousel-caption p {
    line-height: 1.2;
}

@media (max-width: 768px) {
    .carousel-caption {
        font-size: 1.2rem;
        line-height: 1.2;
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        font-size: 1rem;
        line-height: 1;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-caption {
        font-size: 0.9rem;
        line-height: 0.9;
        bottom: 5px;
    }
}

/* Categories */
.categories {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.categories_title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.categories_slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
    justify-items: center;
}

.category {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
    width: 250px;
}

.category:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category_img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.category_text {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
}