/* Hero Section */
.hero-section {
    background: #111;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(179, 162, 113, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, 0.75);
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 300;
    color: #b3a271;
    opacity: 0.9;
}

.hero-subtitle {
    min-height: 4.5rem;
}

.typed-cursor {
    color: #b3a271;
    animation: blink 0.8s infinite;
    font-weight: 100;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-text {
    font-size: 2.5rem;
    opacity: 0.9;
}

/* Animated Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(179, 162, 113, 0.4);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(179, 162, 113, 0.3);
}

.particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particles span:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
    width: 6px;
    height: 6px;
}

.particles span:nth-child(3) {
    left: 35%;
    top: 50%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particles span:nth-child(4) {
    left: 50%;
    top: 30%;
    animation-delay: 1s;
    animation-duration: 16s;
    width: 3px;
    height: 3px;
}

.particles span:nth-child(5) {
    left: 65%;
    top: 70%;
    animation-delay: 3s;
    animation-duration: 20s;
    width: 5px;
    height: 5px;
}

.particles span:nth-child(6) {
    left: 75%;
    top: 40%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particles span:nth-child(7) {
    left: 85%;
    top: 85%;
    animation-delay: 2.5s;
    animation-duration: 17s;
    width: 4px;
    height: 4px;
}

.particles span:nth-child(8) {
    left: 90%;
    top: 15%;
    animation-delay: 1.5s;
    animation-duration: 15s;
    width: 3px;
    height: 3px;
}

.particles span:nth-child(9) {
    left: 45%;
    top: 90%;
    animation-delay: 3.5s;
    animation-duration: 19s;
}

.particles span:nth-child(10) {
    left: 25%;
    top: 35%;
    animation-delay: 4.5s;
    animation-duration: 11s;
    width: 5px;
    height: 5px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) translateX(-10px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.6;
    }
}
