body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  text-align: center;
  margin: 0;
  padding: 0;

  /* wallpaper */
  background-image: url("assetswallpaper.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}



.page {
  max-width: 1100px;
  margin: 40px auto;
  padding: 40px 30px;
  background-color: #ffffff;

  /* soft logo-matching border */
  border: 2px solid #7fae9b;
  border-radius: 24px;

  /* subtle depth */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 34px 26px 46px;
  background: rgba(255,255,255,0.88);
  border-radius: 28px;
}

/* Header + Navigation */
.header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(229,231,235,0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.brand .name {
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.1;
  text-align: left;
}

.brand .tagline {
  font-size: 13px;
  color: #4b5563;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15,118,110,0.06);
}

.nav a:hover {
  background: rgba(15,118,110,0.12);
}

.nav a.active {
  background: rgba(15,118,110,0.18);
  color: #0f766e;
}

h1 {
  font-size: 42px;
  margin: 18px 0 10px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

h2 {
  margin-top: 44px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

p {
  font-size: 18px;
  max-width: 960px;
  margin: 10px auto;
  line-height: 1.65;
}

.hero-logo {
  margin: 26px auto 16px;
  display: block;
  max-width: 320px;
}

.button {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 28px;
  background-color: #0f766e;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 999px;
}

.button:hover {
  background-color: #115e59;
}

/* Cards */
.services, .policies {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.service-card, .policy-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 18px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.service-card h3, .policy-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.service-card p, .policy-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

/* Info block */
.info {
  margin-top: 36px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(229,231,235,0.7);
  border-radius: 18px;
  padding: 18px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Booking form */
.booking-form {
  max-width: 560px;
  margin: 26px auto;
  text-align: left;
}

.booking-form label {
  display: block;
  margin-top: 14px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
}

.booking-form textarea {
  height: 110px;
}

.center-button {
  text-align: center;
  margin-top: 22px;
}

.reminder {
  text-align: center;
  margin-top: 18px;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 10px;
  color: #0f766e;
  text-decoration: none;
  font-weight: 800;
}

.back-link:hover {
  text-decoration: underline;
}
.note {
  font-size: 14px;
  color: #6b7280;
  max-width: 720px;
  margin: 10px auto;
}
/* About page extras */
/* =========================
   CARE PAGE: UNIQUE LAYOUT
   ========================= */

.care-page h1 {
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.care-page p {
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Turn Care page into a guide layout */
.care-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
  max-width: 960px;
  margin: 24px auto 0;
}

@media (max-width: 900px) {
  .care-layout {
    grid-template-columns: 1fr;
  }
}

.care-main {
  text-align: left;
}

.care-sidebar {
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.06);
  padding: 16px;
}

.care-sidebar h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.care-sidebar ul {
  margin: 0;
  padding-left: 18px;
}

.care-sidebar li {
  margin: 8px 0;
  color: #374151;
}

/* Make each section feel like a step */
.care-main h2 {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 118, 110, 0.18);
  font-size: 22px;
}

.care-main p {
  margin: 12px 0;
  line-height: 1.85;
}
/* Why Choose Us layout */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1000px;
  margin: 20px auto 0;
}

.why-photo {
  width: 100%;
  max-width: 100px;   /* makes photos smaller */
  margin: 0 auto;
  border-radius: 20px;
  object-fit: cover;
}

.why-text p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

/* Mobile friendly */
@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-photo {
    max-width: 420px;
    margin: 0 auto;
  }
}
/* Three-photo row (About page) */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 24px auto;
}

.photo-row img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

/* Mobile-friendly */
@media (max-width: 900px) {
  .photo-row {
    grid-template-columns: 1fr;
  }

  .photo-row img {
    height: 260px;
  }
}
/* Pepper photo row */
.pepper-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 26px auto;
}

.pepper-photos img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0.92;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

/* Mobile friendly */
@media (max-width: 900px) {
  .pepper-photos {
    grid-template-columns: 1fr;
  }

  .pepper-photos img {
    height: 300px;
  }
}
