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

html {
    scroll-behavior: smooth;
}

:root {
    --pure-black: #000000;
    --deep-purple: #5B21B6;
    --pure-white: #FFFFFF;
    --dark-gray: #1a1a1a;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--pure-white);
    background-color: var(--pure-black);
    -webkit-tap-highlight-color: rgba(91, 33, 182, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background-color: var(--dark-gray);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    

    border-bottom: 1px solid var(--deep-purple);}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--deep-purple);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.5s ease, border-bottom 0.5s ease, padding-bottom 0.5s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-menu a:hover {
    color: var(--deep-purple);
}

.nav-menu a.active {
    color: var(--deep-purple);
    border-bottom: 2px solid var(--deep-purple);
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    background: var(--dark-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--deep-purple);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--deep-purple);
    color: var(--pure-white);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid var(--deep-purple);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--deep-purple);
    color: var(--deep-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(91, 33, 182, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--deep-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--deep-purple);
}

/* About Section */
.about {
    background-color: var(--pure-black);
}

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

.about-text h3 {
    color: var(--deep-purple);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--pure-white);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    background-color: var(--dark-gray);
    padding: 1.5rem;
    border-left: 4px solid var(--deep-purple);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateX(10px);
    border-left-color: var(--deep-purple);
}

.feature h4 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature p {
    color: var(--pure-white);
}

/* Facilities Section */
.facilities {
    background-color: var(--dark-gray);
}

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

.facility-card {
    background-color: var(--pure-black);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--dark-gray);
    transition: all 0.3s;
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: var(--deep-purple);
    box-shadow: 0 15px 30px rgba(91, 33, 182, 0.25);
}

.facility-image {
    width: 100%;
    height: 250px;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: var(--deep-purple);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--deep-purple);
    border-radius: 5px;
    margin: 1rem;
}

.facility-info {
    padding: 2rem;
    text-align: center;
}

.facility-info h3 {
    color: var(--deep-purple);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.facility-info p {
    color: var(--pure-white);
    line-height: 1.6;
}

/* Membership Section */
.membership {
    background-color: var(--pure-black);
}

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

.membership-card {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--dark-gray);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.membership-card.featured {
    border-color: var(--deep-purple);
    transform: scale(1.05);
    background: var(--pure-black);
}

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

.membership-card h3 {
    color: var(--deep-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    color: var(--deep-purple);
    font-weight: bold;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1.2rem;
    color: var(--pure-white);
}

.membership-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.membership-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
}

.membership-card ul li:before {
    content: '✓ ';
    color: var(--deep-purple);
    font-weight: bold;
    margin-right: 0.5rem;
}

.join-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--deep-purple);
    color: var(--pure-white);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: auto;
}

.join-button:hover {
    background-color: var(--deep-purple);
    color: var(--dark-gray);
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--pure-black);
}

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

.testimonial-card {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--dark-gray);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--deep-purple);
    box-shadow: 0 10px 25px rgba(91, 33, 182, 0.25);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--deep-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-gray);
}

.reviewer-details h4 {
    color: var(--pure-white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.stars {
    color: var(--deep-purple);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.review-text {
    color: var(--pure-white);
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: var(--dark-gray);
}

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

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

.info-item h3 {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item p {
    color: var(--pure-white);
    line-height: 1.8;
}

.info-item a {
    color: var(--pure-white);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--deep-purple);
}

.contact-map h3 {
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.map-placeholder {
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 400px;
    border: 2px solid var(--deep-purple);
    border-radius: 10px;
}

.map-note {
    margin-top: 1rem;
    color: var(--deep-purple);
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    text-align: center;
    padding: 2rem 0;
    

    border-top: 1px solid var(--deep-purple);}

.footer p {
    color: var(--pure-white);
    margin: 0.5rem 0;
}

/* Scroll Animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero is always visible */
.hero {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.membership-card,
.feature,
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.visible .membership-card,
.visible .feature,
.visible .testimonial-card {
    opacity: 1;
    transform: translateY(0);
}

.visible .membership-card:nth-child(1),
.visible .feature:nth-child(1),
.visible .testimonial-card:nth-child(1) {
    transition-delay: 0.1s;
}

.visible .membership-card:nth-child(2),
.visible .feature:nth-child(2),
.visible .testimonial-card:nth-child(2) {
    transition-delay: 0.2s;
}

.visible .membership-card:nth-child(3),
.visible .feature:nth-child(3),
.visible .testimonial-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation improvements */
    .navbar {
        padding: 0.8rem 0;
        position: static;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        width: 100%;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background-color: var(--pure-black);
        border-radius: 5px;
    }

    .nav-menu a.active {
        background-color: var(--deep-purple);
        color: var(--dark-gray);
        border-bottom: none;
        padding-bottom: 0.5rem;
    }

    /* Hero section */
    .hero {
        padding: 3rem 1.5rem;
        margin-top: 0;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        line-height: 1.2;
    }

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

    .cta-button {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

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

    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-image {
        height: 200px;
    }

    .facility-info {
        padding: 1.5rem;
    }

    .facility-info h3 {
        font-size: 1.5rem;
    }

    /* Membership */
    .membership-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scroll-padding: 0 20%;
    }

    .membership-grid::-webkit-scrollbar {
        height: 8px;
    }

    .membership-grid::-webkit-scrollbar-track {
        background: var(--pure-black);
        border-radius: 10px;
    }

    .membership-grid::-webkit-scrollbar-thumb {
        background: var(--deep-purple);
        border-radius: 10px;
    }

    .membership-card {
        flex: 0 0 85%;
        padding: 2rem;
        scroll-snap-align: center;
    }

    .membership-card.featured {
        transform: scale(1);
        border-width: 4px;
    }

    .membership-card h3 {
        font-size: 1.7rem;
    }

    .price {
        font-size: 2.5rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

    .info-item h3 {
        font-size: 1.2rem;
    }

    .contact-map h3 {
        font-size: 1.3rem;
    }

    .map-placeholder iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* Logo */
    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    /* Navigation */
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Hero */
    .hero {
        margin-top: 0;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    /* Sections */
    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* About */
    .about-text h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .feature {
        padding: 1.2rem;
    }

    .feature h4 {
        font-size: 1.1rem;
    }

    /* Facilities */
    .facility-image {
        height: 180px;
    }

    .image-placeholder {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .facility-info {
        padding: 1.2rem;
    }

    .facility-info h3 {
        font-size: 1.3rem;
    }

    .facility-info p {
        font-size: 0.9rem;
    }

    /* Membership */
    .membership-card {
        flex: 0 0 90%;
        padding: 1.5rem;
    }

    .membership-card h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .membership-card ul li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .join-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.2rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .reviewer-details h4 {
        font-size: 1rem;
    }

    .stars {
        font-size: 0.9rem;
    }

    .review-date {
        font-size: 0.8rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    /* Contact */
    .info-item h3 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .contact-map h3 {
        font-size: 1.2rem;
    }

    .map-placeholder iframe {
        height: 250px;
    }

    .map-note {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }

    .footer p {
        font-size: 0.85rem;
    }
}
