@import url("./input.css");

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
  min-width: 420px;
}

header {
  background-color: #2e8b57;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.logo {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2em;
  opacity: 0.9;
}

.container {
  max-width: 1200px;
  min-width: 420px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  background: linear-gradient(
      rgba(32, 133, 77, 0.699),
      rgba(44, 139, 85, 0.705)
    ),
    url("../photo/mainPhoto.jpg");
  background-size: cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 30px;
  background-position: center 40%;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background-color: #ffd700;
  color: #333;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  border: none;
}

.btn:hover {
  background-color: #e6c200;
  cursor: pointer;
}

.section {
  padding: 50px 20px;
  text-align: center;
}

.section h2 {
  color: #2e8b57;
  font-size: 2em;
  margin-bottom: 30px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 300px;
  text-align: center;
}

.benefit-card h3 {
  color: #2e8b57;
}

.coach {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.coach-img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid #2e8b57;
}

.coach-info {
  max-width: 500px;
  text-align: left;
}

.coach-info h3 {
  color: #2e8b57;
  font-size: 1.8em;
}

.schedule {
  background-color: #e8f5e9;
  width: 100%;
  height: 100%;
}

.week {
  background-color: #ffd700;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.days {
  display: flex;
  gap: 2em;
  flex-direction: row;
  flex-wrap: wrap;
}

.day {
  width: 150px;
  height: 150px;
  border-radius: 1em;
  padding: 5px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.day p {
  display: flex;
  width: fit-content;
}

.contact {
  background-color: #2e8b57;
  color: white;
  padding: 50px 20px;
}

.contact h2 {
  color: white;
}

.contact a {
  color: #ffd700;
  text-decoration: none;
}

.contact .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: fit-content;
}

.contact .container button {
  background-color: #ffd700;
  color: #333;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  width: fit-content;
  display: flex;
  margin: 1em;
}

.contact .container button:hover {
  background-color: #e6c200;
  cursor: pointer;
}

footer {
  background-color: #1a3e23;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
