@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* header*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
font-family: 'Roboto';

}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
nav{
    padding-top: 15px;
}

.wrapper{
    width: 100%;
   background-color: #f4f4f4;

}
.container{
    width: 100%;
    margin: 0 auto;
}
header{
   
    padding: 50px 0 ;
    background: linear-gradient(to bottom right, #007b55, #013a1b);
}
header .logo{
    margin-left: 15px;
   text-transform: uppercase;
   font-size: 40px;
   font-weight: 800;
   color: #fff;
   text-shadow: 2px 3px #333;
}
header nav{
    float: right;
    width: 50%;
}
header nav ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
}
header nav ul li{
    display: inline-block;
}
header nav ul li a{
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}
header nav ul li a:hover{
color: #80e384;
}
.submenu {
    display: none;
    position: absolute;
    text-align: center;
   width: 200px;
    background-color: #02753e;
    list-style: none;
    padding: 0;
 
    min-width: 160px;
    z-index: 1000;
    border-radius: 4px;
  }
 
  
  .submenu li a {
    padding: 10px 15px;
    text-decoration: none;
  color: #fff;
  display: block;

  }
  
  .submenu li a:hover {
    background-color: #006633;
    color: #80e384;
    text-decoration: none;
  }
  .dropdown:hover .submenu {
    display: block;
  }


  /*main section*/
h1{
    text-align: center;
}
  main.main_coach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px;
    justify-items: center;
    align-items: start;
  }
  
  figure {
    text-align: center;
  }
  
  .coach_img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .coach_img:hover {
    transform: scale(1.05);
  }
  
  figcaption {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  
/*footer*/
footer {
  background: linear-gradient(to bottom right, #007b55, #013a1b);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.875rem;
  color: #ccc;
}