/* ========================================
   CARBON EAGLES HAMBURG - HAUPT-STYLESHEET
   ======================================== */

/* ========================================
   RESET UND BASIS-STILE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #212121 url('./images/background.PNG') no-repeat center center fixed;
    background-size: cover; 
    color: #ececec;
    line-height: 1.6;
    min-height: 100vh;
}

/* ========================================
   HEADER UND NAVIGATION
   ======================================== */
.header {
    background: rgba(52, 53, 65, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #444654;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #c5c5d2;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
    position: relative;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(64, 65, 79, 0.8);
    border-color: #565869;
}

.nav-menu a.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.2) 0%, rgba(22, 182, 138, 0.1) 100%) !important;
    border: 2px solid transparent !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px) !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: #40414f;
    border: 1px solid #565869;
    color: #c5c5d2;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: #565869;
    color: #ffffff;
}

/* ========================================
   HAUPTINHALT UND LAYOUTS
   ======================================== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ========================================
   BASIS-KARTEN UND SEKTIONEN
   ======================================== */
.card {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10a37f 0%, #16b68a 50%, #10a37f 100%);
    border-radius: 16px 16px 0 0;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #565869;
    box-shadow: 
        0 25px 30px -5px rgba(0, 0, 0, 0.5),
        0 10px 15px -6px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #10a37f;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: #c5c5d2;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   FEATURE GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10a37f, transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #565869;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #10a37f;
    font-weight: 600;
}

.feature-description {
    color: #c5c5d2;
    line-height: 1.6;
}

/* ========================================
   SECTION TITEL
   ======================================== */
.section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10a37f, #16b68a);
    border-radius: 2px;
}

/* ========================================
   NEWS ARTIKEL
   ======================================== */
.news-container {
    display: grid;
    gap: 2rem;
}

.news-article {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10a37f, transparent);
    transition: left 0.6s ease;
}

.news-article:hover::before {
    left: 100%;
}

.news-article:hover {
    transform: translateY(-6px);
    border-color: #565869;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-title {
    font-size: 1.8rem;
    color: #10a37f;
    margin: 0;
    font-weight: 600;
}

.news-date {
    color: #c5c5d2;
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.1) 0%, rgba(22, 182, 138, 0.05) 100%);
    border: 1px solid rgba(16, 163, 127, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.news-content {
    color: #c5c5d2;
    line-height: 1.7;
    font-size: 1.1rem;
}

.news-content p {
    margin-bottom: 1rem;
}

.news-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.15) 0%, rgba(22, 182, 138, 0.10) 100%);
    color: #10a37f;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 163, 127, 0.3);
    font-weight: 600;
}

/* ========================================
   EVENT ITEMS UND TERMINE
   ======================================== */
.calendar-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-item {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10a37f, transparent);
    transition: left 0.6s ease;
}

.event-item:hover::before {
    left: 100%;
}

.event-item:hover {
    transform: translateY(-6px);
    border-color: #565869;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.event-date {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.15) 0%, rgba(22, 182, 138, 0.08) 100%);
    border: 1px solid rgba(16, 163, 127, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.event-day {
    font-size: 2rem;
    font-weight: bold;
    color: #10a37f;
    display: block;
}

.event-month {
    font-size: 1rem;
    color: #c5c5d2;
    margin-top: 0.5rem;
    font-weight: 500;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 1.5rem;
    color: #10a37f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-time {
    color: #c5c5d2;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.event-description {
    color: #c5c5d2;
    line-height: 1.6;
}

.event-category {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.15) 0%, rgba(22, 182, 138, 0.10) 100%);
    color: #10a37f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(16, 163, 127, 0.3);
    white-space: nowrap;
    font-weight: 600;
}

/* ========================================
   REGULÄRER STUNDENPLAN
   ======================================== */
.regular-schedule {
    margin-top: 3rem;
}

.schedule-grid {
    display: grid;
    gap: 1.5rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid #565869;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 163, 127, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 163, 127, 0.3);
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.05) 0%, rgba(22, 182, 138, 0.02) 100%);
    box-shadow: 
        0 8px 15px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.schedule-item:hover::before {
    opacity: 1;
}

.schedule-day {
    font-weight: bold;
    color: #10a37f;
    min-width: 100px;
    font-size: 1.1rem;
}

