/* Hero Section - Reusable Component */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(45, 80, 22, 0.85) 0%, 
        rgba(26, 48, 9, 0.95) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(45, 80, 22, 0.1) 0%, rgba(26, 48, 9, 0.3) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    background: rgba(186, 172, 65, 0.15);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { 
    width: 100px; 
    height: 100px; 
    top: 15%; 
    left: 15%; 
    animation-delay: 0s; 
}
.particle:nth-child(2) { 
    width: 60px; 
    height: 60px; 
    top: 25%; 
    right: 20%; 
    animation-delay: 2s; 
}
.particle:nth-child(3) { 
    width: 120px; 
    height: 120px; 
    bottom: 25%; 
    left: 25%; 
    animation-delay: 4s; 
}
.particle:nth-child(4) { 
    width: 80px; 
    height: 80px; 
    bottom: 35%; 
    right: 25%; 
    animation-delay: 6s; 
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-15px) rotate(90deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-25px) rotate(180deg); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateY(-10px) rotate(270deg); 
        opacity: 0.6; 
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #abb9ad;
    color: #2D5016;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(186, 172, 65, 0.3);
    border: 2px solid transparent;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(186, 172, 65, 0.4);
    background: rgba(186, 172, 65, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    color: #2D5016;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 45vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .particle:nth-child(3),
    .particle:nth-child(4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 40vh;
        min-height: 350px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .particle:nth-child(2) {
        display: none;
    }
}