/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4efe9; 
  color: #3d2e28;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: #e96b4b;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #3d2e28;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #6e8b63;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #1a1a1a),
    url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #f9f5f0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: #f9f5f0;
  margin-bottom: 1rem;
}

.hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: #fce3d4; /* soft warm coral */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.75rem 2rem;
  background-color: #e96b4b;
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #c45535;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 5rem 2rem;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

section h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: #6e8b63;
  margin-bottom: 1rem;
}

section p, section li {
  font-size: 1.1rem;
  color: #3d2e28;
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

/* Class Cards */
.class-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.class-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.class-card h3 {
  color: #e96b4b;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Contact */
.contact ul {
  list-style: none;
  padding: 0;
}

.contact a {
  color: #6e8b63;
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .class-grid {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
}
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  color: #e96b4b;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #6e8b63;
  margin-bottom: 1rem;
}
<section class="about" id="about">
  <div class="about-container">
    <div class="about-text">
      <h2>About Infraflow</h2>
      <p>Infraflow is more than a studio — it's a sanctuary. We bring warmth, strength, and serenity together in two signature spaces: one for high-energy heated workouts, and one for zen-infused yoga. Our goal is to help you reconnect to your body through movement and heat.</p>
      <p>Founded with the belief that balance is built — not found — Infraflow creates a welcoming space for all bodies and all journeys.</p>
    </div>
    <div class="about-image">
      <img src="studio-about.jpg" alt="Infraflow Studio Interior">
    </div>
  </div>
</section>
✅ Add this to style.css:
css
Copy code
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-text {
  flex: 1 1 400px;
  text-align: left;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #6e8b63;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #3d2e28;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}