/* Inspirational Quote Banners */
.quote-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Adjust based on preference, maybe 50-70vh */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    /* Remove default margin */
}

/* Dark overlay for readability */
.quote-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    /* 35% black overlay */
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Main Quote Text */
.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Subtext / Detail */
.quote-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-bottom: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Specific Adjustments for Mobile */
@media (max-width: 768px) {
    .quote-banner {
        height: 50vh;
        min-height: 300px;
    }
}