/* ====== Quote of the Day Styles ====== */
.quote-section {
    background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.9)), url('/images/Quote1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: var(--max);
    margin: 2rem auto;
    font-family: 'Georgia', serif;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 50%);
    pointer-events: none;
}

.quote-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.quote-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    quotes: "“" "”" "‘" "’";
}

#quote-text::before {
    content: "“";
    font-size: 2rem;
    opacity: 0.5;
    margin-right: 0.5rem;
}

#quote-text::after {
    content: "”";
    font-size: 2rem;
    opacity: 0.5;
    margin-left: 0.5rem;
}

#quote-author {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    #quote-text {
        font-size: 1.2rem;
    }
}
