/* Eleganter Spruch des Tages - Premium Design wie Paulo Coelho Beispiel */

/* Hauptcontainer mit elegantem grauen Balken */
.quote-section-elegant {
    background: #ebe9e6; /* Eleganter Grauton wie Hotel Atlantic */
    background: linear-gradient(135deg, #f0eeeb 0%, #e6e4e1 50%, #f0eeeb 100%);
    padding: 100px 20px; /* Reduzierte Höhe wie aktuelle Version */
    text-align: center;
    margin: 80px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Sehr dezente Schatten für subtile Tiefe */
    box-shadow: 
        0 -1px 10px rgba(0, 0, 0, 0.04),
        0 1px 10px rgba(0, 0, 0, 0.04);
}

/* Dezente Textur-Overlay für mehr Eleganz */
.quote-section-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.quote-elegant-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Datum - Spruch des Tages */
.quote-date-elegant {
    color: #888888;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    opacity: 1;
    display: block;
}

/* Autor/Quelle - klein und dezent */
.quote-author-elegant {
    color: #6b6b6b; /* Mittleres Grau wie Hotel Atlantic */
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 45px;
    font-family: 'Inter', -apple-system, sans-serif;
    opacity: 0.7;
    position: relative;
}

/* Dekorative Linien entfernt - für cleaneren Look */

/* Haupttext - elegant und lesbar */
.quote-text-elegant {
    font-size: 34px;
    line-height: 1.5;
    color: #2c2c2c; /* Dunkles Grau wie Hotel Atlantic */
    font-family: 'Georgia', 'Garamond', serif;
    font-weight: 400;
    font-style: italic; /* Kursiv für eleganteres Aussehen */
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.3);
}

/* Anführungszeichen - elegant und dezent */
.quote-mark-left-elegant,
.quote-mark-right-elegant {
    font-size: 46px;
    color: #999999; /* Helleres Grau für dezente Anführungszeichen */
    font-family: 'Georgia', serif;
    vertical-align: -8px;
    font-weight: normal;
    opacity: 0.5;
    display: inline-block;
    transform: translateY(3px);
}

.quote-mark-left-elegant {
    margin-right: 15px;
}

.quote-mark-right-elegant {
    margin-left: 15px;
}

/* Der eigentliche Zitattext */
.quote-main-text-elegant {
    display: inline;
    font-style: italic; /* Kursiv für elegantes Aussehen */
    letter-spacing: 0.3px;
}

/* Zusätzlicher Call-to-Action Text (optional) */
.quote-cta-text {
    margin-top: 45px;
    font-size: 14px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #6b6b6b; /* Mittleres Grau wie Hotel Atlantic */
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Animation beim Laden */
@keyframes fadeInQuote {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-section-elegant {
    animation: fadeInQuote 1s ease-out;
}

/* Hover-Effekt */
.quote-section-elegant:hover .quote-text-elegant {
    transform: scale(1.015);
    transition: transform 0.4s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-text-elegant {
        font-size: 32px;
    }
    
    .quote-mark-left-elegant,
    .quote-mark-right-elegant {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .quote-section-elegant {
        padding: 70px 20px;
        margin: 60px 0;
    }
    
    .quote-date-elegant {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    
    .quote-text-elegant {
        font-size: 28px;
        line-height: 1.5;
    }
    
    .quote-mark-left-elegant,
    .quote-mark-right-elegant {
        font-size: 40px;
        vertical-align: -8px;
        margin-right: 15px;
        margin-left: 15px;
    }
    
    .quote-author-elegant {
        font-size: 9px;
        letter-spacing: 3px;
        margin-bottom: 35px;
    }
    
}

@media (max-width: 480px) {
    .quote-section-elegant {
        padding: 50px 15px;
        margin: 40px 0;
    }
    
    .quote-date-elegant {
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .quote-text-elegant {
        font-size: 22px;
        line-height: 1.45;
    }
    
    .quote-mark-left-elegant,
    .quote-mark-right-elegant {
        font-size: 32px;
        margin-right: 10px;
        margin-left: 10px;
    }
    
    .quote-author-elegant {
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    
    .quote-cta-text {
        font-size: 12px;
        margin-top: 30px;
    }
}
