:root {
    --bg-color: #111;
    /* Background color */
    --card-color: #1a1a1a;
    /* Card background */
    --text-color: #f5f5f5;
    /* Normal text */
    --heading-color: #ff4500;
    /* Accent / highlight color */
    --subheading-color: #ff8c42;
    --border-color: #333;
    /* Borders */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
}

p,
li,
a,
button {
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
}


/* NAVBAR */
/* NAVBAR */
#navbar {
    display: flex;
    justify-content: space-between;
    /* logo left, nav/hamburger right */
    align-items: center;
    /* same height alignment */
    padding: 10px 20px;
    background: #ff440056;
    color: var(--text-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.logo img {
    height: 40px;
    margin-right: 8px;
    display: block;
}

/* DESKTOP NAV */
#nav-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

#nav-menu ul li a:hover {
    color: #ff6600;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    line-height: 1;
    margin-left: auto;
    /* keeps it to the far right */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: black;
        padding: 15px;
        border-radius: 8px;
        width: 200px;

        /* animation */
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
        /* show hamburger on mobile */
    }

    /* Show menu when active */
    #nav-menu.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.hero button {
    padding: 12px 25px;
    background: var(--heading-color);
    color: var(--text-color);
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.hero button:hover {
    transform: scale(1.05);
    background: var(--subheading-color);
}

/* SERVICES  */

.services {
    padding: 60px 20px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: var(--card-color);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(31, 47, 69, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
    min-width: 250px;
    max-width: 300px;
    flex: 0 1 300px;
    margin: 0;
}

.service-card:not(:last-child) {
    margin-right: 20px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(31, 47, 69, 0.15);
}

.service-card h3 {
    color: var(--subheading-color);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: underline;
}

.service-card p {
    color: var(--text-color);
    font-size: 16px;
}

.services h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--heading-color);
    text-transform: uppercase;
}

/* CEO  */

.CEO {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.ceo-image {
    flex: 1;
    text-align: left;
}

.ceo-image img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

.ceo-text {
    flex: 2;
}

.ceo-text h2 {
    margin-bottom: 15px;
    color: var(--heading-color);
}

.ceo-text p {
    line-height: 1.6;
    color: var(--text-color);
}

/* TRAINERS */

.trainers {
    padding: 60px 20px;
}

.trainers-container {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;

    background-image: linear-gradient(rgba(0, 0, 0, 0.747), rgba(0, 0, 0, 0.808)), url("trainer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trainer-card {
    background: var(--card-color);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(31, 47, 69, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
    color: #fff;
    font-size: 16px;
    margin: 20px;
    display: inline-block;
    width: 250px;
    vertical-align: top;
    min-height: 300px;
    box-sizing: border-box;
    height: 300px;

}

.trainer-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(31, 47, 69, 0.15);
}

.trainer-card h3 {
    color: var(--subheading-color);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: underline;
}

.trainer-card p {
    color: var(--text-color);
    font-size: 16px;
}

.trainer-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.trainers h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: var(--heading-color);
    text-transform: uppercase;

}

.social-icons {
    margin-top: 10px;
    text-align: center;
}

.social-icons a {
    display: inline-block;
    margin: 0 5px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.ceo-text {
    text-align: center;
    color: var(--text-color);
    padding: 20px;
    box-sizing: border-box;
}

.ceo-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--border-color);
}

.CEO {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.CEO h2 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: bold;
}

/* TIMMINGS */

.schedule {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.Timmings h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gym-timings,
.sauna-crossfit-timings {
    background: var(--card-color);
    border-radius: 12px;
    padding: 25px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gym-timings:hover,
.sauna-crossfit-timings:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.gym-timings h2,
.sauna-crossfit-timings h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--heading-color);
    border-bottom: 2px solid var(--border-color);
    display: inline-block;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    font-size: 1rem;
    margin: 8px 0;
    color: var(--text-color);
}

ul li strong {
    color: var(--highlight-color);
    font-weight: 600;
}


@media (max-width: 768px) {
    .CEO {
        flex-direction: column;
        /* stack vertically */
        text-align: center;
    }

    .ceo-image img {
        width: 120px;
        height: 120px;
    }

    .ceo-text h2 {
        font-size: 22px;
    }

    .ceo-text p {
        font-size: 14px;
    }

    .trainers h1 {
        font-size: 26px;
    }

    .trainer-card {
        max-width: 90%;
        /* take most of screen */
    }
}

@media (max-width: 480px) {
    .ceo-text h2 {
        font-size: 20px;
    }

    .ceo-text p {
        font-size: 13px;
    }

    .trainer-card {
        padding: 15px;
        max-width: 100%;
    }

    .trainer-card h3 {
        font-size: 18px;
    }

    .trainer-card p {
        font-size: 13px;
    }
}

/* GALLERY */

