/* ==========================================================================
   SHS MODULES SITE-SPECIFIC STYLES (sportbootschule.TV / NautiApp)
   ========================================================================== */

/* --- 1. SHS BUTTON-DASHBOARD (NAVIGATION) --- */
.shs-dash-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 25px; 
    margin: 35px 0;
    width: 100%;
    font-family: sans-serif;
}

.shs-dash-tile {
    background: #ffffff;
    border: 3px solid #0284c7; /* Markanter Nauti-Cyan Rahmen */
    border-radius: 14px; 
    padding: 0 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    
    flex: 1 1 150px; 
    max-width: 180px; 
    aspect-ratio: 200 / 259; 
    overflow: hidden; 
    
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.shs-dash-tile:hover {
    transform: translateY(-6px); 
    border-color: #0369a1; /* Sattes Tiefblau beim Hover */
    box-shadow: 0 15px 20px -5px rgba(2, 132, 199, 0.4), 0 8px 8px -5px rgba(2, 132, 199, 0.2);
}

.shs-dash-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill; 
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shs-dash-tile:hover .shs-dash-img {
    transform: scale(1.12); /* 12% Bild-Zoom innerhalb der Kachel */
}


/* --- 2. CALL-TO-ACTION (BUCHUNG) --- */
.shs-dash-booking {
    margin: 45px 0 25px 0;
    text-align: center;
    font-family: sans-serif;
}

.shs-dash-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;
}

.shs-dash-cta:hover {
    background: #0369a1;
    box-shadow: 0 6px 20px rgba(3, 105, 161, 0.35);
    transform: translateY(-2px);
}


/* --- 3. RESPONSIVE COMPACT MEDIA FLAGS --- */
@media screen and (max-width: 450px) {
    .shs-dash-tile { 
        flex-basis: 120px; /* Kleinere Kacheln auf schmalen Displays */
    }
    .shs-dash-container { 
        gap: 15px; 
    }
}


   /* =========================================================
       SHS-MODULHAUS
       ========================================================= */

    .shs-module-house {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        max-width: 920px;
        margin: 30px auto;
    }

    .shs-module-link {
        position: relative;
        display: flex;
        min-height: 128px;
        padding: 19px 48px 19px 19px;
        flex-direction: column;
        justify-content: center;
        background:
            linear-gradient(
                145deg,
                #164e85 0%,
                #075985 55%,
                #0369a1 100%
            );
        border: 1px solid rgba(255, 255, 255, 0.20);
        border-radius: 11px;
        color: #ffffff !important;
        text-decoration: none !important;
        box-shadow:
            0 4px 11px rgba(7, 89, 133, 0.20),
            inset 0 1px 0 rgba(255, 255, 255, 0.14);
        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background 0.2s ease;
    }

    .shs-module-roof {
        grid-column: 1 / -1;
        width: calc(50% - 8px);
        min-height: 145px;
        justify-self: center;
        text-align: center;
    }

    .shs-module-link:hover,
    .shs-module-link:focus {
        background:
            linear-gradient(
                145deg,
                #075985 0%,
                #0369a1 52%,
                #0284c7 100%
            );
        transform: translateY(-3px) scale(1.02);
        box-shadow:
            0 9px 21px rgba(7, 89, 133, 0.29),
            inset 0 1px 0 rgba(255, 255, 255, 0.17);
    }

    .shs-module-link strong {
        display: block;
        font-size: 1.08rem;
        line-height: 1.3;
    }

    .shs-module-link span {
        display: block;
        margin-top: 7px;
        color: #d9f0fb;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .shs-module-link::after {
        content: '›';
        position: absolute;
        top: 50%;
        right: 18px;
        color: #ffffff;
        font-size: 2rem;
        line-height: 1;
        transform: translateY(-50%);
    }

    /* =========================================================
       KOMMUNIKATION
       ========================================================= */

    .shs-community-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin: 26px 0;
    }

    /* =========================================================
       MEDIATHEK, NAUTIAPP UND NAUTITOOLS
       ========================================================= */

    .shs-tool-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin: 26px 0;
    }

    /* =========================================================
       PREIS
       ========================================================= */

    .shs-price-box {
        display: grid;
        grid-template-columns: minmax(170px, 220px) 1fr;
        gap: 25px;
        align-items: start;
        margin: 28px 0;
    }

    .shs-price-summary {
        padding-right: 22px;
        border-right: 1px solid #ccdbe5;
    }

    .shs-price-label {
        display: block;
        color: #475569;
        font-size: 0.93rem;
    }

    .shs-price {
        display: block;
        margin: 4px 0 6px;
        color: #075985;
        font-size: 1.72rem;
        font-weight: 750;
    }

    .shs-price-note {
        color: #475569;
        font-size: 0.9rem;
    }

    .shs-price-details h3 {
        margin-top: 0;
        color: #334155;
        font-size: 1.08rem;
    }

    .shs-price-details ul {
        margin-bottom: 0;
    }

    .shs-all-inclusive {
        margin-top: 20px;
        line-height: 1.7;
    }

    /* =========================================================
       RESPONSIVE
       ========================================================= */

    @media (max-width: 1040px) {
        .shs-tool-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 920px) {
        .shs-facts-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .shs-sequence {
            grid-template-columns: 1fr;
        }

        .shs-bridge-grid,
        .shs-community-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .shs-hero-media {
            display: block;
        }

        .shs-hero-image {
            float: none;
            max-width: 100%;
            margin: 0 0 22px;
        }

        .shs-module-house,
        .shs-price-box {
            grid-template-columns: 1fr;
        }

        .shs-module-roof {
            grid-column: auto;
            width: auto;
            justify-self: stretch;
            text-align: left;
        }

        .shs-price-summary {
            padding-right: 0;
            padding-bottom: 18px;
            border-right: 0;
            border-bottom: 1px solid #ccdbe5;
        }
    }

    @media (max-width: 620px) {
        .shs-facts-grid {
            grid-template-columns: 1fr;
        }

        .shs-footer-navigation {
            align-items: stretch;
            flex-direction: column;
        }

        .shs-booking-cta,
        .shs-back-outline-btn {
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }
    }


/* =========================================================
   EINZELNE SHS-MODULBESCHREIBUNGEN
   ========================================================= */

.shs-module-detail {
    display: flow-root;
    margin: 28px 0;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #dbe5ec;
    border-top: 4px solid #0284c7;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(15, 53, 76, 0.05);
}

.shs-module-detail h3 {
    margin-top: 0;
    padding-right: 165px;
    color: #075985;
}

.shs-module-detail-image {
    float: right;
    display: block;
    width: 135px;
    height: auto;
    margin: 0 0 18px 24px;
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
}

.shs-module-detail .btn-btn-wrapper {
    margin-top: 20px;
    margin-bottom: 0;
}

@media (max-width: 680px) {
    .shs-module-detail h3 {
        padding-right: 0;
    }

    .shs-module-detail-image {
        float: none;
        width: 100%;
        max-width: 220px;
        margin: 0 auto 20px;
    }
}

