/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, rgba(27, 42, 73, 0.6) 0%, rgba(27, 42, 73, 0.4) 100%), 
                url('../images/hero.webp') center top/cover;
    color: white;
    padding: 200px 20px 150px;
    margin-top: 80px;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Subpage Hero (for About, Services, Gallery, etc.) */
.hero.subpage-hero {
    padding: 120px 20px 80px;
}

.hero.subpage-hero h1 {
    font-size: 3rem;
}

.hero.subpage-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero responsive styles */
@media (max-width: 768px) {
    .hero {
        padding: 150px 20px 100px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    /* Subpage hero mobile */
    .hero.subpage-hero {
        padding: 100px 20px 60px;
    }

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

    .hero.subpage-hero p {
        font-size: 1.1rem;
    }
}

/* First section padding for pages without hero */
.first-section-no-hero {
    margin-top: 90px !important;
}

@media (max-width: 768px) {
    .first-section-no-hero {
        margin-top: 60px !important;
    }
}