body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #fde8f1;
  color: #3b2c35;

  opacity: 0;
  animation: fadeIn 1.4s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* NAV */
nav {
  background: #ffffff;
  padding: 15px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #b86b8c;
  font-weight: bold;
}

/* HEADER */
header {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

header h1 {
  font-size: 3.6rem;
  margin-bottom: 10px;
}

header p {
  font-style: italic;
  font-size: 1.3rem;
}

/* SECTIONS */ l
section {
  padding: 70px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #b86b8c;
  margin-bottom: 30px;
}

/* ABOUT */
.about img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

/* RATES */
.rates {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
}

.rates p {.
  font-size: 1.1rem;
  margin: 18px 0;
  color: #3b2c35;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform;
}

.gallery-grid img:hover {
  transform: scale(1.01);
  opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid img {
    transition: none;
  }
}

/* BOOKING */
.book-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input,
select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Playfair Display', serif;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 15px;
  background: #b86b8c;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* SITE BOTTOM – PAYMENTS */
.site-bottom {
  background-color: #f5c1d9;
  padding: 30px 20px;
  text-align: center;
}

.bottom-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;.
  color: #3b2c35;
}

.payments {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #3b2c35;
  text-align: center;
}
/* ===== FIX ARRANGEMENTS BACKGROUND ===== */

#arrangements h2 {
  color: #b86b8c;
}
/* ===== RATES PAGE FIX ===== */

#arrangements {
  background-color: #fde8f1;
  padding: 70px 20px;
}

#arrangements h2 {
  text-align: center;
  color: #b86b8c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

/* Grid layout */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual cards */
.rate-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(184, 107, 140, 0.15);
}

.rate-card h3 {
  color: #b86b8c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #3b2c35;
}

.details {
  margin-top: 6px;
  font-size: 1rem;
  color: #6b4b59;
}

/* Footnote */
.rates-footnote {
  max-width: 700px;
  margin: 35px auto 0;
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: #6b4b59;

}

/* Highlight policy keywords */
.policy-highlight {
  color: #b86b8c;
  font-weight: bold;
}
.emphasis-pink {
  color: #b86b8c;
  font-weight: bold;
}
/* =========================
   MOBILE STACK (SITE-WIDE)
   ========================= */
@media (max-width: 768px) {

  /* Stack cards vertically */
  .rates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Reduce card padding for mobile */
  .rate-card {
    padding: 22px;
  }

  /* Center text on cards */
  .rate-card h3,
  .rate-card .price,
  .rate-card .details {
    text-align: center;
  }

  /* Mobile-friendly section spacing */
  .content-section {
  padding: 80px 16px;
}

  /* Improve button tap size */
  button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

}
.hero {
  padding: 120px 20px 100px;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.content-text {
  text-align: center;
  font-size: 1.1rem;
  margin: 20px auto;
  max-width: 700px;
}
.content-emphasis {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  opacity: 0.85;
}
.tagline {
  margin-top: 20px;
  font-size: 1.15rem;
  opacity: 0.85;
}
.arrangements-privacy {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  opacity: 0.75;
}
.arrangements-subhead {
  text-align: center;
  margin-top: 25px;
  font-weight: 600;
}

.arrangements-text {
  text-align: center;
  margin-top: 10px;
}
/* =========================
   Accepted Payments Section
   ========================= */

.payment-options {
  margin-top: 3rem;
  text-align: center;
}

.payment-options h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: transform 0.2s ease, background 0.2s ease;
}

.payment-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.payment-item img {
  width: 22px;
  height: 22px;
}

.payment-item span {
  font-size: 0.95rem;
  white-space: nowrap;
}
.gallery-footer {
  margin-top: 60px;
  padding: 30px 0;
  text-align: center;
  opacity: 0.9;
}
#book-success {
  animation: successFadeIn 0.6s ease;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ===== Elegant Booking Payment Block ===== */

.booking-payments {
  background-color: #d6a5b8;   /* your pink */
  padding: 120px 20px;
  margin-top: 120px;
}

.booking-payments-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.booking-payments h2 {
  margin-bottom: 40px;
  font-weight: 600;
}

.booking-payments .payments {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.booking-payments .payments a {
  text-decoration: none;
  color: #3a2a2a;
  transition: opacity 0.25s ease;
}

.booking-payments .payments a:hover {
  opacity: 0.6;
}

.booking-payments .payments span {
  margin: 0 18px;
  opacity: 0.5;
}

.booking-payments .payments {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.payment-note {
  font-size: 0.95rem;   /* or 0.9rem if you want softer */
  line-height: 1.75;
  margin-bottom: 12px;
}

.payment-links a:hover {
  opacity: 0.6;
}

.dot {
  margin: 0 14px;  /* more breathing room between words */
  opacity: 0.4;
}
/* ===== Gallery Exclusive CTA ===== */

.gallery-footer {
  text-align: center;
  margin: 140px auto 120px auto;
  max-width: 800px;
  padding: 0 20px;
}

.exclusive-cta {
  font-size: 1.15rem;
  line-height: 1.6;
}

.exclusive-cta a {
  display: inline-block;
  margin-top: 18px;
  font-size: 1.3rem;
  text-decoration: none;
  color: #4a2c2a;
  letter-spacing: 0.8px;
  transition: opacity 0.25s ease;
}

.exclusive-cta a:hover {
  opacity: 0.6;
}
