/* Arctic White Theme */
:root {
    --primary-color: #f8f9fa;
    --secondary-color: #e9ecef;
    --accent-color: #6c757d;
    --text-color: #212529;
    --highlight-color: #007bff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    line-height: 1.6;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    z-index: 1001;
    border-top: 2px solid var(--highlight-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;
}

.cookie-btn {
    background: var(--highlight-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    background: rgba(248, 249, 250, 0.95);
    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;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.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;
}

.nav-link:hover,
.nav-link.active {
    background: var(--highlight-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

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

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

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.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(--highlight-color);
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: var(--highlight-color);
    color: white;
}

.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;
}

.lang-link:hover {
    background: var(--secondary-color);
}

/* 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, #ffffff 0%, #f8f9fa 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: var(--highlight-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.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(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.feature-card h3 {
    color: var(--highlight-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--accent-color);
    line-height: 1.6;
}

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

.cta-button {
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--highlight-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

.cta-button.secondary:hover {
    background: var(--highlight-color);
    color: white;
}

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

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-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, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 123, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.membership-card h3 {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.price span {
    font-size: 1rem;
    color: var(--accent-color);
}

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

.features li {
    color: var(--accent-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.membership-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 80%;
}

.membership-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Clubs Section */
.clubs-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 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(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

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

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.1) contrast(0.9) saturate(0.8);
}

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

.club-card h3 {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin: 1rem;
}

.club-address, .club-hours {
    color: var(--accent-color);
    margin: 0.5rem 1rem;
}

.club-hours {
    color: var(--highlight-color);
    font-weight: bold;
}

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

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

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

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

.gym-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-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, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 123, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

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

.trainer-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--highlight-color);
    filter: brightness(1.1) contrast(0.9);
}

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

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

.contact-btn {
    padding: 0.5rem 1rem;
    background: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.email-btn {
    background: #28a745;
}

.email-btn:hover {
    background: #1e7e34;
}

.phone-btn {
    background: #17a2b8;
}

.phone-btn:hover {
    background: #117a8b;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 2rem;
    text-align: center;
    color: var(--accent-color);
    border-top: 2px solid var(--highlight-color);
}

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

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

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--highlight-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    z-index: 1002;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

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

.notification.success {
    background: #28a745;
}

.notification.info {
    background: #17a2b8;
}

.notification.warning {
    background: #ffc107;
    color: #212529;
}

/* 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;
    }
}

