.banner {
    min-height: 45vh;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    background: url("../images/background.webp") center/cover no-repeat;
    border-bottom: 3px solid #111;
    color: #111;
    text-shadow: 1px 1px 4px rgba(128, 128, 128, 0.6);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
}

.banner-logo img {
    width: 350px;
    height: auto;
    object-fit: cover;
}

.banner-text {
    flex: 1;
}

.banner-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.banner-meta {
    font-weight: bold;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-logo img {
        width: 100px;
    }

    .banner-content {
        gap: 1rem;
    }


    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 1rem;
    }
}
