/* Hausruck Camps Landing Page - Pure HTML/CSS/JS Version */

/* Foundation Colors - Green, Orange, White Theme */
:root {
    /* Backgrounds */
    --bg-page: #FFFFFF;
    /* Pure white main background */
    --bg-card: #FAFAFF;
    /* Card backgrounds */
    --bg-subtle: #F7F7F7;
    /* Light section backgrounds */
    --bg-section: #F9F9F9;
    /* Subtle section backgrounds */

    /* Text Colors */
    --text-primary: #06763b;
    /* Dark green for main text */
    --text-secondary: #088a44;
    /* Medium green for supporting text */
    --text-light: #666666;
    /* Gray for captions */

    /* Brand Colors - Green and Orange Only for Buttons/Accents */
    --brand-primary: #06763b;
    /* Forest green for primary actions */
    --brand-secondary: #fe700c;
    /* Dark orange for secondary actions */
    --brand-hover: #0ba352;
    /* Darker green for hover states */
    --brand-orange-hover: #E67E00;
    /* Darker orange for hover */

    /* Borders */
    --border-light: #E5E5E5;
    /* Subtle separators */
    --border-medium: #DDDDDD;
    /* Standard borders */
    --border-strong: #CCCCCC;
    /* Emphasized borders */

    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-small: 16px;
    --spacing-medium: 24px;
    --spacing-large: 32px;
    --spacing-xl: 48px;
    --spacing-giant: 64px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-page);
}

/* Typography System */
.display-large {
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--text-primary);
    margin-bottom: var(--spacing-medium);
}

.display-medium {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.heading-1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-medium);
}

.heading-2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--spacing-small);
}

.heading-3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--spacing-small);
}

.body-large {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.body-medium {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Container System */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-small);
}

/* Header - Network Style */
.network-header {
    position: fixed;
    top: var(--spacing-large);
    width: 100%;
    z-index: 99999;
    padding: 0 var(--spacing-small);
}

.nav-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    /* wichtig für das Logo */
    background: var(--text-primary);
    border-radius: 25px;
    padding: var(--spacing-xs) var(--spacing-small);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(26, 93, 26, 0.25);
}

.network-logo {
    position: absolute;
    top: -25px;
    /* oben überstehen */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: white;
    /* optional, wenn du einen Hintergrund willst */
    padding: 8px;
    /* optional, für Abstand */
    border-radius: 12px;
    /* optional, schöner Effekt */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* optional, Schatten */
}

.network-logo img {
    width: 120px;
    /* größer als vorher */
    height: 85px;
    /* größer, damit es über und unter die Leiste hinausgeht */
    object-fit: contain;
}

.network-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-medium);
}

.network-nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-small);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.network-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: var(--spacing-small);
    right: var(--spacing-small);
    background: var(--text-primary);
    border-radius: 25px;
    padding: var(--spacing-medium);
    z-index: 99998;
    flex-direction: column;
    gap: var(--spacing-small);
    box-shadow: 0 4px 16px rgba(26, 93, 26, 0.25);
}

.mobile-menu.show {
    display: flex;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: var(--spacing-small);
    border-radius: 20px;
    transition: all 0.2s ease;
    text-align: center;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Button System - Pill Shaped */
.btn-primary {
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 25px;
    /* Pill shape */
    padding: 14px 32px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 48px;
    line-height: 1.2;
}

.btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-secondary);
    border: 2px solid var(--brand-secondary);
    border-radius: 25px;
    /* Pill shape */
    padding: 12px 30px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 48px;
}

.btn-secondary:hover {
    background: var(--brand-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.25);
}

.btn-cta {
    border-radius: 33px;
    /* Larger radius for prominent CTAs */
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    background: var(--brand-primary);
    color: white;
    min-height: 54px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--brand-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(34, 139, 34, 0.25);
}

/* Network Cards - Exact Style */
.network-card {
    background: var(--bg-card);
    border-radius: 32px;
    padding: var(--spacing-large);
    box-shadow: 0 2px 8px rgba(26, 93, 26, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.network-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 93, 26, 0.25);
}

