* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: "Ubuntu", system-ui;
  font-weight: 300;
  font-style: normal;
}

.hero-evening {
  background-image: url("./assets/morning-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  /* margin: 20px; */
  position: relative;
  height: 100%;
  width: 100vw;
  background-color: rgba(63, 63, 63, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  border: 1px solid yellow;
  padding: 4px;
}

.hero-content p {
  font-size: 1.25rem;
  color: #f2f2f2;
}

.morning-yoga {
  /* background-color: #f9f9f9;  */
  margin-top: 30px;
  text-align: center;
}

.youtube-tutorial {
  text-align: center; /* Center the tutorial */
}

.youtube-container {
  position: relative;
  height: 42vh;
  overflow: hidden;
  max-width: 38%;
  margin: auto;
  margin-top: 34px;
  margin-bottom: 34px;
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 9px;
}

@media screen and (max-width: 768px) {
  .youtube-container {
    max-width: 340px;
    height: 36vh;
  }
  .youtube-container iframe {
    width: 100%;
    height: 80%;
    border: none;
    padding: 9px;
  }
}

.surya-namaskar-steps {
  margin: 40px 20px;
}
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px; /* Space between cards */
  margin-top: 50px;
  width: 60vw;
  margin: auto;
}

.yoga-card {
  /* flex: 1 1 calc(33.333% - 20px);  */
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 200px;
}

.yoga-card img {
  max-width: 100%; /* Ensures images don't exceed card width */
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.yoga-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.yoga-card p {
  font-size: 16px;
  color: #555;
}

.yoga-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .yoga-card {
    flex: 1 1 100%; /* Stacks the cards vertically */
  }
}

.surya-namaskar-section {
  background-color: #f9f9f9;
  text-align: center;
  margin: 40px 20px;
  padding: 20px;
}

.start-button {
  padding: 15px 30px;
  background-color: #ff7f50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.start-button:hover {
  background-color: #59ff47;
}

.current-step {
  margin-top: 40px;
  text-align: center;
}

.current-step h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.current-step img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

.start-button,
.stop-button {
  padding: 10px 20px;
  margin: 10px;
  background-color: #4caf50; /* Green for start */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.stop-button {
  background-color: #f44336; /* Red for stop */
}

.start-button:hover,
.stop-button:hover {
  opacity: 0.8;
}
