@import url('../fonts.css');

/* ========================================
   HERO SECTION COMPONENT
   ======================================== */

.hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.hero-section__title {
    font-family: var(--font-anton);
    position: relative;
    z-index: 2;
    font-size: 4rem;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

/* Hero Logo Style */
.hero-section__logo {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-section__logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: 200px;
    }
    
    .hero-section__title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section__title {
        font-size: 2.5rem;
    }

    .hero-section__logo img {
        max-height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
        min-height: 150px;
    }
    
    .hero-section__title {
        font-size: 2rem;
        letter-spacing: 0.02em;
    }
}