/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 0.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.nav-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    transition: all 0.3s ease;
    height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-login {
    background: #e74c3c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-login:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-2px);
}

.nav-login i {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('images/hero-background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #1a1a1a;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
}

.section-transparent {
    background: transparent;
    position: relative;
    z-index: 1;
}

.section-transparent .content-text h3 {
    color: #2c3e50;
}

.section-transparent .content-text p {
    color: #333;
}

.section-transparent .section-title {
    color: #2c3e50;
    text-shadow: none;
}

.section-transparent .section-title::after {
    background: #e74c3c;
}

/* Masonry Gallery */
.masonry-gallery {
    margin: 3rem 0;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
    max-height: calc(3 * 300px + 2 * 1.5rem); /* 3 Reihen + Gaps */
    overflow: hidden;
}

.masonry-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1a1a1a;
    height: 250px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
    opacity: 1;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay h3 {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.masonry-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.masonry-actions {
    margin-top: 1rem;
    text-align: right;
}

.masonry-btn {
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid #e74c3c;
    color: #e74c3c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.masonry-btn:hover {
    background: #e74c3c;
    color: #fff;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, auto);
    }
}

@media (max-width: 900px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, auto);
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, auto);
        max-height: none;
        overflow: visible;
    }
    
    .masonry-item {
        margin-bottom: 1rem;
    }
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.philosophy-item p {
    color: #555;
    line-height: 1.8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay-light {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-overlay-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.image-overlay-light img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Specific styling for logo in Jiu Jitsu section */
#jiu-jitsu .image-overlay-light img {
    width: 35%;
    margin: 0 auto;
    display: block;
}

/* Text color for Jiu Jitsu section (transparent background) */
#jiu-jitsu .content-text p {
    color: #333 !important;
}

/* Text color for Über uns section (dark background) */
#uber-uns .content-text h3 {
    color: #fff !important;
}

#uber-uns .content-text p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Text color for Training section (transparent background) */
#training .training-intro p {
    color: #333 !important;
}

#training .method-card h3 {
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

#training .method-card i {
    color: #e74c3c !important;
}

/* Text color for Was dich bei uns erwartet section (dark background) */
#was-dich-erwartet .benefit-item p {
    color: #fff !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

#was-dich-erwartet .benefit-item i {
    color: #e74c3c !important;
}

/* Info Grid for Mitglied werden Section */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Styles */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header h3 {
    margin: 0;
    font-weight: 600;
    text-align: left;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: #e74c3c;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.accordion-content .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-content .legal-link {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion-content .legal-link:hover {
    color: #fff;
}

.info-grid .info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-grid .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-grid .info-box i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.info-grid .info-box h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-grid .info-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Method Grid */
.training-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.method-card p {
    color: #555;
    line-height: 1.6;
}

.scientific-content {
    max-width: 800px;
    margin: 0 auto;
}

.scientific-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.scientific-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.scientific-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.scientific-item:hover {
    transform: translateY(-5px);
}

.scientific-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.scientific-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Ecological Dynamics */
.eco-content {
    max-width: 800px;
    margin: 0 auto;
}

.eco-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

.eco-points {
    display: grid;
    gap: 2rem;
}

.eco-point {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.eco-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.eco-point p {
    color: #555;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    color: #e74c3c;
    font-size: 1.5rem;
}

.benefit-item span {
    font-weight: 500;
    font-size: 1.05rem;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
    align-items: center;
}

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    margin: 0 0.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.3);
    z-index: 10;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.carousel-btn {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
    color: #e74c3c;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: #e74c3c;
    color: #fff;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e74c3c;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #e74c3c;
}

.indicator:hover {
    background: rgba(231, 76, 60, 0.3);
}

@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        margin: 0 1rem;
        padding: 0 0.5rem;
    }
    
    .carousel-track {
        height: 400px;
    }
    
    .carousel-item {
        width: 250px;
        height: 300px;
        margin: 0 0.5rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #e74c3c;
    color: #e74c3c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1001;
}

.lightbox-close:hover {
    background: #e74c3c;
    color: #fff;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
    color: #e74c3c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: #e74c3c;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 90%;
        max-height: 90%;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -50px;
        right: 0;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }
    
    #lightboxImage {
        max-height: 70vh;
    }
}