.schedule-details {
    flex: 1;
}

.schedule-details strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.schedule-time {
    color: #10a37f;
    font-size: 1rem;
    font-weight: 600;
}

/* ========================================
   MITGLIEDSCHAFTS-KARTEN
   ======================================== */
.membership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.membership-card {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10a37f 0%, #16b68a 50%, #10a37f 100%);
    border-radius: 16px 16px 0 0;
}

.membership-card:hover {
    transform: translateY(-6px);
    border-color: #565869;
    box-shadow: 
        0 25px 30px -5px rgba(0, 0, 0, 0.5),
        0 10px 15px -6px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.membership-title {
    font-size: 1.8rem;
    color: #10a37f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.membership-price {
    font-size: 2.5rem;
    color: #10a37f;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #c5c5d2;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #c5c5d2;
}

.benefits-list li::before {
    content: "✓";
    color: #10a37f;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* ========================================
   GÄSTE-KARTEN
   ======================================== */
.guest-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.guest-card {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10a37f, transparent);
    transition: left 0.6s ease;
}

.guest-card:hover::before {
    left: 100%;
}

.guest-card:hover {
    transform: translateY(-6px);
    border-color: #565869;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.guest-card-icon {
    font-size: 3rem;
    color: #10a37f;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.guest-card-title {
    font-size: 1.8rem;
    color: #10a37f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guest-card-price {
    font-size: 2rem;
    color: #10a37f;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.guest-card-description {
    color: #c5c5d2;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.includes-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.includes-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #c5c5d2;
}

.includes-list li::before {
    content: "✓";
    color: #10a37f;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* ========================================
   REGELN UND ANFORDERUNGEN
   ======================================== */
.requirements-section,
.rules-section {
    margin-bottom: 3rem;
}

.requirements-grid,
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirement-item,
.rule-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid #565869;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.requirement-item::before,
.rule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 163, 127, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.requirement-item:hover,
.rule-item:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 163, 127, 0.3);
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.05) 0%, rgba(22, 182, 138, 0.02) 100%);
    box-shadow: 
        0 8px 15px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.requirement-item:hover::before,
.rule-item:hover::before {
    opacity: 1;
}

.requirement-icon,
.rule-icon {
    font-size: 2rem;
    color: #10a37f;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.requirement-title,
.rule-title {
    font-size: 1.2rem;
    color: #10a37f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.requirement-item p,
.rule-item p {
    color: #c5c5d2;
    line-height: 1.6;
}

/* ========================================
   PROZESS-SCHRITTE
   ======================================== */
.application-process {
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid #565869;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 163, 127, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 163, 127, 0.3);
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.05) 0%, rgba(22, 182, 138, 0.02) 100%);
    box-shadow: 
        0 8px 15px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.15) 0%, rgba(22, 182, 138, 0.08) 100%);
    color: #10a37f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid rgba(16, 163, 127, 0.3);
}

.step-content h4 {
    color: #10a37f;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: #c5c5d2;
    line-height: 1.6;
}

/* ========================================
   KONTAKT-FORMULARE UND KONTAKT-INFO
   ======================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form,
.contact-info {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before,
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10a37f 0%, #16b68a 50%, #10a37f 100%);
    border-radius: 16px 16px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #10a37f;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #565869;
    border-radius: 8px;
    color: #ececec;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(16, 163, 127, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(16, 163, 127, 0.3);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(45deg, #10a37f, #16b68a);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 163, 127, 0.4);
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid #565869;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-method:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 163, 127, 0.3);
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.05) 0%, rgba(22, 182, 138, 0.02) 100%);
}

.contact-icon {
    font-size: 2.5rem;
    color: #10a37f;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact-method-title {
    font-size: 1.3rem;
    color: #10a37f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details {
    color: #c5c5d2;
    line-height: 1.8;
}

/* ========================================
   BUCHUNGS-BEREICH
   ======================================== */
.booking-section {
    margin-bottom: 3rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.booking-method {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid #565869;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.booking-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 163, 127, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-method:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 163, 127, 0.3);
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.05) 0%, rgba(22, 182, 138, 0.02) 100%);
    box-shadow: 
        0 8px 15px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.booking-method:hover::before {
    opacity: 1;
}

