/* ===================================================
   HOME PAGE INLINE STYLES (Extracted from home_new.php)
   =================================================== */

/* Hero Section */
.modern-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 500px;
}

.modern-hero-section.hero-slider-active {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-hero-content {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(168, 141, 94, 0.95), rgba(229, 151, 86, 0.95));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(168, 141, 94, 0.4);
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    font-family: 'Cormorant Garamond', serif;
}

.hero-description {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.7;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative Pattern Overlay */
.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 141, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 151, 86, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-shine-effect {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 151, 86, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Hero Slider Container */
.hero-swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Hero Slider Navigation */
.swiper-button-prev, .swiper-button-next {
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    color: white !important;
    z-index: 10 !important;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
}

.swiper-button-prev { left: 20px !important; }
.swiper-button-next { right: 20px !important; }

/* Pagination Dots */
.swiper-pagination {
    bottom: 25px !important;
    z-index: 10 !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white !important;
}

.hero-content-overlay {
    position: relative;
    z-index: 5;
    padding: 100px 0 80px;
}

/* Responsive */
@media (max-width: 992px) {
    .modern-hero-section {
        padding: 70px 0 60px;
    }

  
    .modern-hero-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        padding: 50px 0 40px;
        background-attachment: scroll;
    }


    .modern-hero-content {
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .swiper-button-prev, .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }
}
