/* ===========================================
   TRUBAČI STARS - HERO SECTION
   =========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fefefe 0%, #f5f5f5 25%, #fffbeb 50%, #fef9e7 75%, #ffffff 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Animated background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 71, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 71, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(180, 140, 50, 0.08) 0%, transparent 30%);
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(212, 168, 71, 0.05) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: heroShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 1%) rotate(1deg); }
    50% { transform: translate(0, 2%) rotate(0deg); }
    75% { transform: translate(-2%, 1%) rotate(-1deg); }
}

@keyframes heroShimmer {
    0%, 100% { background-position: 200% 200%; }
    50% { background-position: 0% 0%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(212, 168, 71, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 168, 71, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(180, 140, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(212, 168, 71, 0.2);
    opacity: 0;
    animation: fadeInDown 0.5s ease 0.1s forwards;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-gold);
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title-small {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    opacity: 0;
    animation: scaleIn 0.6s ease 0.3s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #333;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.45s forwards;
}

.hero-description {
    max-width: 650px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeIn 0.4s ease 0.55s forwards;
}

.hero-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.65s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.stat {
    text-align: center;
    opacity: 0;
    animation: bounceIn 0.5s ease forwards;
}

.stat:nth-child(1) { animation-delay: 0.75s; }
.stat:nth-child(2) { animation-delay: 0.85s; }
.stat:nth-child(3) { animation-delay: 0.95s; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 0.5s ease 1.1s forwards, bounce 2s infinite 1.5s;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
