/*
 Theme Name: Astra Personal Trainer Child
 Template: astra
 Version: 1.0.0
*/
body {
  font-family: 'Poppins', sans-serif;
}
.btn-primary {
  background: #e63946;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
}
/* ===== Hero Section ===== */
.hero {
  background: url('https://yourdomain.com/wp-content/uploads/hero-bg.jpg') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* dark overlay */
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

/* ===== Button Styling ===== */
.btn-primary {
  background: #e63946;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #d62828;
  transform: translateY(-2px);
}

/* ===== Programs Section ===== */
.programs {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.programs h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.program-card {
  background: #fff;
  border: 2px solid #eee;
  padding: 30px 20px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.program-card:hover {
  border-color: #e63946;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ===== Testimonials Section ===== */
.testimonials {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.testimonials p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}