.hero {
    position: relative;
    width: 100%;
    height: 76vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    background-color: #000;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

@media (max-width: 768px) {
    .hero {
        height: 30vh;
    }
}


.floating-food {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-item {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

.floating-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-item-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-item-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}


/* Advertising Text Styling */
.advertising-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 600px;
    padding: 20px;
}

.advertising-text h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

.contact-btn {
    background: linear-gradient(135deg, rgb(62, 161, 62),rgb(62, 161, 62));
    color: white;
    border: none;
    padding: clamp(12px, 2vw, 18px) clamp(30px, 5vw, 50px);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgb(62, 161, 62);
    background: linear-gradient(135deg, rgb(62, 161, 62), rgb(62, 161, 62));
}

.contact-btn:active {
    transform: translateY(-1px);
}

/* Floating Food Animation */
.floating-food {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
}

.floating-item {
    width: clamp(150px, 20vw, 300px);
    height: clamp(150px, 20vw, 300px);
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .advertising-text {
        width: 85%;
        padding: 15px;
    }

    .advertising-text h2 {
        margin-bottom: 20px;
    }

    .floating-food {
        right: 5%;
        top: 70%;
    }

    .floating-item {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .advertising-text {
        width: 90%;
        padding: 10px;
    }

    .advertising-text h2 {
        margin-bottom: 15px;
    }

    .contact-btn {
        width: 100%;
        max-width: 250px;
    }

    .floating-food {
        right: 50%;
        top: 75%;
        transform: translate(50%, -50%);
    }
}
