
html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}


body{
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0d12;
    color: #f2f2f2;
    line-height: 1.6;
}

/* === Mobile Navbar Checkbox === */

#menu-toggle{
    display: none;
}

.menu-icon{
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* Mobile */

@media (max-width: 768px){
    .menu-icon{
        position: relative;
        z-index: 2000;
        margin-left: auto;
        display: block;
    }
    .links{
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0f0f12;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }
    #menu-toggle:checked ~ .links{
        right: 0;
    }
    .links a{
        font-size: 22px;
    }
    .links button{
        font-size: 18px;
        padding: 12px 20px;
    }
}

/* === Navbar === */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #11141c;
    border-bottom: 1px solid #1f2330;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    font-size: 26px;
    font-weight: bold;
    color: #ff3c3c;
}

.links{
    display: flex;
    gap: 25px;
    align-items: center;
}

.links a{
    text-decoration: none;
    color: #cfcfcf;
    transition: 0.25s;
}

.links a:hover{
    color: #ffffff;
}

.links button{
    background: #ff3c3c;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: 0.25s;
}

.links button:hover{
    background: #ff5c5c;
}


/* === Hero === */

.hero{
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(180deg, #0b0d12, #121722)
}

.hero h1{
    font-size: 45px;
    margin-bottom: 20px;
}

.hero p{
    max-width: 600px;
    margin: 0 auto 30px;
    color: #bdbdbd;
}

.btn-primary{
    display: inline-block;
    padding: 14px 28px;
    background: #ff3c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.25s;
}

.btn-primary:hover{
    background: #ff5c5c;
}


/* === Programs === */

.programs{
    padding: 80px 60px;
    text-align: center;
}

.programs h2{
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff
}

.programs-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.program-card{
    background: #141925;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1f2230;
    transition: 0.3s;
}

.program-card:hover{
    transform: translateY(-8px);
    border-color: #ff3c3c;
}

.program-card h3{
    margin-bottom: 10px;
    color: #ff3c3c;
}

.program-card p{
    color: #bdbdbd;
}


/* === Traiiners === */

.trainers{
    padding: 80px 60px;
    text-align: center;
    background: #0f131d;
}

.trainers h2{
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
}

.trainers-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.trainer-card{
    background: #141925;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1f2330;
    transition: 0.3s;
}

.trainer-card:hover{
    transform: translateY(-8px);
}

.trainer-img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.trainer-card h4{
    margin-bottom: 6px;
}

.trainer-card p{
    color: #bdbdbd;
}

/* === Membership === */

.membership{
    padding: 80px 60px;
    text-align: center;
}

.membership h2{
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
}

.membership-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.membership-card{
    background: #141925;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #1f2330;
    transition: 0.3s;
}

.membership-card:hover{
    transform: translateY(-10px)
}

.membership-card.premium{
    border: 2px solid #ff3c3c;
    transform: scale(1.05);
}

.price{
    font-size: 34px;
    font-weight: bold;
    margin: 15px 0;
    color: #ff3c3c;
}

.per{
    font-size: 16px;
    color: #bdbdbd;
}

.features-list{
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.features-lisr li{
    margin: 8px 0;
    color: #cfcfcf;
}

.join-btn{
    width: 100%;
    padding: 12px;
    background: #ff3c3c;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25;
}

.join-btn:hover{
    background: #ff5c5c;
}

/* === Workout Schedule === */


.schedule{
    padding: 70px 20px;
    background: #0f0f12;
    text-align: center;
    color: #f5f5f5;
}

.schedule h2{
    font-size: 34px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #ffffff;
}

.schedule-table{
    width: 90%;
    max-width: 900px;
    margin: auto;
    border-collapse: collapse;
    background: #18181c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6)
}

.schedule-table th{
    background: #e63946;
    color: #fff;
    padding: 16px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-table td{
    padding: 14px;
    border-bottom: 1px solid #2a2a2f;
    font-size: 18px;
    transition: background 0.25s ease;
}

.schedule-table tr:last-child td{
    border-bottom: none;
}

.schedule-table tr:hover td{
    background: #222228;
}

/* effect */

.schedule-table tr:nth-child(even){
    background: #141418;
}

/* Responsive */

@media (max-width: 600px){
    .schedule-table th,
    .schedule-table td{
        padding: 10px;
        font-size: 14px;
    }
    .schedule h2{
        font-size: 26px;
    }
}

/* === Hours === */

.hours{
    padding: 80px 60px;
    text-align: center;
    background: #0f131d;
}

.hours h2{
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
}

.hours-container{
    max-width: 500px;
    margin: auto;
}

.day{
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #1f2330;
    color: #cfcfcf
}

.day:hover{
    background: #141925;
}

/* === Contact === */


.contact{
    padding: 80px 60px;
    text-align: center;
}

.contact h2{
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
}

.contact-form{
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input{
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #1f2330;
    background: #141925;
    color: #fff;
    outline: none;
}

.contact-form textarea{
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #1f2330;
    background: #141925;
    color: #fff;
    outline: none;
}

.contact-form input:focus{
    border-color: #ff3c3c;
}

.contatc-form textarea:focus{
    border-color: #ff3c3c;
}

.contact-form button{
    padding: 14px;
    background: #ff3c3c;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}

.contact-form button:hover{
    background: #ff5c5c;
}


/* === Footer === */


footer{
    background: #11141c;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #1f2330;
}

.footer-links{
    margin-top: 10px;
}

.footer-links a{
    color: #cfcfcf;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.25s;
}

.footer-links a:hover{
    color: #ff3c3c;
}

