/* Modern Design System with CSS Variables */
@font-face {
    font-family: 'Futura Bk BT';
    src: url('../fonts/Futura-Bk-BT.woff2') format('woff2'),
         url('../fonts/Futura-Bk-BT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura XBlkCnIt BT';
    src: url('../fonts/Futura-XBlkCnIt-BT.woff2') format('woff2'),
         url('../fonts/Futura-XBlkCnIt-BT.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

:root {
    --primary-color: #ffc3cb; /* Light Pink */
    --primary-dark: #e0acb3;
    --secondary-color: #000000; /* Pure Black */
    --text-color: #1a1a1a;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Futura Bk BT', 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

.section {
    padding: 8rem 0;
}

.grid {
    display: grid;
    gap: 3rem;
}

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

.bg-light {
    background: var(--light-bg);
}

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

.text-white {
    color: var(--white);
}

h1, h2, h3 {
    margin-bottom: 1.5rem;
    font-family: 'Futura XBlkCnIt BT', 'Playfair Display', serif;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.responsive-img-styled {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.club-grid, .grid-2-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

@media (max-width: 992px) {
    .club-grid, .grid-2-col {
        grid-template-columns: 1fr;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

/* Header & Nav with Glassmorphism */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    height: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Futura XBlkCnIt BT', sans-serif;
}

.logo span {
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Futura XBlkCnIt BT', sans-serif;
}

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

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

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 6px;
    transition: var(--transition);
}

/* Hero Section - Slider style */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 2.5s ease-in-out;
    background-attachment: fixed;
}

.slide.active {
    opacity: 1;
}

/* Slider Arrows Style */
.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 195, 203, 0.7); /* New Pink with transparency */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.arrow:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 195, 203, 0.3);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 195, 203, 0.4);
}

/* About Section */
.about .grid {
    grid-template-columns: 1fr;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-image {
    width: 100%;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Services Cards */
.cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Courses */
.courses .grid {
    grid-template-columns: 1fr 1fr;
}

.course-item {
    padding: 3rem;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-left: 8px solid var(--primary-color);
}

/* Events */
.events-img-container {
    margin-top: 4rem;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.events-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact */
.contact .grid {
    grid-template-columns: 1fr 1fr;
}

.contact-info div {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--gray-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    background: var(--light-bg);
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

/* Membership Section */
.membership-container {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
    gap: 3rem;
}

.membership-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-top: 8px solid var(--primary-color);
}

.form-section-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section-title i {
    color: var(--primary-color);
}

.membership-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    transition: var(--transition);
    pointer-events: none;
}

.input-with-icon:focus-within i {
    color: var(--primary-color);
}

.membership-form input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    background: var(--light-bg);
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.membership-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-bottom: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-top: 8px solid var(--primary-color);
}

.payment-card h3 {
    margin-bottom: 1rem;
}

.payment-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Futura XBlkCnIt BT', sans-serif;
}

.payment-card .description {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .membership-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .membership-form-card {
        padding: 1.5rem;
    }

    .membership-form .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Footer */
footer {
    padding: 3rem 0;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    display: inline-block;
}

/* Animations - Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for grid items */
.grid > .reveal:nth-child(2) { transition-delay: 0.2s; }
.grid > .reveal:nth-child(3) { transition-delay: 0.4s; }

/* Responsive & Mobile Optimization */
@media (max-width: 992px) {
    .about .grid, .courses .grid, .contact .grid, .club-teaser .grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 4rem 0; /* Reduced padding for mobile */
    }
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
    }

    .nav-links li {
        margin: 1.2rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-active .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links li:nth-child(7) { transition-delay: 0.7s; }

    .nav-links a {
        color: var(--white);
        font-size: 1.8rem;
        font-family: 'Futura XBlkCnIt BT', serif;
    }

    .burger {
        display: block;
        padding: 10px;
    }

    .nav-active .nav-links {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--white);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--white);
    }

    /* Hero Slider Arrows for Mobile */
    .hero {
        height: 50vh;
    }

    .slide {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .slider-arrows {
        padding: 0 1rem;
    }

    .arrow {
        width: 40px;
        height: 40px;
        background: rgba(255, 195, 203, 0.5);
    }

    .hero h1 {
        margin-bottom: 1rem;
    }

    .hero p {
        margin-bottom: 2rem;
    }

    /* Contact Form Mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info div {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Section Headings Mobile */
    h2 {
        margin-bottom: 2.5rem;
    }

    /* Cards Mobile */
    .card {
        padding: 2.5rem 1.5rem;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .btn:hover, .card:hover, .arrow:hover {
        transform: none;
    }
    
    .nav-links a:hover::after {
        width: 0;
    }
}

/* Map Section */
.map-section {
    line-height: 0;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.map-section iframe {
    transition: var(--transition);
}

.map-section iframe:hover {
    filter: none !important;
}
