/* Banner Section */
.banner-section {
    width: 100%;
    max-width: 1518px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1518 / 500;
    height: auto;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.banner-overlay {
    display: none;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.banner-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.banner-title {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        aspect-ratio: 1518 / 500;
        max-width: 100%;
        height: 60vh;
    }

    .banner-title {
        font-size: 1.6rem;
    }
}

/* Mac-specific font size reduction */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @supports (-webkit-appearance: none) and (not (transform: translateZ(0))) {
        .banner-title {
            font-size: 2.2rem !important;
        }
        
        @media (max-width: 768px) {
            .banner-title {
                font-size: 1.8rem !important;
            }
        }
        
        @media (max-width: 480px) {
            .banner-title {
                font-size: 1.5rem !important;
            }
        }
    }
}
