@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --blush: #e6b7c2;
  --coffee: #6b4a3a;
  --chocolate: #3b2a23;
  --black: #111111;
  --bg: #f7f3f4;
  --white: #ffffff;
  --shadow-soft: 0 12px 28px rgba(59, 42, 35, 0.12);
  --shadow-card: 0 8px 22px rgba(17, 17, 17, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --site-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 8%, #f2cdd7 0%, rgba(242, 205, 215, 0) 38%),
    radial-gradient(circle at 88% 2%, #efd6dc 0%, rgba(239, 214, 220, 0) 32%),
    linear-gradient(180deg, #f8e7ec 0%, #f7f3f4 45%, #f3ebed 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--site-width), 92%);
  margin: 0 auto;
}

/* Sticky navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(251, 239, 243, 0.92);
  border-bottom: 1px solid rgba(107, 74, 58, 0.2);
}

.navbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--chocolate);
  letter-spacing: 0.4px;
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-left: -50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(107, 74, 58, 0.2);
}

.nav-links a {
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--blush);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: var(--chocolate);
  border-radius: 50px;
  transition: transform 0.2s ease;
}

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.4));
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(8px);
  padding: 32px 24px;
  border-radius: 16px;
}

.hero-content h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}

.hero-content p {
  margin: 16px auto 26px;
  max-width: 620px;
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #e6b7c2 0%, #d9a4b1 100%);
  color: #1a1a1a;
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.section {
  padding: 56px 0;
}

/* Alternate section backgrounds to keep the blush palette visible on every page. */
.section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.35);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(230, 183, 194, 0.2), rgba(230, 183, 194, 0.08));
  border-top: 1px solid rgba(107, 74, 58, 0.1);
  border-bottom: 1px solid rgba(107, 74, 58, 0.1);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--chocolate);
}

.section-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: #2c2c2c;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff8fa;
  border: 1px solid rgba(230, 183, 194, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px;
}

.card h3,
.card h4 {
  margin-top: 0;
  color: var(--chocolate);
}

.feature-card img {
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.price {
  margin-top: 10px;
  color: var(--coffee);
  font-weight: 600;
}

/* Carousel */
.carousel-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107, 74, 58, 0.16);
  box-shadow: var(--shadow-soft);
  background: #000;
  width: 100%;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  will-change: transform;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  margin: 0;
  padding: 0;
}

.slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.slide-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(17, 17, 17, 0.6);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.86);
  z-index: 1200;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hours-table th,
.hours-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #efe6e8;
  text-align: left;
}

.hours-table th {
  background: #fff3f6;
}

.map-placeholder {
  min-height: 260px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #efcbd4, #fbf1f4);
  border: 1px dashed #ab7d89;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(107, 74, 58, 0.18);
  box-shadow: var(--shadow-card);
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.review-card {
  border-left: 5px solid var(--blush);
}

.review-stars {
  margin: 6px 0 10px;
  color: var(--coffee);
  font-weight: 600;
  letter-spacing: 1px;
}

.review-meta {
  margin: 4px 0;
  font-size: 0.93rem;
  color: #49362d;
}

.reviews-showcase {
  display: grid;
  gap: 16px;
}

.reviews-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.review-count {
  margin: 0;
  font-weight: 500;
  color: var(--chocolate);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-slide {
  min-width: 100%;
  padding: 24px;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 2;
}

.reviews-nav.prev {
  left: 10px;
}

.reviews-nav.next {
  right: 10px;
}

.reviews-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.review-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(107, 74, 58, 0.28);
}

.review-dot.active {
  background: var(--coffee);
}

.all-reviews {
  margin-top: 8px;
}

.all-reviews[hidden] {
  display: none;
}

.all-reviews-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.all-reviews-controls[hidden] {
  display: none;
}

.all-reviews-controls label {
  font-weight: 500;
  color: var(--chocolate);
}

.all-reviews-controls select {
  border: 1px solid rgba(107, 74, 58, 0.3);
  border-radius: 999px;
  padding: 8px 14px;
  background: #fff8fa;
  color: var(--chocolate);
  font: inherit;
}

.footer {
  margin-top: 36px;
  padding: 26px 0;
  background: linear-gradient(120deg, #3b2a23 0%, #6b4a3a 100%);
  color: #f8eef1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.social a:hover {
  transform: scale(1.1);
}

.social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.reveal {
  animation: fade-up 0.7s ease both;
}

.reveal.delay-1 { animation-delay: 0.08s; }
.reveal.delay-2 { animation-delay: 0.16s; }
.reveal.delay-3 { animation-delay: 0.24s; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .navbar-inner {
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 16px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    right: 4%;
    top: 72px;
    width: min(320px, 92vw);
    display: grid;
    background: var(--white);
    color: var(--black);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    margin-left: 0;
  }

  .brand {
    gap: 8px;
    font-size: 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slide {
    height: 300px;
  }

  .review-slide {
    padding: 22px 18px 24px;
  }

  .reviews-nav {
    width: 38px;
    height: 38px;
  }

  .all-reviews-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 66vh;
  }
}