.gallery {
    padding: 60px 20px;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    max-width: 1000px;
    margin: 0 20px;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    min-width: 220px;
    flex: 0 0 auto;
    background: var(--bg-color);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--text-color);
    background-color: var(--card-color);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(202, 206, 206, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(31, 47, 69, 0.10);
    background: white;
}

.gallery-item p {
    margin: 0;
    text-decoration: underline;
    color: var(--subheading-color);
    font-weight: bold;
}

.gallery h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--heading-color);
    text-transform: uppercase;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.gallery-prev,
.gallery-next {
    background: var(--heading-color);
    color: white;
    border: none;
    font-size: 32px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--subheading-color);
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .gallery {
        padding: 40px 10px;
    }

    .gallery h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .gallery-grid {
        gap: 16px;
        margin: 0 10px;
    }

    .gallery-item {
        min-width: 160px;
        padding: 10px;
    }

    .gallery-item img {
        height: 120px;
    }

    /* 🔥 Hide arrows on mobile */
    .gallery-prev,
    .gallery-next {
        display: none;
    }
}


/* PRICING */

.pricing {
    padding: 60px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card {
    background: var(--card-color);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(31, 47, 69, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 16px;
    margin: 20px;
    display: inline-block;
    width: 250px;
    vertical-align: top;
    min-height: 300px;
    max-height: 300px;
    box-sizing: border-box;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(31, 47, 69, 0.15);
}

.pricing-card h3 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: bold;
}

.pricing-card p {
    color: var(--heading-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.pricing h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--heading-color);
    text-transform: uppercase;

}

.pricing-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--subheading-color);
    text-decoration: underline;
}
 /* 📱 Responsive */
@media (max-width: 1024px) {
    .pricing h1 {
        font-size: 28px;
    }
    .pricing-card {
        flex: 1 1 45%; /* 2 cards per row on tablets */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 40px 10px;
    }
    .pricing h1 {
        font-size: 24px;
    }
    .pricing-card {
        flex: 1 1 100%; /* 1 card per row on mobile */
        max-width: 100%;
        padding: 20px 15px;
    }
    .pricing-card h3 {
        font-size: 20px;
    }
    .pricing-card p {
        font-size: 18px;
    }
}
/* CONTACT */

.contact-section h1 {
    color: var(--heading-color);
    font-size: 32px;
    margin-bottom: 18px;
    text-align: center;
    text-transform: uppercase;
}

.contact {
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.contact-container,
.contact-info,
.map {
    flex: 1 1 300px;
    max-width: 350px;
    margin-bottom: 0;
}

.contact-container {
    max-width: 500px;
    margin-bottom: 40px;
    background: var(--card-color);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(31, 47, 69, 0.12);
}

.contact-container h1 {
    color: var(--subheading-color);
    font-size: 32px;
    margin-bottom: 18px;
    text-align: center;
    text-decoration: underline;
}

.contact-container p {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 24px;
    text-align: center;
}

.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-container input,
.contact-container textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--error-color);
    font-size: 16px;
    resize: none;
}

.contact-container input:focus,
.contact-container textarea:focus {
    outline: none;
    border-color: var(--error-color);
    background: white;
}

.contact-container button {
    padding: 12px 0;
    background: var(--heading-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.contact-container button:hover {
    background: var(--subheading-color);
    color: var(--text-color);
}

.contact-info {
    max-width: 350px;
    background: var(--card-color);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    padding: 24px 18px;
    box-shadow: 0 4px 16px rgba(31, 47, 69, 0.12);
    margin-bottom: 40px;
    color: var(--text-color);
}

.contact-info h2 {
    color: var(--subheading-color);
    font-size: 22px;
    margin-bottom: 12px;
    text-align: center;
    text-decoration: underline;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.social-media {
    max-width: 350px;
    background: var(--card-color);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    padding: 24px 18px;
    box-shadow: 0 4px 16px rgba(31, 47, 69, 0.12);
    color: white;
    margin-bottom: 40px;
}


.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: var(--subheading-color);
    font-size: large;
}

.map {
    background: var(--card-color);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    padding: 24px 18px;
    box-shadow: 0 4px 16px rgba(31, 47, 69, 0.12);
    margin-bottom: 40px;
    color: var(--text-color);
    margin-top: 18px;
    overflow: hidden;
    max-width: 350px;
}

.map h2 {
    color: var(--subheading-color);
    font-size: 22px;
    margin-bottom: 12px;
    text-align: center;
    text-decoration: underline;
}

.map iframe {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(31, 47, 69, 0.10);
    width: 100%;
    height: 220px;
    border: none;
    display: block;
    margin: 0 auto;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
    .contact {
        gap: 30px;
    }
    .contact-section h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact {
        flex-direction: column;
        align-items: center;
    }
    .contact-container,
    .contact-info,
    .social-media,
    .map {
        max-width: 100%;
    }
    .contact-section h1 {
        font-size: 24px;
    }
    .contact-container h1 {
        font-size: 24px;
    }
}
