/**
 * ============================================================================
 * ULTRA-PREMIUM HERO SECTION - ADVANCED DESIGN SYSTEM
 * ============================================================================
 *
 * Features:
 * - 3D text effects with layered shadows
 * - Animated gradient overlays
 * - Parallax background effects
 * - Premium button designs with microinteractions
 * - Glassmorphism effects
 * - Advanced animations and transitions
 * - Fully responsive for all devices
 *
 * Design Level: 85%+ Premium
 * Generated: 2025-11-15
 * ============================================================================
 */

/* ==========================================================================
   HERO SECTION - BASE STYLING
   ========================================================================== */

#hero,
.lp_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

/* Force Elementor slideshow to work */
#hero .elementor-background-slideshow,
.lp_hero .elementor-background-slideshow {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
}

#hero .elementor-background-slideshow__slide,
.lp_hero .elementor-background-slideshow__slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0 !important;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out !important;
}

#hero .elementor-background-slideshow__slide.swiper-slide-active,
.lp_hero .elementor-background-slideshow__slide.swiper-slide-active {
    opacity: 1 !important;
    animation: slideInFromRight 1s ease-out forwards !important;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* NO OVERLAY - Crystal clear background images */
#hero .elementor-background-overlay,
.lp_hero .elementor-background-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* REMOVED - No overlay animation needed
@keyframes overlayPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.65; }
}
*/

/* REMOVED - No shine effect overlay for crystal clear images
#hero::before,
.lp_hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(212, 165, 116, 0.15) 0%,
        transparent 60%
    );
    animation: heroGlow 10s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(10%, 10%) scale(1.2);
        opacity: 0.8;
    }
}
*/

/* Content wrapper with higher z-index */
#hero .elementor-container,
.lp_hero .elementor-container {
    position: relative;
    z-index: 3;
}

/* ==========================================================================
   HERO HEADING - Ultra-Premium 3D Text
   ========================================================================== */

#hero h1.elementor-heading-title,
.lp_hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -2px;

    /* 3D text shadow effect */
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.2),
        0 2px 0 rgba(0, 0, 0, 0.18),
        0 3px 0 rgba(0, 0, 0, 0.16),
        0 4px 0 rgba(0, 0, 0, 0.14),
        0 5px 0 rgba(0, 0, 0, 0.12),
        0 6px 1px rgba(0, 0, 0, 0.10),
        0 8px 12px rgba(0, 0, 0, 0.4),
        0 16px 32px rgba(0, 0, 0, 0.3);

    animation: heroTitleFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes heroTitleFloat {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(-8px) translateZ(20px); }
}

/* Hero span (word "Home" etc.) - Gold-brown with glow - EXTRA BOLD */
#hero h1 span,
.lp_hero h1 span,
.elementor-heading-title span {
    color: #d4a574 !important;
    background: linear-gradient(135deg, #d4a574 0%, #f4d6a8 50%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: goldShimmer 3s ease-in-out infinite;
    display: inline-block;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.6));
    font-weight: 900 !important;
    -webkit-text-stroke: 1px rgba(212, 165, 116, 0.3);
    text-stroke: 1px rgba(212, 165, 116, 0.3);
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==========================================================================
   HERO SUBHEADING - Elegant Description
   ========================================================================== */

#hero .elementor-element-ecc4edf p,
#hero p.elementor-heading-title,
.lp_hero p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    animation: heroSubtitleFade 2s ease-in-out;
}

@keyframes heroSubtitleFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.95; transform: translateY(0); }
}

/* ==========================================================================
   HERO BUTTONS - Clean Modern Design
   ========================================================================== */

#hero .elementor-button,
.lp_hero .elementor-button {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 18px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Quote button - Clean brown with white text */
#hero .elementor-element-cf5b0fd .elementor-button {
    background: rgba(62, 39, 35, 0.9) !important;
    color: #ffffff !important;
    border-color: rgba(212, 165, 116, 0.5) !important;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.4) !important;
}

/* Phone button - Clean gold with dark text */
#hero .phone-number .elementor-button,
#hero .elementor-element-3620d14 .elementor-button {
    background: rgba(212, 165, 116, 0.95) !important;
    color: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.5) !important;
}

/* Button hover effects - Simple and clean */
#hero .elementor-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

#hero .elementor-element-cf5b0fd .elementor-button:hover {
    background: rgba(109, 76, 65, 0.95) !important;
    border-color: rgba(212, 165, 116, 0.8) !important;
}

#hero .phone-number .elementor-button:hover,
#hero .elementor-element-3620d14 .elementor-button:hover {
    background: rgba(244, 214, 168, 1) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}

/* Button icon styling - Simple */
#hero .elementor-button-icon svg {
    transition: transform 0.3s ease !important;
    width: 18px !important;
    height: 18px !important;
}

#hero .elementor-button:hover .elementor-button-icon svg {
    transform: scale(1.1) !important;
}

/* ==========================================================================
   GLASSMORPHISM CARD EFFECT (optional enhancement)
   ========================================================================== */

#hero .elementor-widget-wrap {
    position: relative;
}

/* NO BLUR - Clean content area with dark background for text readability */
#hero .elementor-element-d90f7d9 .elementor-widget-wrap {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 20px;
    padding: 60px 40px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    #hero h1.elementor-heading-title,
    .lp_hero h1 {
        font-size: clamp(40px, 7vw, 72px);
    }

    #hero .elementor-element-d90f7d9 .elementor-widget-wrap {
        padding: 40px 30px;
    }

    #hero .elementor-button {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    #hero,
    .lp_hero {
        min-height: 90vh;
    }

    #hero h1.elementor-heading-title,
    .lp_hero h1 {
        font-size: clamp(32px, 10vw, 48px);
        letter-spacing: -1px;
    }

    #hero .elementor-element-ecc4edf p,
    #hero p.elementor-heading-title {
        font-size: clamp(16px, 4vw, 22px);
    }

    #hero .elementor-element-d90f7d9 .elementor-widget-wrap {
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 30px 20px;
        border-radius: 20px;
    }

    #hero .elementor-button {
        padding: 14px 28px;
        font-size: 14px;
        gap: 8px;
    }

    #hero .elementor-button:hover {
        transform: translateY(-4px) scale(1.03);
    }

    /* Stack buttons vertically on mobile */
    #hero .elementor-element-ddca5aa .elementor-container {
        flex-direction: column;
        gap: 15px;
    }

    #hero .elementor-element-cf5b0fd,
    #hero .elementor-element-3620d14 {
        width: 100% !important;
    }

    #hero .elementor-button {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   ACCESSIBILITY - Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    #hero h1.elementor-heading-title,
    #hero .elementor-button,
    #hero span,
    #hero::before,
    .elementor-background-overlay {
        animation: none !important;
        transition: none !important;
    }

    #hero .elementor-button:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    #hero::before,
    .elementor-background-overlay {
        display: none !important;
    }

    #hero h1,
    #hero p,
    #hero .elementor-button {
        text-shadow: none !important;
        box-shadow: none !important;
    }
}

/* ==========================================================================
   END OF HERO SECTION STYLESHEET
   ========================================================================== */
