/* Hero Section Shared Styles */

.hero {
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 40px 40px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-back {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.hero-back:hover {
    opacity: 0.8;
}

.hero-back svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.hero h1 {
    color: white;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-size: 3.5rem;
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}

.hero-description.bold {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-action {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hero-action:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */

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

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

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

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

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-back {
        margin-bottom: 1rem;
    }
}
