body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

nav {
  background: #111;
  padding: 15px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  font-weight: bold;
  transition: .3s;
}

nav a:hover {
  color: #d4af37;
}

.language-switch {
  text-align: center;
  padding: 15px;
  background: white;
}

.language-switch button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.language-switch button:hover {
  background: #d4af37;
}

header {
  text-align: center;
  padding: 50px 20px;
  background: white;
}

.logo {
  width: 180px;
  max-width: 100%;
}

header h1 {
  margin-top: 20px;
  font-size: 40px;
}

header p {
  font-size: 20px;
}

section {
  padding: 50px 20px;
}

#about {
  background: white;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: .3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 15px;
}

#coaches {
  background: #f9f9f9;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.coach-card {
  background: white;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  transition: .3s;
}

.coach-card:hover {
  transform: translateY(-5px);
}

.coach-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.coach-card h3 {
  margin: 10px 0;
}

.coach-card p {
  margin: 5px 0;
}

#gallery {
  background: white;
  text-align: center;
}

.gallery-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-videos video {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

#contact {
  text-align: center;
  background: #f9f9f9;
}

#contact p {
  font-size: 18px;
}

section a {
  color: #111;
  font-weight: bold;
  text-decoration: none;
}

section a:hover {
  color: #d4af37;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.eng {
  display: none;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

@media(max-width:768px) {
  
  nav a {
    display: block;
    margin: 10px 0;
  }
  
  header h1 {
    font-size: 28px;
  }
  
  header p {
    font-size: 18px;
  }
  
  .coach-card img {
    height: 260px;
  }
  
.coach-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}