



/* House of Katra Luxury Page */
.katra-page {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  background: white;
  color: white;
  font-family: "Playfair Display", serif;
  line-height: 1.9;
}

/* Hero section */
.katra-hero {
  text-align: center;
  margin-bottom: 60px;
}
.katra-hero h1 {
  font-size: 44px;
  color: #80001e;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.katra-hero p {
  font-size: 18px;
  font-style: italic;
  color: #80001e;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

/* Section Headings */
.katra-page h2 {
  font-size: 28px;
  color: #80001e;
  margin-top: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #444;
  text-align: center;
  padding-bottom: 8px;
}

/* Paragraphs */
.katra-page p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #80001e;
  text-align: center;
}

/* Divider (gold line before headings) */
.katra-page h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 40px auto 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .katra-hero h1 {
    font-size: 32px;
  }
  .katra-page h2 {
    font-size: 22px;
  }
  .katra-page p {
    font-size: 16px;
  }
}