.booking-icon {
    font-size: 3rem;
    color: #10a37f;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.booking-title {
    font-size: 1.5rem;
    color: #10a37f;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ========================================
   STANDORT-BEREICH
   ======================================== */
.location-section {
    margin-bottom: 3rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info {
    color: #c5c5d2;
    line-height: 1.6;
}

.location-info p {
    margin-bottom: 1.5rem;
}

.location-info iframe {
    border-radius: 12px;
    border: 1px solid #565869;
    box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.location-details {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.08) 0%, rgba(22, 182, 138, 0.04) 100%);
    border: 1px solid rgba(16, 163, 127, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 
        0 8px 15px -5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.address-info {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.08) 0%, rgba(22, 182, 138, 0.04) 100%);
    border: 1px solid rgba(16, 163, 127, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 
        0 8px 15px -5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.location-details h4,
.address-title {
    color: #10a37f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-details p,
.address-details {
    color: #c5c5d2;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ========================================
   AUSRÜSTUNGS-BEREICH
   ======================================== */
.equipment-section {
    margin-bottom: 3rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.equipment-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid #565869;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.equipment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 163, 127, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 163, 127, 0.3);
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.05) 0%, rgba(22, 182, 138, 0.02) 100%);
    box-shadow: 
        0 12px 20px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.equipment-item:hover::before {
    opacity: 1;
}

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.equipment-title {
    font-size: 1.2rem;
    color: #10a37f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.equipment-item p {
    color: #c5c5d2;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   EINRICHTUNGS-STATISTIKEN
   ======================================== */
.facility-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.facility-description {
    font-size: 1.1rem;
    color: #c5c5d2;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.facility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.1) 0%, rgba(22, 182, 138, 0.05) 100%);
    border: 1px solid rgba(16, 163, 127, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10a37f, transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 163, 127, 0.4);
    box-shadow: 
        0 12px 20px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    color: #10a37f;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #c5c5d2;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   STRECKEN-BEREICHE
   ======================================== */
.track-sections {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.track-section {
    background: linear-gradient(135deg, #343541 0%, #40414f 100%);
    border-radius: 16px;
    border: 1px solid #444654;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.track-section:hover {
    transform: translateY(-6px);
    border-color: #565869;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.track-title {
    font-size: 1.8rem;
    color: #10a37f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.track-description {
    color: #c5c5d2;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ========================================
   BILDER-GALERIE
   ======================================== */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 2px dashed rgba(16, 163, 127, 0.3);
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 163, 127, 0.05), transparent);
    transition: left 0.8s ease;
}

.image-placeholder:hover::before {
    left: 100%;
}

.image-placeholder:hover {
    border-color: rgba(16, 163, 127, 0.5);
    background: linear-gradient(135deg, rgba(16, 163, 127, 0.08) 0%, rgba(22, 182, 138, 0.03) 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 15px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.placeholder-icon {
    font-size: 3rem;
    color: #10a37f;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.placeholder-text {
    color: #10a37f;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.placeholder-subtitle {
    color: #c5c5d2;
    font-size: 0.85rem;
    font-weight: 400;
}

/* ========================================
   INTRO-BEREICH
   ======================================== */
.intro-section {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #c5c5d2;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ========================================
   BUTTONS UND CALL-TO-ACTION
   ======================================== */
.cta-button {
    background: linear-gradient(45deg, #10a37f, #16b68a);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 163, 127, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(52, 53, 65, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid #444654;
    }

    .nav-menu.active {
        display: flex;
    }

    .page-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .card {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .membership-types {
        grid-template-columns: 1fr;
    }

    .guest-options {
        grid-template-columns: 1fr;
    }

    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .event-date {
        justify-self: center;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .requirements-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .facility-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .image-placeholder {
        height: 150px;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-title {
        font-size: 1.5rem;
    }

    .facility-overview {
        padding: 2rem;
    }

    .track-section {
        padding: 2rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #343541;
    border-top: 1px solid #444654;
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #8e8ea0;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-content p:first-child {
    font-weight: 600;
    color: #c5c5d2;
}

/* ========================================
   ACCESSIBILITY - REDUZIERTE BEWEGUNGEN
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}