/* ==========================================================================
   RUNDLE LANDSCAPING — HOME PAGE SPECIFIC STYLES
   Hero section, page-specific overrides
   ========================================================================== */

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(180deg, 
            rgba(28,32,32,0.6) 0%, 
            rgba(28,32,32,0.3) 30%, 
            rgba(28,32,32,0.5) 70%, 
            rgba(28,32,32,0.95) 100%
        ),
        url('../assets/images/hero/home-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(92,122,92,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(196,168,130,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(28,32,32,0.8) 0%, transparent 60%);
    z-index: 1;
}

/* Subtle floating particles effect */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: var(--space-2xl);
    margin-top: var(--nav-height);
}

/* Now Booking Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(92,122,92,0.15);
    border: 1px solid rgba(92,122,92,0.3);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--clr-sage-light);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-sage-light);
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: var(--fw-bold);
    color: white;
    line-height: var(--lh-tight);
    margin-bottom: var(--space-xl);
    letter-spacing: var(--ls-tight);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, var(--clr-sage-light) 0%, var(--clr-stone-light) 50%, var(--clr-sage-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: var(--fs-body-lg);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: var(--lh-relaxed);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: var(--clr-sage-light);
}

.stat-label {
    display: block;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.5);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll-indicator span {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.35);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-sage-light);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: var(--space-lg);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }

    .stat-divider {
        height: 30px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
