
.upcoming-badge {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999; 
    background: rgba(212, 175, 55, 0.95); 
    color: #013220; 
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    font-family: 'Poppins', sans-serif;
    pointer-events: none; 
    overflow: hidden;
    animation: pulseVisibility 6s infinite ease-in-out;
}

.badge-content {
    display: flex;          
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.badge-text {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseVisibility {
    0% { opacity: 0; transform: translateX(-50%) scale(0.8); }
    10% { opacity: 1; transform: translateX(-50%) scale(1); }
    80% { opacity: 1; transform: translateX(-50%) scale(1); }
    90% { opacity: 0; transform: translateX(-50%) scale(1.1); }
    100% { opacity: 0; }
}

@media (max-width: 768px) {
    .badge-text { font-size: 0.8rem; }
    .upcoming-badge { width: 90%; text-align: center; top: 10px; }
}


.hero-section {
    position: relative;
    width: 100%;
    height: 90vh; 
    min-height: 500px; 
    overflow: hidden;
    background-color: #000;
}

.carousel-inner, .carousel-item {
    height: 100%;
    width: 100%;
}

.zoom-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden; 
}


.zoom-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    object-position: center;      
    display: block;

}

.carousel-item.active .zoom-wrapper img {
    animation: zoomOutEffect 7s ease-out forwards;
}

@keyframes zoomOutEffect {
    from { transform: scale(1.2); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center; 
    z-index: 10;
    color: #ffffff;
    margin-top: -130px !important;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0px 0px 15px rgba(173, 167, 167, 0.6) !important;
}

.carousel-indicators {
    bottom: 40px !important;
    z-index: 20 !important;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #d4af37 !important;
    border: none !important;
    margin: 0 8px !important;
    opacity: 0.6;
}

.carousel-indicators .active {
    opacity: 1 !important;
    background-color: #fff !important;
    transform: scale(1.4);
}

#heroCarousel .hero-content .hero-btn {
    background-color: #d4af37 !important; 
    color: #013220 !important; 
    border: 2px solid #d4af37 !important;
    padding: 12px 35px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out !important;
    cursor: pointer;
    outline: none !important;
}

#heroCarousel .hero-content .hero-btn:hover {
    background-color: #013220 !important; 
    color: #d4af37 !important; 
    border-color: #d4af37 !important;
    transform: translateY(-5px) scale(1.05); 
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6); 
}

.carousel-item.active .hero-btn {
    animation: fadeInUp 1s ease-out 0.8s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}