/* Hero Section */
.section--hero {
    min-height: 100vh;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section--hero .section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(54, 121, 200, 0.85) 0%, rgba(68, 68, 68, 0.75) 100%);
}

.section--hero .section__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.85;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3679c8;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn:hover {
    background-color: transparent;
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-logo img {
        max-width: 80px;
    }
}
