/* Neon Cyberpunk Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

:root {
    --primary-color: #00FFFF;
    --secondary-color: #FF00FF;
    --accent-color: #00FF00;
    --highlight-color: #FFFF00;
    --bg-dark: #000000;
    --bg-grey: #1a1a1a;
    --text-color: #ffffff;
}

body {
    font-family: 'Orbitron', monospace;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-grey) 100%);
    color: var(--text-color);
    line-height: 1.6;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1001;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-text {
    color: var(--text-color);
    font-size: 0.9rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.cookie-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--primary-color);
    font-family: 'Orbitron', monospace;
}

.cookie-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 25px var(--secondary-color);
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-color);
    text-shadow: none;
}

.nav-center {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
}

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

.auth-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--secondary-color);
    font-family: 'Orbitron', monospace;
}

.auth-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--secondary-color);
    text-shadow: none;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-link {
    padding: 0.3rem 0.6rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.lang-link:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-color);
    text-shadow: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-grey) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 0 30px var(--primary-color);
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-shadow: 0 0 20px var(--secondary-color);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--primary-color);
    border-color: var(--secondary-color);
}

.feature-card h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--accent-color);
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.cta-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    font-family: 'Orbitron', monospace;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-color);
}

.cta-button.secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--secondary-color);
}

/* Memberships Section */
.memberships-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--bg-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    text-shadow: 0 0 30px var(--primary-color);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.membership-card {
    background: rgba(255, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--secondary-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.membership-card.featured {
    border: 2px solid var(--highlight-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--highlight-color);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px var(--secondary-color);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 50px var(--highlight-color);
}

.membership-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--accent-color);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features li {
    color: var(--text-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.membership-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 80%;
    box-shadow: 0 0 20px var(--accent-color);
    font-family: 'Orbitron', monospace;
}

.membership-btn:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--highlight-color);
}

/* Clubs Section */
.clubs-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-grey) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.club-card {
    background: rgba(0, 255, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px var(--accent-color);
}

.club-image {
    height: 200px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.2) hue-rotate(180deg);
}

.club-card:hover .club-image img {
    transform: scale(1.1);
}

.club-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem;
    text-shadow: 0 0 15px var(--primary-color);
}

.club-address, .club-hours {
    color: var(--text-color);
    margin: 0.5rem 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.club-hours {
    color: var(--highlight-color);
    font-weight: bold;
    text-shadow: 0 0 10px var(--highlight-color);
}

.club-features {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255, 255, 0, 0.2);
    color: var(--highlight-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--highlight-color);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

/* Trainers Section */
.trainers-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-grey) 0%, var(--bg-dark) 100%);
}

.gym-section {
    margin-bottom: 4rem;
}

.gym-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 0 0 25px var(--secondary-color);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trainer-card {
    background: rgba(255, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--secondary-color);
}

.trainer-image {
    margin-bottom: 1rem;
}

.trainer-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
    box-shadow: 0 0 20px var(--primary-color);
}

.trainer-name {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.trainer-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-btn {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--accent-color);
    font-family: 'Orbitron', monospace;
}

.contact-btn:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--highlight-color);
}

.email-btn {
    background: var(--secondary-color);
    box-shadow: 0 0 15px var(--secondary-color);
}

.email-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 0 25px var(--primary-color);
}

.phone-btn {
    background: var(--highlight-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--highlight-color);
}

.phone-btn:hover {
    background: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 2rem;
    text-align: center;
    color: var(--text-color);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color);
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 25px;
    box-shadow: 0 0 30px var(--primary-color);
    z-index: 1002;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: var(--accent-color);
    box-shadow: 0 0 30px var(--accent-color);
}

.notification.info {
    background: var(--secondary-color);
    box-shadow: 0 0 30px var(--secondary-color);
}

.notification.warning {
    background: var(--highlight-color);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--highlight-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .membership-grid,
    .clubs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .trainer-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
}

