* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

a {
  color: rgb(112, 111, 111);
  font-weight: bold;
}

body {
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #f7f5f2;
  opacity: 0;
  transform: scale(0.98);
  filter: blur(6px);
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

/* HERO */
.hero {
  position: relative;
  padding: 60px 15px;
  text-align: center;
  overflow: hidden;
}

/* Blurred background layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.1); /* prevents blur edges showing */
  z-index: 0;
}

/* Optional soft white overlay for readability */


/* Keep content above blur */
.hero-content {
  position: relative;
  padding: 25px;
  z-index: 2;
}


.logo {
  margin-top: -50px;
  width: 400px;

}

h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 50px;
  line-height: 1.1;
  margin-top: -50px; /* pulls text closer to logo */
  margin-bottom: 25px;
}

.sub {
  font-size: 25px;
  margin-bottom: 40px;
}

.desc {
  font-size: 25px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #7a2d2d;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  margin-bottom: 20px;
}

.features {
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.features span + span::before {
  content: "•";
  margin-right: 20px;
  color: #7a2d2d;
}
/* ABOUT */
.about {
  display: flex;
  align-items: center;
  padding: 80px 10%;
  gap: 40px;
  background: url('images/dragonfly-pattern.png') center/cover;
}

.about-text {
    font-family: 'Bellota Text', serif;
   font-size: 25px;
  flex: 1;
  opacity: 1;
}

.about-text h2 {
  font-family: 'Merriweather', serif;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* pushes image to the right */
}

.about-img img {
  width: 100%;
  max-width: 1000px; /* controls size */
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,.50);
}

/* SERVICES */
.services {
  text-align: center;
  padding: 80px 10%;
  background: url('images/dragonfly-pattern.png') center/cover;
}

.services h2 {
  font-family: 'Bellota Text', serif;
  font-size: 60px;
  margin-bottom: 40px;
}
.services-icon {
  display: block;
  margin: 0 auto 20px auto; /* centers + adds spacing below */
  width: 25%; /* adjust as needed */
  height: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}


.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.card p {
    font-family: 'Bellota Text', serif;
    text-align: center;
    font-size: 30px;
}
.card img {
    width: 50%;
    max-width: 150px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

/* WHY */
.why {
  display: flex;
  align-items: center;
  padding: 80px 10%;
  gap: 40px;
  background: url('images/dragonfly-pattern.png') center/cover;
}

.why-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-text h2 {
  font-family: 'Playfair Display', serif;
   font-size: 50px;
}

.why-text ul {
  list-style: none;
}

.why-text li {
  font-family: 'Bellota Text', serif;
  font-size: 30px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 70px;
}
.why-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7a2d2d;
  font-weight: bold;
}
.why-img {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* pushes image to the right */
}
.why-img img {
  width: 100%;
  max-width: 1000px; /* controls size */
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,.50);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .about, .why {
    flex-direction: column;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
.reviews {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background: url('images/dragonfly-pattern.png') center/cover;
}

.reviews h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 40px;
}

/* viewport */
.reviews-wrapper {
  overflow: hidden;
  width: 100%;
}

/* moving track */
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 25s linear infinite;
}

/* bubble style */
.review {
  background: white;
  padding: 20px;
  border-radius: 12px;
  min-width: 280px;
  max-width: 320px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 35px rgba(0,0,0,.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #7a2d2d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.review p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.review span {
  font-size: 14px;
  color: #7a2d2d;
  font-weight: 500;
}

.reviews-track {
  display: flex;
  gap: 30px;
  width: fit-content;
  animation: scrollReviews 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.review-meta strong {
  font-size: 14px;
}

.date {
  font-size: 12px;
  color: #777;
}

.stars {
  color: #7a2d2d;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

/* infinite scroll animation */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
position: relative;
  max-width: 1100px;
  margin: 100px auto;
  padding: 60px;
  gap: 50px;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: url('images/dragonfly-pattern.png') center/cover;
}

.contact::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;

  background: radial-gradient(
    circle at center,
    rgba(122, 45, 45, 0.25),
    transparent 70%
  );

  filter: blur(40px);
  opacity: 0.7;
}

.contact-text,
.contact-img {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .contact {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .contact-buttons {
    justify-content: center;
  }

  .contact-img {
    justify-content: center;
  }
}

.contact-text {
  flex: 1;
}

.contact-text h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 50px;
  margin-bottom: 15px;
}

.contact-text p {
  margin-bottom: 25px;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #7a2d2d;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1877f2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-icon img {
  width: 22px;
  height: 22px;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

/* Facebook button style */
.btn.fb {
  background: #1877f2;
}

.btn.sms {
  background: #2d7a4a; /* calm green tone */
}

.contact-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-img img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #7a2d2d;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-img img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .contact {
    flex-direction: column;
    text-align: center;
  }

  .contact-img {
    justify-content: center;
  }

  .contact-buttons {
    justify-content: center;
  }
}

.img-glow {
  position: relative;
  display: inline-block;
}

.img-glow img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #7a2d2d;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-glow img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.img-glow::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(122, 45, 45, 0.35),
    rgba(122, 45, 45, 0) 70%
  );
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}

@media (max-width: 900px) {
  .contact {
    flex-direction: column;
    text-align: center;
  }

  .contact-img {
    justify-content: center;
  }

  .contact-buttons {
    justify-content: center;
  }
}

.footer {
  text-align: center;
  padding: 30px 10%;
  font-size: 14px;
  color: #777;

  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 1px solid rgba(0,0,0,0.05);
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.copyright {
  position: relative;
  display: inline-block;
  color: #666;
  overflow: hidden;
}

.copyright::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.6) 50%,
    transparent 100%
  );

  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

/* BACKDROP */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);

  z-index: 999999;

  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

/* FORCE-CENTERED POPUP */
.booking-content {
  position: fixed;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(.96);

  width: min(1000px, 92vw);
  max-height: 90vh;

  overflow-y: auto;

  border-radius: 35px;

  background:
    linear-gradient(rgba(255,255,255,.82),
    rgba(255,255,255,.82)),
    url("images/dragonfly-pattern.png");

  background-size: cover;
  background-position: center;

  box-shadow: 0 20px 60px rgba(0,0,0,.25);

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  padding: 60px;

  transition: .3s ease;
}

.booking-modal.active .booking-content {
  transform: translate(-50%, -50%) scale(1);
}

/* TEXT */
.booking-text h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.booking-text p {
  margin-bottom: 28px;
  line-height: 1.7;
}

.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.booking-buttons .btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

/* IMAGE */
.booking-image {
  display: flex;
  justify-content: center;
}

.booking-image img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  display: block;

  border-radius: 50%; /* makes it circular */

  border: 6px solid rgba(122, 45, 45, 1);
  box-shadow: 0 12px 35px rgba(0,0,0,.15);
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 18px;
  right: 22px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,.9);
  font-size: 2rem;
  cursor: pointer;

  z-index: 999;
}

/* MOBILE */
@media (max-width: 768px) {
  .booking-content {
    grid-template-columns: 1fr;
    width: 94vw;
    padding: 30px;
    text-align: center;
  }

  .booking-buttons {
    margin: auto;
  }

  .booking-image {
    order: -1;
    margin-bottom: 20px;
  }

  .booking-image img {
    max-width: 220px;
  }
}


