/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-color: #1A1A1A;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-image: radial-gradient(circle, rgba(255,255,255,1) 1.05px, transparent 1.05px);
    background-size: 20px 20px;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75,83,32,0.85), rgba(26,26,26,0.95));
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-light);
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--text-light);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}
