/*RESET*/
*{
margin:0;
padding: 0;
box-sizing: border-box;
}

/*GLOBAL*/
body{
font-family: Arial, Helvetica, sans-serif;
background:green;/*Background EDIT HERE!!!*/
color:white;
}

/*BANNER*/

.banner{
background: #000;
text-align: center;
padding: 40px 20px;
}

.banner-img{
max-width: 260px;
width:100%;
height: auto;
margin: 20px auto 0;
display: block;
}

@media (max-width: 600px){
.banner-img{
max-width: 200px;
}
}

/*HERO-CONTENT*/

.hero-content{
background: #0f0f0f;
text-align: center;
padding: 60px 20px;
}

.hero-content h1{
font-size: 32px;
letter-spacing: 2px;
margin-bottom: 15px;
color: #f2f2f2;
}

.hero-content p{
font-size: 15px;
color: black;
margin-bottom: 30px;
}

.hero-box{
background: rgb(34, 98, 34);
padding: 40px 25px;
border-radius: 40px 30px;
max-width: 800px;
margin: auto;
box-shadow: 0 0 25px rgba(182, 255, 0, 0.3);

}

.hero-box h1{
font-size: 32px;
margin-bottom: 15px;
}

.hero-box p{
color: #ccc;
font-size: 20px;
}

/*SERVICES SECTION*/

.services{
background: #000;
padding: 70px 20px;
text-align: center;
}

.section-title{
color: #7cff3a;
font-size: 26px;
margin-bottom: 40px;
letter-spacing: 2px;
}

.service-card{
background: #0f0f0f;
border-radius: 14px;
padding: 25px;
margin-bottom: 25px;
}

.service-card h3{
color: #7cff3a;
margin-bottom: 10px;
}

.service-card p{
color: #ccc;
font-size: 14px;
line-height: 1.6;
}

/*ABOUT COACH SECTION*/



.about-coach{
background: #000;
padding: 70px 20px;
text-align: center;
}

.about-coach .section-title{
color: #7cff3a;
font-size: 26px;
letter-spacing: 2px;
margin-bottom: 40px;
}

.coach-box{
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
text-align: center;
max-width: 750px;
margin:auto;
background: #0f0f0f;
padding: 35px 30px;
border-radius: 16px;
border: 1px solid rgba(124, 255, 58, 0.4);
}

.coach-text{
display: block;
}


.coach-box p{
color: #dcdcdc;
font-size: 14.5px;
line-height: 1.8;
margin-bottom: 18px;
}

.coach-box strong{
color: #7cff3a;
font-weight: 600;
}








.coach-box img{
width: 100%;
max-width: 280px;
border-radius: 18px;
margin-bottom: 25px;
object-fit: cover;
border: 2px solid rgba(124, 255, 58, 0.6);
}

/*WIDE SCREENS*/
@media (min-width: 900px){
.coach-box{
display: flex;
gap: 40px;
align-items: center;
text-align: left;
}

.coach-img{
max-width: 300px;
margin-bottom: 0;
}
}

/*SMALLER SCREENS PHONES*/
@media (max-width:600px){

.coach-box{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.coach-box img{
max-width: 220px;
margin-bottom: 20px;
}
}





/*GALLERY SECTION*/

.gallery{
padding: 40px 20px;
text-align: center;
background: black;
}

.gallery-grid{
display: grid;
grid-template-columns: 1fr;
gap: 30px;
justify-content: center;
}

.gallery-grid img{
width: 100%;
max-width: 360px;
height:260px;
object-fit: cover;
border-radius: 12px;
transition: all 0.3s ease;
border: 2px solid rgba(124, 255, 58, 0.5);
}

.gallery-grid img:hover{
transform: scale(1.03);
}



.gallery h2{
color: #7cff3a;
margin-bottom: 25px;
}

/*LAPTOPS*/

@media(min-width: 900px){
.gallery-grid{
grid-template-columns: repeat(3, 1fr);

}

.gallery-grid img{
max-width: 420px;
height: 280px;
}
}

/*MISSION SECTION*/
.mission{
background: black;
padding: 80px 20px;
}

.mission-title{
font-size: 2.4rem;
font-weight: 800;
letter-spacing: 2px;
margin-bottom: 30px;
color: #7cff3a;
text-align: center;
}

.mission-box{
max-width: 900px;
margin: 0 auto;
background: #000;
padding: 40px;
border-radius: 20px;
border: 2px solid rgba(124, 255, 58, 0.6);
box-shadow: 0 0 25px rgba(124, 255, 58, 0.4);
}

.mission-box p{
color:#fff;
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 20px;
}

.highlight{
color: #7cff3a;
font-weight: 700;
}

/*MOBILE OPTIMIZATION*/
@media(max-width: 768px){
.mission-title{
font-size: 2rem;
}

.mission-box{
padding: 25px;
}

.mission-box p{
font-size: 1rem;
}
}

/*CONTACT SECTION*/

.contact{
background: #000;
padding: 80px 20px;
text-align: center;
}

.contact-title{
color: #7cff3a;
font-size: 2.3rem;
letter-spacing: 2px;
margin-bottom: 40px;
font-weight: 800;
}

/*FORM BOX*/

.contact-form{
max-width: 550px;
margin: 0 auto;
background: #0f0f0f;
padding:40px;
border-radius: 18px;
border: 2px solid rgba(124, 255, 58, 0.6);
box-shadow: 0 0 25px rgba(124, 255, 58, 0.25);
}

/*INPUTS*/

.contact-form input,
.contact-form textarea{
width: 100%;
background: #fff;
border:1px solid #7cff3a;
border-radius: 10px;
padding: 14px;
margin-bottom: 18px;
color:black;
font-size: 1rem;
outline: none;
transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color: #baff00;
box-shadow: 0 0 8px rgba(186, 255, 58, 0.6);
}

/*BUTTON*/

.contact-form button{
width: 100%;
background: #7cff3a;
color: #000;
padding:15px;
border-radius: 12px;
border: none;
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: 0.3s ease;
}

.contact-form button:hover{
background: #baff00;
transform: translateY(-2px);
}

/*MOBILE*/

@media{
.contact-form{
padding: 25px;
}

.contact-title{
font-size: 2rem;
}
}