/* Segelclub Detail Page */

/* Mobile-First: Basis-Styles gelten für mobile Geräte */
.segelclub-detail-container {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.segelclub-detail-header {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    text-align: center;
    padding: 40px 15px;
    margin-bottom: 40px;
}

.segelclub-detail-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.segelclub-detail-description {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    line-height: var(--line-height-base);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.segelclub-detail-info {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: 40px;
}

/* Mobile-First: Basis-Styles gelten für mobile Geräte */
.segelclub-detail-info-grid {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.segelclub-detail-info-item {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 25px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-surface);
}

.segelclub-detail-info-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-tight);
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.segelclub-detail-info-content {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.segelclub-detail-info-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.segelclub-detail-info-text:last-child {
    margin-bottom: 0;
}

.segelclub-detail-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.2s ease;
}

.segelclub-detail-link:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

.segelclub-detail-website-button {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.segelclub-detail-website-button-icon {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    line-height: var(--line-height-base);
}

.segelclub-detail-website-button-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.segelclub-detail-map {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: 40px;
}

.segelclub-detail-map-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-tight);
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.segelclub-detail-map-container {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.segelclub-detail-map-container .leaflet-map-container,
.segelclub-detail-map-container #leaflet-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.segelclub-detail-not-found {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    text-align: center;
    padding: 40px 15px;
}

.segelclub-detail-not-found-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.segelclub-detail-not-found-description {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    line-height: var(--line-height-base);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Tablet/iPad (600px-768px) */
@media (min-width: 600px) {
    .segelclub-detail-container {
        padding: 0 30px;
    }

    .segelclub-detail-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

/* Kleiner Desktop/13-Zoll (1024px-1366px) */
@media (min-width: 1024px) {
    .segelclub-detail-container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .segelclub-detail-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

/* Social Media Buttons */
.segelclub-detail-social-buttons {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.segelclub-detail-social-button {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.segelclub-detail-social-button:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-link);
    color: var(--color-link);
    text-decoration: none;
}

.segelclub-detail-social-icon {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    line-height: var(--line-height-base);
}

.segelclub-detail-social-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.segelclub-detail-social-button-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.segelclub-detail-social-button-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: #ffffff;
}

.segelclub-detail-social-button-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #ffffff;
}

.segelclub-detail-social-button-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

.segelclub-detail-social-button-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .segelclub-detail-container {
        max-width: 1400px;
        padding: 0 60px;
    }

    .segelclub-detail-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

