/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff6600;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff6600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('C:/Users/Dell/.gemini/antigravity/brain/aa0ed334-e1d4-419f-9a02-eef59b78d867/gym_hero_background_1770105416196.png') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: #ffffff;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.cta-button:hover {
    background-color: #ff8533;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #ff6600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background-color: #1a1a1a;
}

.about-content {
    display: grid;
    gap: 50px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #000000;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6600;
}

.feature-card p {
    color: #aaaaaa;
    font-size: 15px;
}

/* ============================================
   MEMBERSHIP SECTION
   ============================================ */
.membership-section {
    background-color: #000000;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.membership-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 102, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.membership-card.featured {
    border-color: #ff6600;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 102, 0, 0.3);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.4);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6600;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

.plan-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff6600;
}

.plan-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    vertical-align: top;
    color: #ff6600;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
}

.period {
    font-size: 18px;
    color: #aaaaaa;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-size: 15px;
}

.plan-features li:before {
    content: "✓ ";
    color: #ff6600;
    font-weight: 700;
    margin-right: 10px;
}

.plan-button {
    display: inline-block;
    width: 100%;
    background-color: transparent;
    color: #ff6600;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff6600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: #ff6600;
    color: #ffffff;
}

.membership-card.featured .plan-button {
    background-color: #ff6600;
    color: #ffffff;
}

.membership-card.featured .plan-button:hover {
    background-color: #ff8533;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule-section {
    background-color: #1a1a1a;
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #000000;
    border-radius: 10px;
    overflow: hidden;
}

.schedule-table thead {
    background-color: #ff6600;
}

.schedule-table th {
    padding: 20px 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.schedule-table td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-size: 15px;
}

.schedule-table .time-cell {
    font-weight: 700;
    color: #ff6600;
}

.schedule-table tbody tr:hover {
    background-color: rgba(255, 102, 0, 0.05);
}

.schedule-note {
    text-align: center;
    color: #aaaaaa;
    font-style: italic;
    font-size: 15px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background-color: #000000;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ff6600;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    color: #ff6600;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.info-item p {
    color: #cccccc;
    line-height: 1.8;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6600;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.submit-button {
    width: 100%;
    background-color: #ff6600;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    padding: 40px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-logo p {
    color: #aaaaaa;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-bottom p {
    color: #666666;
    font-size: 14px;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */
@media screen and (max-width: 768px) {

    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 30px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 102, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hero Section */
    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 14px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* Container Padding */
    .container {
        padding: 0 20px;
    }

    /* About Section */
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Membership Cards */
    .membership-grid {
        grid-template-columns: 1fr;
    }

    .membership-card.featured {
        transform: scale(1);
    }

    .membership-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Schedule Table */
    .schedule-table {
        font-size: 13px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 12px 8px;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Typography */
    .about-text p {
        font-size: 16px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .plan-name {
        font-size: 24px;
    }

    .amount {
        font-size: 48px;
    }
}

@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .membership-card {
        padding: 30px 20px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 10px 6px;
        font-size: 12px;
    }
}