/* Hide custom cursor on password screen */
.password-protection .custom-cursor {
    display: none !important;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.3);
}

/* Hide default cursor when custom cursor is active */
@media (pointer: fine) {
    body {
        cursor: none;
    }
    
    a, button, .masonry-item, .method-card, .benefit-item {
        cursor: none;
    }
}

/* Counter Animation */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    display: inline-block;
}

.counter-label {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

/* Stagger List Animation */
.stagger-list {
    list-style: none;
    padding: 0;
}

.stagger-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-list li.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Stagger Delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }
.stagger-9 { transition-delay: 0.45s; }
.stagger-10 { transition-delay: 0.5s; }

/* Counter Pulse Effect */
@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.counter.pulse {
    animation: counterPulse 0.3s ease;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.stat-item .counter {
    font-size: 4rem;
    color: #e74c3c;
    font-weight: 800;
}

/* Mobile: Disable custom cursor */
@media (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
    
    body, a, button, .masonry-item, .method-card, .benefit-item {
        cursor: auto;
    }
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-50px);
}

.slide-left.animated {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(50px);
}

.slide-right.animated {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.animated {
    transform: scale(1);
}

.rotate-in {
    transform: rotate(-5deg) scale(0.9);
    opacity: 0;
}

.rotate-in.animated {
    transform: rotate(0) scale(1);
    opacity: 1;
}

/* Stagger Animation Delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Hover Animationen */
.method-card {
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
}

.benefit-item {
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(231, 76, 60, 0.1);
}

.trainer-item {
    transition: transform 0.4s ease;
}

.trainer-item:hover {
    transform: scale(1.02);
}

.info-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Parallax Effekt für Hero */
.hero {
    background-attachment: fixed;
}

/* Pulse Animation für CTA Buttons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button:hover {
    animation: pulse 1s infinite;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .method-card:hover,
    .benefit-item:hover,
    .trainer-item:hover,
    .info-box:hover {
        transform: none;
    }
}
/* Über uns Section Animations */
#uber-uns .content-image {
    opacity: 0;
    transition: opacity 1.5s ease;
}

#uber-uns .content-image.animated {
    opacity: 1;
}

#uber-uns .content-image img {
    transition: transform 0.8s ease;
}

#uber-uns .content-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#uber-uns .content-text.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    #uber-uns .content-text,
    #uber-uns .content-image {
        opacity: 1;
        transform: none;
    }
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.membership-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.membership-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.info-box h4 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.membership-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.membership-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Supporters */
.supporter-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 auto 3rem;
    max-width: 800px;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.supporter-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.supporter-item:hover {
    transform: translateY(-5px);
}

.supporter-logo {
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.supporter-item:hover .supporter-logo {
    filter: grayscale(0%);
}

.supporter-logo img {
    height: 80px;
    object-fit: contain;
}

.supporter-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.supporter-item p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.supporter-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.supporter-link:hover {
    color: #c0392b;
}

/* Testimonials Section - Infinite Carousel */
.testimonials-carousel-wrapper {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.testimonials-carousel-wrapper::before,
.testimonials-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.testimonials-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.1);
    min-width: 300px;
    max-width: 350px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #999;
}

/* Member Login */
.member-login {
    max-width: 500px;
    margin: 0 auto;
}

.login-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.login-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.login-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form input {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.login-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-button {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-button:hover {
    background: #c0392b;
}

.login-help {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form input,
.form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #999;
}

.map-container {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #c0392b;
    transform: translateY(-3px);
    color: #fff;
}

.social-link i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Impressum */
.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.legal-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.legal-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #c0392b;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #e74c3c;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 20px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #e74c3c;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Trainer Section */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trainer-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trainer-item:hover {
    transform: translateY(-5px);
}

.trainer-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainer-info {
    padding: 1.5rem;
}

.trainer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.trainer-info h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e74c3c;
    font-weight: 500;
}

.trainer-info p {
    color: #555;
    line-height: 1.6;
}

/* Gruppenfoto Section */
.team-photo {
    text-align: center;
    margin-top: 3rem;
}

