* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --accent: #3B82F6; /* blue pulled from logo (approx) */
  --accent-dark: #1f4fb8;
  --soft: #f2f7ff;
  --card: #ffffff;
  --text: #5c3a2e;
  --shadow: rgba(59, 130, 246, 0.12);
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, rgba(255, 239, 246, 0.9), #fff6f5 45%);
  color: var(--text);
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  gap: 15px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.logo {
  font-size: 2.2rem;
  color: #ff5e9c;
  font-family: 'Playfair Display', serif;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #5c3a2e;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff5e9c;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 70px 7%;
  gap: 40px;
}

.hero-image {
  flex: 1 1 420px;
  min-width: 320px;
}

.hero-text h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  line-height: 1.02;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  box-shadow: 0 24px 55px rgba(92, 58, 46, 0.12);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg,var(--accent),var(--accent-dark));
  color: white;
  text-decoration: none;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-right: 12px;
  box-shadow: 0 10px 30px var(--shadow);
}

.btn:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 45px rgba(59,130,246,0.18);
}

.secondary {
  background: var(--accent-dark);
}

/* chat-label removed (floating bubble only). */

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
}

.menu-section,
.gallery-section,
.review-section,
.contact-section {
  padding: 80px 7%;
}

.menu-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.card,
.review-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(92, 58, 46, 0.16);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 18px 16px;
  text-align: center;
  font-size: 1.05rem;
}

.about-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 100px 8%;
}

.about-image img {
  width: 450px;
  border-radius: 30px;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.gallery-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.gallery-grid img {
  width: min(80vw, 340px);
  min-width: min(80vw, 340px);
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

/* floating animation used for chatbot bubble and WhatsApp */
@keyframes floaty { 0% { transform: translateY(0);} 50% { transform: translateY(-6px);} 100% { transform: translateY(0);} }

/* Try to animate Typebot bubble if present */
.typebot-bubble, .typebot-bubble * { animation: floaty 3.6s ease-in-out infinite; }

/* WhatsApp float placed left to avoid overlap with chat bubble */
.whatsapp-float.left { left: 20px; right: auto; }
.whatsapp-float a { animation: floaty 3.2s ease-in-out infinite; background: var(--accent); box-shadow: 0 8px 20px rgba(59,130,246,0.18); }

.gallery-grid img:hover {
  transform: scale(1.04);
}

.review-card {
  padding: 35px;
}

.review-card p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-box {
  max-width: 500px;
  margin: auto;
  background: white;
  text-align: center;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-box p {
  margin-bottom: 15px;
}

.footer {
  background: #5c3a2e;
  color: white;
  padding-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 40px;
  padding: 0 8% 50px;
}

.footer-box h3 {
  margin-bottom: 20px;
}

.footer-box p {
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-box a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.whatsapp-float a {
  width: 65px;
  height: 65px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  background: #fff6f5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: 1s;
}

.loader {
  width: 70px;
  height: 70px;
  border: 8px solid #ffd7e7;
  border-top: 8px solid #ff5e9c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media(max-width:900px) {

  .hero,
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 3rem;
  }

  .hero-image img,
  .about-image img {
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 900px) {

  .hero,
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 50px 5%;
  }

  .hero-text h2 {
    font-size: 2.7rem;
  }

  .hero-text p {
    margin: 0 auto 24px;
  }

  .hero-image img,
  .about-image img {
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .menu-section,
  .gallery-section,
  .review-section,
  .contact-section {
    padding: 60px 5%;
  }

  .menu-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .about-section {
    gap: 30px;
  }

  .contact-box {
    padding: 35px 25px;
  }

  .chat-label {
    display: none;
  }
}

@media (max-width: 560px) {
  .navbar {
    padding: 18px 4%;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 4% 10px;
  }

  .hero-image {
    width: 100%;
    max-width: 520px;
  }

  .hero-buttons {
    display: grid;
    gap: 14px;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .menu-section,
  .gallery-section,
  .review-section,
  .contact-section {
    padding: 20px 4% 40px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px;
  }

  .card img {
    height: 150px;
  }

  .hero-text p,
  .section-title p,
  .about-text p {
    font-size: 0.98rem;
  }
}

