/*
Theme Name: OceanWP Child
Template: oceanwp
Version: 1.0
*/

/* Container */






/* Yoga Features Section */
.yoga-features-section {
  background: #f6f3ee;
  padding: 50px 0;
}

.yoga-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.yoga-card {
  background: #efe9df;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yoga-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.yoga-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9e5d6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c7c5a;
  font-size: 20px;
  flex-shrink: 0;
}

.yoga-card h3 {
  margin: 0;
  font-size: 18px;
  color: #2d3a2f;
}

.yoga-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #5c6b60;
  line-height: 1.5;
}
.hidden-heading { display:none;}




/* Responsive */
@media (max-width: 900px) {
  .yoga-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .yoga-container {
    grid-template-columns: 1fr;
  }
}



/* yoga-programs-section */

/* SECTION */
.yoga-programs-section {
  background: #f6f3ee;
  padding: 80px 20px;
}

/* CONTAINER */
.yoga-programs-section .yoga-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.yoga-header {
  text-align: center;
  margin-bottom: 50px;
}

.yoga-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: #2d3a2f;
  margin-bottom: 10px;
}

.yoga-header p {
  max-width: 650px;
  margin: 0 auto;
  color: #6b7a6f;
  line-height: 1.6;
}

/* GRID */
.yoga-programs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.yoga-program-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.yoga-program-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.yoga-program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* CONTENT */
.yoga-program-card .content {
  padding: 20px;
}

/* TITLE */
.yoga-program-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3a2f;
  margin-bottom: 10px;
}

/* TEXT */
.yoga-program-card p {
  font-size: 14.5px;
  color: #6b7a6f;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* BUTTON */
.yoga-program-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #3d6b4f;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

.yoga-program-card .btn::after {
  content: "›";
}

@media (max-width: 900px) {
  .yoga-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .yoga-programs-grid {
    grid-template-columns: 1fr;
  }
}