.team-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.photo-caption {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Erfahrung Section */
.experience-content {
    text-align: center;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.experience-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* FAQ Section - Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #e74c3c;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: #e74c3c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding: 0 2rem 1.5rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #e74c3c, transparent);
    margin-top: 3rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
    }
    
    .hero {
        background-attachment: scroll !important;
        background-image: url('images/hero-background.jpg') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        min-height: 100vh;
    }
    
    /* Fix für Über uns Section */
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .content-text {
        order: 2;
    }
    
    .content-image {
        order: 1;
    }
    
    .content-text h3 {
        font-size: 1.3rem !important;
        margin: 1.5rem 0 0.8rem !important;
    }
    
    .content-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Fix für Mitglied werden Section */
    .membership-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .membership-info h3 {
        font-size: 1.5rem !important;
    }
    
    .membership-info p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .info-box {
        padding: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .info-box h4 {
        font-size: 1.1rem !important;
    }
    
    .info-box p {
        font-size: 0.95rem !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .scientific-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .eco-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .supporters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    /* Mobile Fixes für alle Sektionen */
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .content-text {
        order: 2;
    }
    
    .content-image {
        order: 1;
    }
    
    /* Für Jiu Jitsu Section: Bild links, Text rechts auf Desktop */
    #jiu-jitsu .content-text {
        order: 2;
    }
    
    #jiu-jitsu .content-image {
        order: 1;
    }
    
    /* Mobile logo sizing */
    #jiu-jitsu .image-overlay-light img {
        width: 35% !important;
        margin: 0 auto;
        display: block;
    }
    
    /* Text color for Jiu Jitsu section on mobile */
    #jiu-jitsu .content-text p {
        color: #333 !important;
    }
    
    /* Text color for Über uns section on mobile */
    #uber-uns .content-text h3 {
        color: #fff !important;
    }
    
    #uber-uns .content-text p {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* Text color for Training section on mobile */
    #training .training-intro p {
        color: #333 !important;
    }
    
    #training .method-card h3 {
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    #training .method-card i {
        color: #e74c3c !important;
    }
    
    /* Text color for Was dich bei uns erwartet section on mobile */
    #was-dich-erwartet .benefit-item p {
        color: #fff !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    #was-dich-erwartet .benefit-item i {
        color: #e74c3c !important;
    }
    
    .content-text h3 {
        font-size: 1.3rem !important;
        margin: 1.5rem 0 0.8rem !important;
        color: #fff !important;
    }
    
    .content-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .membership-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .membership-info h3 {
        font-size: 1.5rem !important;
    }
    
    .membership-info p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .info-box {
        padding: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .info-box h4 {
        font-size: 1.1rem !important;
    }
    
    .info-box p {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Mobile logo sizing for very small screens */
    #jiu-jitsu .image-overlay-light img {
        width: 35% !important;
        margin: 0 auto;
        display: block;
    }
    
    /* Info Grid mobile responsiveness */
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .info-grid .info-box {
        padding: 1.2rem !important;
    }
    
    .info-grid .info-box i {
        font-size: 2rem !important;
    }
    
    .info-grid .info-box h4 {
        font-size: 1.1rem !important;
    }
    
    .info-grid .info-box p {
        font-size: 0.95rem !important;
    }
    
    /* Text color for Jiu Jitsu section on very small mobile */
    #jiu-jitsu .content-text p {
        color: #333 !important;
    }
    
    /* Text color for Über uns section on very small mobile */
    #uber-uns .content-text h3 {
        color: #fff !important;
    }
    
    #uber-uns .content-text p {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* Text color for Training section on very small mobile */
    #training .training-intro p {
        color: #333 !important;
    }
    
    #training .method-card h3 {
        color: #2c3e50 !important;
        font-weight: 600 !important;
    }
    
    #training .method-card i {
        color: #e74c3c !important;
    }
    
    /* Text color for Was dich bei uns erwartet section on very small mobile */
    #was-dich-erwartet .benefit-item p {
        color: #fff !important;
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    #was-dich-erwartet .benefit-item i {
        color: #e74c3c !important;
    }
    
    .content-text h3 {
        font-size: 1.2rem !important;
        margin: 1rem 0 0.5rem !important;
        color: #fff !important;
    }
    
    .content-text p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .membership-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
        padding: 0 10px;
    }
    
    .membership-info h3 {
        font-size: 1.3rem !important;
    }
    
    .membership-info p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    .info-box {
        padding: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .info-box h4 {
        font-size: 1rem !important;
    }
    
    .info-box p {
        font-size: 0.9rem !important;
    }
}
