/* Falkensee-Club - Responsive Styles */
/* Mobile-First Approach */

/* =====================================================
   TABLET (max-width: 1024px)
   ===================================================== */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   MOBILE (max-width: 768px)
   ===================================================== */
@media (max-width: 768px) {
    /* Typography */
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation */
    .main-nav {
        padding: 1rem 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        display: none;
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: 3rem 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Features */
    .features {
        padding: 2rem 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Content Grid */
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   SMALL MOBILE (max-width: 480px)
   ===================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .main-nav,
    .mobile-toggle,
    .btn,
    .main-footer {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    a {
        text-decoration: underline;
    }
}
