/* ==========================================================================
   SHS FEES & BOOKING SPECIFIC STYLES (sportbootschule.TV)
   ========================================================================== */

/* --- 1. PREMIUM BUTTON ENGINE SYSTEM --- */
.shs-btn-wrapper {
    margin: 25px 0;
    display: block;
}
.btn-footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
}

/* Großer Haupt-CTA-Button */
.btn-booking-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0284c7;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
    transition: all 0.2s ease-in-out;
}
.btn-booking-cta:hover {
    background: #0369a1;
    box-shadow: 0 6px 20px rgba(3, 105, 161, 0.35);
    transform: translateY(-2px);
}

/* Eleganter Outline-Button für sekundäre Links */
.btn-back-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #0284c7 !important;
    border: 2px solid #0284c7;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
}
.btn-back-outline-btn:hover {
    background: #e0f2fe;
    color: #025a87 !important;
    border-color: #025a87;
    transform: translateY(-1px);
}

/* --- 2. PREMIUM FAQ ENGINE SYSTEM --- */
.faq-container { 
    margin-top: 30px; 
    max-width: 100%;
}
.faq-container details {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.03);
    transition: box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
    cursor: pointer;
}
.faq-container details:hover {
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}
.faq-container details[open] {
    border-color: #0284c7;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.1);
    background: #ffffff;
}
.faq-container summary {
    padding: 16px 20px;
    font-weight: bold;
    font-size: 1.05rem;
    color: #1e293b;
    list-style: none;
    position: relative;
    padding-right: 50px;
}
.faq-container summary::-webkit-details-marker { 
    display: none; 
}

/* Nauti-Pfeil rechts */
.faq-container summary::after {
    content: '➔';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0284c7;
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.faq-container details[open] summary::after {
    transform: translateY(-50%) rotate(90deg);
    color: #0369a1;
}
.faq-container summary:focus {
    outline: none;
}
.faq-content { 
    padding: 0 20px 20px 20px; 
    line-height: 1.6; 
    font-size: 0.95rem;
    color: #334155;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    background: #fafafa;
}
.faq-content a {
    color: #0284c7;
    font-weight: bold;
    text-decoration: underline;
}
.faq-content a:hover {
    color: #0369a1;
}

/* --- 3. RESPONSIVE MEDIA FLAGS --- */
@media (max-width: 680px) {
    .btn-footer-navigation { flex-direction: column; align-items: stretch; }
    .btn-booking-cta, .btn-back-outline-btn { text-align: center; justify-content: center; width: 100%; box-sizing: border-box; }
}