/* Schuberts Google Reviews Banner - CSS */
/* Version: 1.0.0 - Authentische Google Farben mit Pfeil-Navigation */

/* Container für das gesamte Banner */
.schuberts-reviews-banner {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    padding: 50px 40px;
    position: relative;
    margin: 40px 0px;
}

/* Überschrift über dem Banner */
.schuberts-reviews-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 0px 20px;
}

.schuberts-reviews-header h2 {
    font-size: 32px;
    color: #202124;
    margin: 0px 0px 15px 0px;
    font-weight: 500;
}

.schuberts-reviews-header .rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    color: #5f6368;
    flex-wrap: wrap;
}

/* Google Sterne - Original Google Farbe */
.schuberts-reviews-header .stars {
    color: #fbbc04;
    font-size: 26px;
    letter-spacing: 3px;
}

/* Wrapper für den Slider */
.schuberts-reviews-slider-wrapper {
    position: relative;
    padding: 0px 60px;
}

/* Container mit allen Bewertungen */
.schuberts-reviews-scroll-container {
    display: flex;
    gap: 25px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 10px 0px;
}

/* Einzelne Bewertungskarte - Google Style */
.schuberts-review-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    min-width: calc((100% - 75px) / 4);
    max-width: calc((100% - 75px) / 4);
    box-shadow: 0px 1px 2px 0px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #e8eaed;
}

.schuberts-review-card:hover {
    box-shadow: 0px 1px 3px 0px rgba(60, 64, 67, 0.3), 0px 4px 8px 3px rgba(60, 64, 67, 0.15);
    transform: translateY(-2px);
}

/* Header der Karte mit Profilbild und Name */
.schuberts-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar - Google Style */
.schuberts-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: 500;
    flex-shrink: 0;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.schuberts-review-info {
    flex: 1;
}

/* Name - Google Typography */
.schuberts-review-author {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin: 0px 0px 4px 0px;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.schuberts-review-date {
    font-size: 12px;
    color: #5f6368;
    margin: 0px;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Sterne Bewertung - Original Google Gold */
.schuberts-review-stars {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Bewertungstext - Google Typography */
.schuberts-review-text {
    font-size: 14px;
    line-height: 20px;
    color: #3c4043;
    margin: 0px;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Google Logo Badge */
.schuberts-google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5f6368;
    padding-top: 8px;
    border-top: 1px solid #e8eaed;
}

.schuberts-google-badge i {
    color: #4285f4;
    font-size: 14px;
}

/* Navigation Pfeile */
.schuberts-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.schuberts-slider-arrow:hover {
    background: #f8f9fa;
    box-shadow: 0px 1px 3px 0px rgba(60, 64, 67, 0.3), 0px 4px 8px 3px rgba(60, 64, 67, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.schuberts-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.schuberts-slider-arrow span {
    color: #202124;
    font-size: 18px;
    line-height: 1;
    display: block;
}

.schuberts-slider-arrow.left {
    left: 0px;
}

.schuberts-slider-arrow.right {
    right: 0px;
}

/* Button zu Google Reviews */
.schuberts-reviews-button-container {
    text-align: center;
    margin-top: 35px;
    padding: 0px 20px;
}

.schuberts-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: white;
    padding: 14px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.schuberts-reviews-button:hover {
    background: #1a73e8;
    box-shadow: 0px 1px 3px 0px rgba(60, 64, 67, 0.3), 0px 4px 8px 3px rgba(60, 64, 67, 0.15);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.schuberts-reviews-button:active {
    transform: translateY(0px);
}

.schuberts-reviews-button i {
    font-size: 18px;
}

/* Responsive Design für große Tablets */
@media (max-width: 1400px) {
    .schuberts-review-card {
        min-width: calc((100% - 50px) / 3);
        max-width: calc((100% - 50px) / 3);
    }
}

/* Responsive Design für Tablets */
@media (max-width: 1024px) {
    .schuberts-reviews-banner {
        padding: 40px 30px;
    }

    .schuberts-reviews-slider-wrapper {
        padding: 0px 50px;
    }

    .schuberts-review-card {
        min-width: calc((100% - 25px) / 2);
        max-width: calc((100% - 25px) / 2);
    }

    .schuberts-slider-arrow {
        width: 42px;
        height: 42px;
    }

    .schuberts-slider-arrow span {
        font-size: 16px;
    }
}

/* Responsive Design für Mobile */
@media (max-width: 768px) {
    .schuberts-reviews-banner {
        padding: 40px 20px;
        margin: 30px 0px;
    }

    .schuberts-reviews-header h2 {
        font-size: 26px;
    }

    .schuberts-reviews-header .rating-summary {
        font-size: 16px;
        gap: 10px;
    }

    .schuberts-reviews-header .stars {
        font-size: 22px;
    }

    .schuberts-reviews-slider-wrapper {
        padding: 0px 45px;
    }

    .schuberts-review-card {
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .schuberts-review-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .schuberts-review-author {
        font-size: 13px;
    }

    .schuberts-review-text {
        font-size: 13px;
        line-height: 18px;
    }

    .schuberts-reviews-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .schuberts-slider-arrow {
        width: 38px;
        height: 38px;
    }

    .schuberts-slider-arrow span {
        font-size: 14px;
    }
}

/* Extra kleine Mobile Geräte */
@media (max-width: 480px) {
    .schuberts-reviews-banner {
        padding: 30px 15px;
    }

    .schuberts-reviews-slider-wrapper {
        padding: 0px 40px;
    }

    .schuberts-review-card {
        padding: 18px;
    }

    .schuberts-reviews-button {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }

    .schuberts-slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .schuberts-slider-arrow span {
        font-size: 13px;
    }
}
