/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero {
    background: var(--hero-bg);
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.hero .btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 45px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
    }
}