/* Font families */
  .playfair { font-family: 'Playfair Display', serif; }
  .poppins  { font-family: 'Poppins', sans-serif; }

  /* Hero image with centered overlay text */
  .hero {
  position: relative;
  width: 100%;
  height: 90vh; /* adjust as needed */
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .title {
  color: white;
  font-size: 5rem;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

  /* Main heading + paragraph */
  .content {
    max-width: 1200px;
    margin: 3rem auto;
    text-align: center;
  }
  .p {
    font-family: 'Playfair Display', serif;
    color: #1D1A6D;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  .per {
    font-family: 'Poppins', sans-serif;
    color: #1D1A6D;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: left;
  }
  .content ul {
    color: #1D1A6D;
    font-size: 1.5rem;
    list-style: disc;
    padding-left: 1.5rem;
    text-align: left;
  }
  .content ul li {
    font-family: 'Poppins', sans-serif;
    color: #1D1A6D;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .reuse {
    font-family: 'Poppins', sans-serif;
    color: #1D1A6D;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: left;
  }
  .play {
    font-family: 'Playfair Display', serif;
    color: #1D1A6D;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  

  /* Reusable two‑column section */
  .two-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    gap: 2rem;
  }
  .two-col .text {
    flex: 1 1 600px;
  }
  .two-col .image {
    flex: 1 1 300px;
  }
  .two-col .image img {
    width: 400px;
    height: 400px;
    border-radius: 1rem;
    object-fit: cover;
  }
  @media (max-width: 768px) {
    .two-col { flex-direction: column; }
  }



 /* Extra‑large desktops (1200px and up) */
@media (min-width: 1200px) {
  .hero             { height: 90vh; }
  .hero .title      { font-size: 5rem; }
  .p                { font-size: 4rem; }
  .per, .content ul li, .reuse { font-size: 1.5rem; }
  .play             { font-size: 2.5rem; }
  .two-col .image img {
    width: 400px;
    height: 400px;
  }
}

/* Desktops (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero             { height: 80vh; }
  .hero .title      { font-size: 4.5rem; }
  .p                { font-size: 3.5rem; }
  .per, .content ul li, .reuse { font-size: 1.4rem; }
  .play             { font-size: 2.2rem; }
  .two-col .image img {
    width: 350px;
    height: 350px;
  }
}

/* Tablets (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero             { height: 70vh; }
  .hero .title      { font-size: 4rem; }
  .p                { font-size: 3rem; }
  .per, .content ul li, .reuse { font-size: 1.3rem; }
  .play             { font-size: 2rem; }
  .two-col {
    gap: 1.5rem;
  }
  .two-col .image img {
    width: 300px;
    height: 300px;
  }
}

/* Small tablets & large phones (576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero             { height: 60vh; }
  .hero .title      { font-size: 3.5rem; }
  .p                { font-size: 2.5rem; }
  .per, .content ul li, .reuse { font-size: 1.2rem; }
  .play             { font-size: 1.8rem; }
  .two-col {
    flex-direction: column;
    align-items: center;
  }
  .two-col .image img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}

/* Mobile phones (up to 575px) */
@media (max-width: 575px) {
  .hero             { height: 50vh; }
  .hero .title      { font-size: 2.5rem; }
  .p                { font-size: 2rem; }
  .per, .content ul li, .reuse { font-size: 1rem; }
  .play             { font-size: 1.6rem; }
  .content, .two-col {
    padding: 0 1rem;
  }
  .two-col {
    gap: 1rem;
  }
  .two-col .image img {
    width: 100%;
    height: auto;
  }
}
