
.usp-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    margin-bottom: 80px;
}
.usp-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.usp-item:hover {
    transform: translateY(-5px);
}
.usp-item i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.usp-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--dark-grey);
}
.usp-item p {
    font-size: 0.95em;
    color: #555;
}

.about-preview {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--medium-grey);
    border-radius: 8px;
    margin-bottom: 60px;
}

.gr-widget-container {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}
h2.gr-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}
.gr-summary-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.gr-google-logo {
    font-size: 20px;
    font-weight: bold;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 5px;
}
.gr-google-logo span {
    color: #4285f4; 
} 
.gr-rating-score {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}
.gr-score-num { 
    font-weight: bold; 
    font-size: 18px; 
}
.gr-count { 
    color: #777; 
    font-size: 14px; 
    margin-left: 5px; 
}
.gr-btn {
    background: #1a73e8;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
}
.gr-btn:hover { 
    background: #1557b0; 
}
.gr-reviews-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    position: relative;
}
.gr-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    min-width: 200px;
    max-width: 250px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gr-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.gr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    font-size: 16px;
}
.gr-google-icon-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.gr-user-info {
    display: flex; 
    flex-direction: column;
}
.gr-user-name { 
    font-weight: 500; 
    font-size: 14px; 
    color: #202124; 
    display: flex; 
    align-items: center; 
    gap: 4px;
}
.gr-verified {
    color: #1a73e8; 
    font-size: 12px;
}
.gr-date {
    font-size: 12px; 
    color: #70757a; 
    margin-top: 2px; 
}
.gr-stars {
    color: #fbbc04; 
    font-size: 16px; 
    margin-bottom: 8px; 
    letter-spacing: 1px;
}
.star.empty {
    color: #dadce0; 
}
.gr-text {
    font-size: 12px;
    color: #3c4043;
    line-height: 1.2;
    display: -webkit-box;
    overflow: hidden;
}
.gr-read-more {
    color: #1a73e8;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    overflow: hidden;
    background-color: #f0f0f0;
    aspect-ratio: 1400 / 868;
}
.slide {
    position: absolute;
    inset: 0;            
    opacity: 0;
    z-index: 0;
    transition: opacity 3s ease-in-out;
}
.slide.active {
    opacity: 1;  
    z-index: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
    background-color: #000;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;   
    align-items: flex-end;
    padding-bottom: 30px;
}
.slide-content {
    text-align: center;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 8px;
}
.slide-content h2 {
    font-family: 'Playfair Display', serif; 
    font-size: 20px;
    color: #2F3C4E;
    margin-bottom: 20px;
    line-height: 1.2;
}
.slide-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #2F3C4E;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 4px; 
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.hero-button:hover {
    background-color: white;
    color: #e67e22;
    transform: translateY(-2px);
}

.prev, .next, .dots-container {
    z-index: 10;
}

/* Einbindung des Flyers */
#imgOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 2s ease;
}
#imgOverlay.show {
    opacity: 1;
}
#imgContainer {
    position: relative;              
    max-width: 350px;
    background: transparent;
    padding: 15px;
}    
#imgContainer img {
    width: 100%;
    height: auto;
    display: block;
}
#imgContainer p {
    text-align: center;
}
#closeBtn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #ff4444;
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
#closeBtn:hover {
    background: #cc0000;
}