
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4e7e2;
  color: #222;
}
a {
  text-decoration: none;
  color: inherit;
}
.header-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
}
.nav-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #3b4f63;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a4c43;
  padding: 4px 8px;
  border-radius: 999px;
}
.nav-links a:hover {
  background: #f4e7e2;
  color: #b23b3b;
}
.main-hero {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #c8d5e0, #f4e7e2);
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.7) 0, transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.5) 0, transparent 55%);
  z-index: -1;
}
.section {
  padding: 70px 16px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-content {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 50px;
  animation: fadeInUp 0.9s ease forwards;
}
.hero-logo {
  width: 150px;
  margin: 0 auto 16px;
  animation: float 5s ease-in-out infinite;
}
.hero-title {
  font-size: 3rem;
  color: #2f3f4f;
  margin-bottom: 6px;
}
.hero-tagline {
  font-size: 1.4rem;
  color: #7b4a46;
  font-style: italic;
  margin-bottom: 18px;
}
.hero-text {
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  color: #444;
}
.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  padding: 11px 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #3b4f63;
  color: #fff;
}
.btn-primary:hover {
  background: #2c3c4b;
}
.btn-outline {
  background: transparent;
  color: #3b4f63;
  border: 1px solid #3b4f63;
}
.btn-outline:hover {
  background: #e6eff4;
}
.section-title {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 28px;
  color: #3b4f63;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border: 1px solid #d9c9c3;
}
.card-soft {
  background: #f4e7e2;
}
.card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #7b4a46;
}
.booking-section {
  background: #e3d8d2;
}
.booking-form {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border: 1px solid #d9c9c3;
  max-width: 650px;
  margin: 0 auto;
}
.booking-form-row {
  margin-bottom: 14px;
}
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}
.booking-form textarea {
  min-height: 90px;
  resize: vertical;
}

.footer {
  padding: 18px 16px;
  text-align: center;
  color: #666;
  font-size: 0.84rem;
  border-top: 1px solid #ddcfc4;
  background: #f9f3ef;
}

/* Floating Get a Quote button */
.floating-quote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}
.floating-quote .btn-primary {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  background: #ddd;
  border-radius: 14px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border-left: 4px solid #3b4f63;
}

/* Animations */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero-title {
    font-size: 2.3rem;
  }
}
