/* Global */
body {
  font-family: 'Trebuchet MS', sans-serif;
  margin: 0;
  color: #333;
  background-color: #fdfdfd;
}

/* Top contact bar (Home only) */
.top-contact {
  background-color: #008080;
  color: #ffffff;
  text-align: center;
  padding: 6px 10px;
  font-size: 0.95em;
}

/* Header */
header {
  background-color: #008080;
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.small-logo { max-height: 60px; }
header nav a {
  margin: 0 12px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
header nav a:hover { color: #ff7f50; }

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #008080, #ff7f50);
  color: #fff;
}
.site-title {
  font-size: 3rem;
  margin: 0.2em 0 0.1em;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.tagline {
  font-size: 1.2rem;
  margin: 6px 0 14px;
  color: #ffffff;
}
.hero-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 380px));
  gap: 16px;
  justify-content: center;
  margin: 16px auto 8px;
}
.hero-photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.slogan {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 24px 0 16px;
  line-height: 1.25;
}
.cta-button {
  background: linear-gradient(45deg, #ff7f50, #008080);
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1em;
  display: inline-block;
  margin-top: 8px;
}
.cta-button:hover { opacity: 0.9; }

/* Brand logo showcase (below CTA) */
.brand-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 0 10px;
}
.brand-logo {
  width: 480px;
  max-width: 90%;
  height: auto;
  display: block;
}

/* Page backgrounds */
.soft-teal-bg {
  background: linear-gradient(180deg, #eaf7f7 0%, #ffffff 60%);
}

/* Cards & Sections */
.service-card {
  background: #ffffff;
  border: 2px solid #008080;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px auto;
  max-width: 1100px;
}
@media (max-width: 900px) {
  .services-row { grid-template-columns: 1fr; }
}

/* Notes section (smaller text) */
.notes {
  font-size: 0.9em;
  margin: 20px auto;
  max-width: 800px;
}
hr {
  border: 0;
  height: 3px;
  background: linear-gradient(90deg, #008080, #ff7f50);
  border-radius: 2px;
  margin: 20px 0;
}

/* Gallery */
.about-content p { color: #008080; line-height: 1.65; font-size: 1.05rem; }
.about-content p strong, .about-content p em { color: #ff7f50; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin: 10px 0 30px;
}
.gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Forms */
.booking-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.booking-form label { color: #008080; font-weight: bold; margin-top: 8px; }
.booking-form input, .booking-form select, .booking-form textarea {
  margin-bottom: 12px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}
.booking-form button {
  background: linear-gradient(45deg, #ff7f50, #008080);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1em;
}

/* Footer */
footer {
  background-color: #008080;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
footer p { margin: 0; }
