/* --- Hero Section Styles --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-left: 80px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem; 
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    color: var(--text-main);
    font-family: 'Michroma', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-description {
    font-size: calc(1.2rem + 4px);
    margin-bottom: 40px;
    opacity: 0;
    color: #ccc;
    font-family: 'Michroma', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
}

/* Responsive Hero Title */
@media (max-width: 1024px) {
    .hero-content {
        margin-left: 40px;
    }
    .hero-title { font-size: 2.75rem; }
    .hero-description { font-size: 1.1rem; }
}

@media (max-width: 640px) {
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-buttons {
        justify-content: center;
    }
}
