/* ==========================================================================
   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; 
    }
}