/* Hero Styles (Brand & Slider) */

/* Brand Section */
#brand-section {
    padding: 2rem 0 2rem;
    background-color: white;
}

.brand-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand-logo {
    flex: 1;
}

.brand-quote {
    flex: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 800px;
}

.brand-quote p {
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-primary-text);
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

.brand-leaf {
    flex: 0.5;
    display: flex;
    justify-content: flex-end;
}

/* Slider */
#hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}

.dot.active {
    background-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-container {
        flex-direction: column;
        gap: 2rem;
    }

    .brand-leaf {
        display: none;
    }
}

/* Brand Section - Images Only (side by side) */
.brand-images-only {
    justify-content: space-between;
    align-items: center;
}

.brand-images-only .brand-logo {
    flex: 1;
}

.brand-images-only .brand-leaf {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.brand-images-only .brand-leaf img {
    max-height: 120px;
    width: auto;
}

/* ============================================
   QUOTE SECTION - Centered with proper spacing
   (using !important to override WordPress defaults)
   ============================================ */
#brand-quote-section {
    background-color: #ffffff !important;
    padding: 60px 0 80px !important;
    /* Using px for exactness */
    text-align: center !important;
    display: block !important;
}

#brand-quote-section .container {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

#brand-quote-section .brand-quote-block {
    max-width: 850px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}

#brand-quote-section .brand-quote-block p,
#brand-quote-section blockquote p,
section#brand-quote-section p {
    font-family: 'Times New Roman', Georgia, serif !important;
    font-size: 1.15rem !important;
    font-style: italic !important;
    line-height: 2 !important;
    color: #333333 !important;
    margin-bottom: 40px !important;
    /* Increased spacing before author */
    text-align: center !important;
    padding: 0 !important;
}

#brand-quote-section .brand-quote-block cite,
#brand-quote-section blockquote cite,
section#brand-quote-section cite {
    display: block !important;
    font-style: normal !important;
    font-size: 0.85rem !important;
    letter-spacing: 5px !important;
    /* More spacing like The Vine School */
    color: #666666 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin-top: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-images-only .brand-leaf {
        display: flex;
        justify-content: center;
    }

    #brand-quote-section {
        padding: 40px 0 60px !important;
    }

    #brand-quote-section .brand-quote-block p,
    #brand-quote-section blockquote p {
        font-size: 1rem !important;
        line-height: 1.8 !important;
        margin-bottom: 30px !important;
    }
}