/* ✅ General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

body {
    color: white;
    background-color: black;
}
/* Position header elements properly */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
    position: relative;
}

/* Move toggle button to the left, next to the logo */
#menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: block;
    position: absolute;
    left: -10px; /* Adjust for perfect positioning */
}

/* Move logo slightly to the right to balance layout */
.logo {
    max-width: 150px;
    height: auto;
    margin-left: 5px; /* Space from the toggle */
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        display: none; /* Hidden by default */
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }

    nav.active {
        display: flex; /* Show menu when toggled */
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav li {
        margin: 10px 0;
    }
}

/* Hide Toggle on Desktop */
@media (min-width: 769px) {
    #menu-toggle {
        display: none;
    }
}

/* ✅ Navigation Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: red;
}

/* ✅ Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    background: url('home.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero h1 {
    color: white;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* ✅ CTA Button */
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background:#ff2e63;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: darkred;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    nav ul {
        gap: 15px;
    }

    .hero {
        padding-left: 30px;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
/* Section Styling */
.classes {
    padding: 80px 20px;
    text-align: center;
    background: black;
    color: white;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #aaa;
}

/* Class Grid */
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* Class Cards */
.class-card {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.class-card:hover {
    transform: scale(1.05);
}

.class-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.class-card h3 {
    margin-top: 15px;
    font-size: 22px;
    color: #ff2e63;
}

.class-card p {
    font-size: 16px;
    color: #ccc;
}
/* Classes Section */
.classes {
    padding: 80px 20px;
    text-align: center;
    background: black;
    color: white;
}

/* Trainers Section */
.trainers {
    padding: 60px 20px;
    background: #222;
    color: white;
    text-align: center;
}

.trainer-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trainer-card {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 250px;
}

.trainer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background: black;
    color: white;
}

.testimonial-card {
    background: #444;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
}

/* CTA Section */
.cta {
    padding: 60px 20px;
    text-align: center;
    background: #ff2e63;
    color: white;
}

.cta .btn {
    display: inline-block;
    padding: 15px 30px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta .btn:hover {
    background: white;
    color: black;
}
/* Hover Effects */

/* Class Cards */
.class-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

/* Hover Effect */
.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

.class-card:hover img {
    opacity: 0.8;
}

/* Trainer Cards */
.trainer-card {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.trainer-card:hover {
    background: #444;
    transform: scale(1.05);
}

/* Button Hover Effect */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background:#ff2e63;;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: red;
    transform: scale(1.1);
}
.class-details {
    display: none;
    padding: 10px;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin-top: 10px;
}

footer {
    background: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-info,
.footer-links,
.footer-social {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f39c12;
}

.footer-social a img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex; /* Display links in a row */
    justify-content: center; /* Center the links */
    gap: 15px; /* Space between links */
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
}

.footer-links li {
    margin: 0; /* Remove margin to align properly */
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: RED; /* Change color on hover */
}
.pricing-container {
    display: flex;
    justify-content: center; /* Centers items */
    gap: 20px; /* Adds spacing between items */
    flex-wrap: wrap; /* Ensures responsiveness */
}

.plan {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    border: 2px solid #ff2e63;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.pricing {
    text-align: center;
    padding: 100px 20px; /* Increased padding to push down */
    background: black;
    color: white;
}

.popular {
    border: 3px solid #ff2e63;
}

.extra-content {
    margin-top: 50px;
    padding: 40px;
    background: #111;
    border-radius: 10px;
}

.extra-content h2 {
    color: #ff2e63;
}
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 90%;
    }
}
.why-choose-us {
    text-align: center;
    padding: 60px 20px;
    background-color: #000;
    color: white;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    width: 250px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ff2e63;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature img {
    width: 100%;
    height: 150px;
    border-radius: 5px;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}







body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 20px 40px;
    border-bottom: 3px solid #ff2e63;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #ff2e63;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover, .active {
    color: #ff2e63;
}

.cta-button {
    background-color: #ff2e63;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #fff;
    color: #ff2e63;
}

.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

h1, h2 {
    color: #ff2e63;
}

.contact-details, .contact-form, .map, .faq-section, .social-links, .newsletter {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #ff2e63;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
}

form button {
    background-color: #ff2e63;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #fff;
    color: #ff2e63;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 20px 40px;
    border-bottom: 3px solid #ff2e63;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #ff2e63;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover, .active {
    color: #ff2e63;
}

.cta-button {
    background-color: #ff2e63;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #fff;
    color: #ff2e63;
}

.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

h1, h2 {
    color: #ff2e63;
}

.workout-section, .trainer-section, .progress-section, .nutrition-section, .recovery-section, .motivation-section, .cta-section {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.workout-section img, .trainer-section img, .progress-section img, .nutrition-section img, .recovery-section img, .motivation-section img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.intro {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 49px;
    font-size: 18px;
    color: #ccc;
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 20px 10px;
    }

    .workout-section, .trainer-section, .progress-section, .nutrition-section, .recovery-section, .motivation-section, .cta-section {
        padding: 15px;
    }
}


