* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #512d38;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 6vw;
  gap: 4vw;
  background:
    radial-gradient(circle at top right, #f4bfdb 0%, rgba(244,191,219,.25) 35%, transparent 60%),
    linear-gradient(135deg, #512d38, #b27092 60%, #87baab);
}

.hero-content {
  color: white;
  max-width: 560px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 480px;
  opacity: .85;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #f4bfdb;
  color: #512d38;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-primary:hover {
  background: #ffe9f3;
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 28px;
  overflow: hidden;
  object-fit: cover;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45);
}
/* SERVICES */
.services {
  padding: 6vw;
  background: #f6d6e3;
}

.services h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #512d38;
  margin-bottom: 4vw;
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

/* Make links behave like blocks */
.service-link {
  display: block;
  text-decoration: none;
  border-radius: 28px;
  overflow: hidden;
}

/* Tile */
.service-tile {
  height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-link:hover .service-tile {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
}

/* Images */
.bartending {
  background-image: url("Images/2175573216336587204.JPG");
}

.photography {
  background-image: url("Images/Jadewithcamera.jpg");
}

.safety {
  background-image: url("https://images.unsplash.com/photo-1550547660-d9450f859349");
}

/* Overlay */
.overlay {
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.45),
    rgba(0,0,0,0)
  );
  color: white;
}

.overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: .5rem;
}

.overlay p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: .9;
}
.bartending { background-image:url("Images/2175573216336587204.JPG"); }
.photography { background-image:url("Images/Jadewithcamera.jpg"); }
.safety { background-image:url("Images/Doublepour.jpg"); }

/* ABOUT */
.about {
  padding: 10vw 6vw 12vw;
  background: #fff8fa;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.about-text {
  max-width: 560px;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem,5vw,3.6rem);
  color: #512d38;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a2c3a;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}
/* FORCE homepage CTA to stay solid */
.hero .btn {
  background: #f4bfdb;
  color: #512d38;
  border: none !important;
  opacity: 1 !important;
}

.hero .btn:hover {
  background: #ffe9f3;
}

/* FORCE ABOUT STACK ON MOBILE (OVERRIDE) */
@media (max-width: 768px) {
  .about-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
  }

  .about-text {
    order: 1;
    text-align: center;
    max-width: 90%;
  }

  .about-image {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  .about-image img {
    width: 100%;
    max-width: 90%;
    height: auto;
  }
}

/* MOBILE HERO FIX */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    white-space: normal; /* allow wrap on mobile */
  }

  .hero-image {
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 90%;
    height: auto;
    border-radius: 22px;
    display: block;
  }
}
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .cta-wrap {
    padding-bottom: 8rem;
  }
}
/* ===========================
   TESTIMONIALS SECTION
=========================== */

.testimonials {
  padding: 8vw 6vw;
  background: #fff8fa;
  overflow: hidden;
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  text-align: center;
  color: #512d38;
  margin-bottom: 4rem;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scrollTestimonials 70s linear infinite;
}

/* CARD */
.testimonial {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.4rem 2.2rem;
  width: 320px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  border: 2px solid #f4bfdb;
  box-sizing: border-box;
}

/* HEADER */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* NAME + STARS */
.testimonial strong {
  display: block;
  font-size: 0.95rem;
  color: #512d38;
}

.stars {
  font-size: 0.85rem;
  color: #f4bfdb;
  letter-spacing: 2px;
}

/* TEXT */
.testimonial p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a2c3a;
}

/* SCROLL */
@keyframes scrollTestimonials {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial {
    width: 280px;
  }

  .testimonial-track {
    animation-duration: 90s;
  }
}
