/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&h=1080&fit=crop') center/cover no-repeat;
    filter: brightness(0.45) saturate(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(29, 18, 8, 0.75) 0%,
        rgba(45, 32, 16, 0.45) 50%,
        rgba(29, 18, 8, 0.65) 100%
    );
    z-index: 1;
}

/* Warm overlay tint */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(253, 248, 240, 0.15));
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--gold-light);
    border-radius: 50%;
    animation: particleFloat var(--duration) var(--delay) infinite linear;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0) rotate(0deg);
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 940px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    background: rgba(255, 248, 230, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 28px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--rose-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 248, 230, 0.82);
    max-width: 680px;
    margin: 0 auto 42px;
    line-height: 1.85;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 55px;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 248, 230, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 248, 230, 0.4);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 248, 230, 0.25);
    border-color: rgba(255, 248, 230, 0.6);
}

.hero-buttons .btn-outline {
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, 0.6);
    background: rgba(201, 168, 76, 0.08);
}

.hero-buttons .btn-outline:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 30px 40px;
    background: rgba(255, 248, 230, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

.hero-stat .stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 248, 230, 0.7);
    display: block;
    margin-top: 5px;
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 248, 230, 0.35);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: var(--transition);
}

.scroll-indicator:hover {
    border-color: var(--gold-light);
}

.scroll-indicator span {
    width: 3px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 3px;
    animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 25px;
        padding: 22px 25px;
    }

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

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

    .hero-buttons .btn {
        width: 82%;
        justify-content: center;
    }
}