.network-card-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.network-card-content {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Grid System */
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-large);
    padding: var(--spacing-large) 0;
    max-width: 1440px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background-image: url('/assets/camp-foto.webp');
    background-size: cover;
    background-position: center;
    padding: calc(var(--spacing-giant) * 2) 0 var(--spacing-giant);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section>.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 64px;
    border-radius: 25px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content .display-large {
    color: var(--text-primary);
    text-shadow: none;
}

.hero-description {
    margin-bottom: var(--spacing-large);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-large);
    margin: var(--spacing-large) 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: var(--spacing-xs);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-medium);
    justify-content: center;
    margin-top: var(--spacing-large);
    flex-wrap: wrap;
}

/* Sections */
.about-section,
.programs-section,
.testimonials-section,
.contact-section {
    padding: var(--spacing-giant) 0;
    background: var(--bg-page);
}

.programs-section {
    background: var(--bg-subtle);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

/* Feature Icons */
.feature-icon {
    color: var(--brand-primary);
    margin-bottom: var(--spacing-medium);
}

.feature-icon i {
    width: 32px;
    height: 32px;
}

/* Coaching Section */
.coaching-section {
    margin-top: var(--spacing-giant);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-large);
    margin-top: var(--spacing-large);
}

.coach-card {
    text-align: center;
}

.coach-title {
    color: var(--brand-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-small);
}

.coach-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
    margin-top: var(--spacing-small);
}

.certification-badge {
    background: var(--brand-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-large);
    margin-top: var(--spacing-large);
}

.program-card {
    position: relative;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-medium);
}

.program-age {
    background: var(--brand-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.program-details {
    margin-bottom: var(--spacing-medium);
}

.program-price {
    margin-bottom: var(--spacing-small);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-primary);
}

.price-period {
    color: var(--text-light);
    font-size: 14px;
}

.program-schedule {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.program-schedule i {
    width: 16px;
    height: 16px;
}

.program-features {
    list-style: none;
    margin-bottom: var(--spacing-medium);
}

.program-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
}

.program-features li:before {
    content: "⚽";
    margin-right: var(--spacing-xs);
}

.program-btn {
    width: 100%;
    margin-top: auto;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-large);
    margin-top: var(--spacing-large);
}

.testimonial-card {
    text-align: center;
}

.stars {
    color: var(--brand-secondary);
    margin-bottom: var(--spacing-medium);
    display: flex;
    justify-content: center;
    gap: 2px;
}

.stars i {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: var(--spacing-medium);
    color: var(--text-secondary);
}

.testimonial-author {
    color: var(--text-primary);
    font-weight: 600;
}

.author-role {
    display: block;
    color: var(--text-light);
    font-weight: 400;
    font-size: 14px;
    margin-top: 4px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-giant);
    margin-top: var(--spacing-large);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-medium);
}

.contact-item i {
    color: var(--brand-primary);
    margin-top: 4px;
    width: 24px;
    height: 24px;
}

.contact-form {
    padding: var(--spacing-large);
}

.form-group {
    margin-bottom: var(--spacing-medium);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-giant) 0 var(--spacing-medium);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-giant);
    margin-bottom: var(--spacing-large);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-medium);
}

.footer-links {
    display: flex;
    gap: var(--spacing-giant);
}

.footer-section h4 {
    margin-bottom: var(--spacing-medium);
    color: var(--brand-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-medium);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animation System */
.animated {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animated.fadeIn {
    opacity: 1;
    transform: translateY(0);
}

.animated.delay-200ms {
    transition-delay: 200ms;
}

.animated.delay-500ms {
    transition-delay: 500ms;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Design */

@media (max-width: 900px) {
    .network-logo img {
        width: 80px;
        height: 57px;
    }

    .network-nav {
        gap: var(--spacing-xs);
    }

    h2,
    h3,
    p {
        text-align: center;
    }
}


@media (max-width: 781px) {
    .network-logo {
        top: 10px;
    }

    .network-header {
        top: 0;
        position: fixed;
        padding: 0;
    }

    .hero-section>.container {
        border-radius: 0px;
    }

    .nav-wrapper {
        border-radius: 0px;
        padding: var(--spacing-small);
    }

    .network-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        padding-top: calc(var(--spacing-giant) + 60px);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-medium);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-section>.container {
        padding: 0 48px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-large);
    }

    .footer>.container {
        padding: 0 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-large);
    }

    .footer-links {
        justify-content: space-between;
    }

    .modal-content {
        margin-top: 120px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-small);
    }
}