*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: 'Times New Roman', Times, serif;
    background-color: #000;
}
#hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(gym-hero.jpg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    justify-content: center;
    display: flex;align-items: center;
    background-attachment: scroll;
    
    
}
#hero_contect{
    padding-left: 80px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#hero_content h1 {
    color:white;
    font-size: 4rem;
    position: relative;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1;



}
h1 span{
    color: orange;
    display: block;
    padding-left: 60px;

}

#hero_content p{
    color: #d1d1d1;;
     font-size: 1.1rem;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    margin-top: 10px;
   margin-bottom: 20px;
}
#hero_content a{
    color: white;
     padding: 3px 20px 3px 20px;
    border: 1px solid orange;
    background:orange;
    font-size:1.5rem ;
    border-radius: 25px;
    text-decoration: none

}
#hero_content a:hover{
    background-color: transparent;
    color: #ffca28;
    border: 2px solid #ffca28;
    cursor: pointer;
}
#header{
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    line-height: 70px;
}
#navbar{
    display: flex;
    justify-content: space-around;
    background-color:rgba(0, 0, 0, 0.6);
    width: 100%;
    align-items: center;
    
    
}
#navbar h1{
    color: orange;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8rem;
    text-shadow: 2px 2px 2px #000;
    display: flex;
    justify-content: space-around;
    margin-right: 0;
    font-size: 50px;
    
    
}
#navbar ul{
    display: flex;

}
#navbar ul li{
    list-style: none;
    padding: 3px 15px 3px 15px;
}
#navbar ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0;
    font-weight: 400;
    
}
#navbar ul li:hover{
    background: orange;
    
    

}
.container{
    display:flex;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
}
.card{
    width: 300px;
    background: #222;
    padding: 20px;
    text-align: center;
    margin: 10px;
    border-radius: 15px;
    
    transition: 0.3s;
    
    
}
.card:hover{
    transform: scale(1.05);
}
.section-title {
    color:orange;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase; 
    padding: 20px;
}
.card h3{
    color: white;
    margin: 10px;
}
.card p{
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 10px;
    height: 100px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.card i{
    color: orange;
    font-size: 50px;
    margin-bottom: 20px;

}
.card a{
    color: white;
     padding: 3px 20px 3px 20px;
    border: 1px solid orange;
    background:orange;
    font-size:1.5rem ;
    border-radius: 25px;
    text-decoration:none;
    margin-top: auto;
    display: inline-block;
    

    


}
.card a:hover{
    background-color: transparent;
    color: #ffca28;
    border: 2px solid #ffca28;
    cursor: pointer;

}
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 10%;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: orange;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-features {
    list-style: none; 
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: #ddd;
}

.about-features i {
    color: #ffca28;
    margin-right: 12px;
    font-size: 1.3rem;
}


.about-features strong{
    color: #fff;
    margin-right: 5px;
    font-size: 10px;
}
.about-content a{
     color: white;
     padding: 3px 20px 3px 20px;
    border: 1px solid orange;
    background:orange;
    font-size:1.5rem ;
    border-radius: 25px;
    text-decoration:none;
    margin-top: auto;
    
    

}
.about-content a:hover{
    background-color: transparent;
    color: #ffca28;
    border: 2px solid #ffca28;
    cursor: pointer;
}
.about-content .btn{
    display: inline-block;
    margin-top: 40px;
    margin-left: 20px;
    padding: 12px 30px;
}

.membership{
    padding: 80px 10%;
    background: #0f0f0f;
    color: #fff;
    text-align: center;
}


.section-title{
    font-size: 40px;
    margin-bottom: 50px;
}

.highlight{
    color: orange;
}

/* Container */
.membership-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

/* Card */
.membership-card{
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    transition: 0.3s;
    position: relative;
}

/* Hover Effect */
.membership-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Featured Card */
.membership-card.featured{
    border: 2px solid orange;
    transform: scale(1.05);
}

/* Badge */
.badge{
    position: absolute;
    top: -10px;
    right: -10px;
    background: orange;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
}

/* Plan Title */
.membership-card h3{
    font-size: 26px;
    margin-bottom: 15px;
}

/* Price */
.price{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffca28;
}

.price span{
    font-size: 16px;
    color: #bbb;
}

/* List */
.membership-card ul{
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.membership-card ul li{
    margin: 10px 0;
    font-size: 16px;
}

.membership-card ul li i{
    margin-right: 8px;
}


.disabled{
    color: #777;
}


.btn{
    display: inline-block;
    padding: 12px 25px;
    background: orange;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn:hover{
    
    background-color: transparent;
    color: #ffca28;
    border: 2px solid #ffca28;
    
}

#registration-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    margin: 50px auto;
    font-family: Arial, sans-serif;
    color: white;
}

#registration-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: orange;
}

#registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#registration-form input,
#registration-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}

#registration-form input:focus,
#registration-form select:focus {
    box-shadow: 0 0 5px orange;
}

#registration-form button {
    width: 100%;
    padding: 12px;
    background: orange;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

#registration-form button:hover {
    background: orange;
}
#registration-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    margin: 50px auto;
    font-family: Arial, sans-serif;
    color: white;
}

#registration-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: orange;
}

#registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#registration-form input,
#registration-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}

#registration-form input:focus,
#registration-form select:focus {
    box-shadow: 0 0 5px orange;
}

#registration-form button {
    width: 100%;
    padding: 12px;
    background:orange;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

#registration-form button:hover {
    background-color: transparent;
    color: #ffca28;
    border: 2px solid #ffca28;
}
}
body h2{
    color: orange;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}
/* Contact Section */
#contact {
    padding: 50px 10%;
    background: #111;
    color: white;
    text-align: center;
}

#contact h2 {
    color: orange;
    margin-bottom: 20px;
}

#contact p {
    margin-bottom: 30px;
}




footer {
    background: orange;
    color: black;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: center;
    margin: 0;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: orange;
    margin: 4px 0;
    transition: 0.4s;
}


@media (max-width: 768px) {
    #header {
        position: fixed;
        top: 0;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.9);
    }

    #navbar {
        justify-content: space-between;
        padding: 0 20px;
    }

    #navbar h1 {
        font-size: 24px;
    }

    
    .menu-toggle {
        display: flex;
    }

    
    #navbar ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: -1000px; 
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        transition: 0.5s ease-in-out;
        z-index: -1;
        padding: 20px 0;
    }

    
    #navbar ul.active {
        top: 70px; 
    }

    #navbar ul li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

    
    #hero_content {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        align-items: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .membership-container {
        grid-template-columns: 1fr;
    }
}