.hero {
    height: 100vh;
    background: url('/portfolio/premium-event-image.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/icons/particles.png');
    opacity: 0.15;
    z-index: 2;
    animation: floatParticles 40s linear infinite;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.hero__text-container {
    animation: fadeIn 1.5s ease-in-out;
    max-width: 900px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #c8a97e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInDown 1s ease-out;
}

.hero__subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
    max-width: 800px;
    margin: 0 auto;
}

.hero__stats {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 1s;
    animation-fill-mode: both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(200, 169, 126, 0.05), rgba(200, 169, 126, 0.2));
    clip-path: circle(0% at 100% 100%);
    transition: clip-path 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(200, 169, 126, 0.3);
}

.stat-item:hover::before {
    clip-path: circle(150% at 100% 100%);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.8rem;
    position: relative;
}

.stat-text {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatParticles {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }
    
    .hero__stats {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }

    .hero__content {
        gap: 2rem;
        padding: 1rem;
        margin-top: 0;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 1.2rem;
    }

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

    .stat-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero__content {
        padding: 4rem 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
        margin-top: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        padding: 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
    }
}