:root {
    --primary: #ff6b35;
    --secondary: #1a1a2e;
    --accent: #f7c59f;
    --light: #fefefe;
    --dark: #0f0f1a;
    --text: #222;
    --text-light: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.98);
    padding: 10px 0;
}

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

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.85) 0%, rgba(255, 107, 53, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.2s both;
}

.location {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: #ff8c5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.section {
    padding: 100px 0;
}

.bg-dark {
    background: var(--secondary);
    color: var(--text-light);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--secondary);
}

.bg-dark .section-title {
    color: var(--text-light);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-text {
    font-size: 1.2rem;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--primary);
}

.ritual {
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.training-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.training-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gallery .ncl-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.club-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.club-card {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bg-dark .club-card {
    background: rgba(255, 255, 255, 0.05);
}

.club-logo {
    height: 80px;
    margin-bottom: 20px;
}

.club-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.bg-dark .club-card h3 {
    color: var(--text-light);
}

.coach, .team {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.coach strong, .team strong {
    color: var(--primary);
}

.social-link, .club-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover, .club-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-link-small {
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link-small:hover {
    color: var(--secondary);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ranking-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
    padding: 30px 50px;
    border-radius: 10px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.rank-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--light);
}

.rank-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.training-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.training-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.training-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.training-card a {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.training-card a:hover {
    color: var(--primary);
}

.training-card p {
    opacity: 0.7;
}

.community-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.ncl-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.community-text {
    text-align: left;
}

.community-text h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.bg-dark .community-text h3 {
    color: var(--text-light);
}

.chapter {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.instagram-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.instagram-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #ff8c5a;
}

.footer {
    background: var(--dark);
    color: var(--text-light);
    text-align: center;
    padding: 30px 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-grid {
        grid-template-columns: 1fr;
    }

    .community-content {
        flex-direction: column;
        text-align: center;
    }

    .club-grid {
        flex-direction: column;
        align-items: center;
    }
}