:root {
  --bg-1: #fff7e8;
  --bg-2: #ffe6f0;
  --bg-3: #e2f7ff;
  --text: #0d0e0d;
  --accent: #ff7a59;
  --accent-2: #ffbc42;
  --accent-3: #38bdf8;
  --card: #ffffffcc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2), var(--bg-3));
  background-size: 200% 200%;
  animation: bgShift 14s ease infinite;
}

.hero {
  position: relative;
  min-height: 95vh;
  overflow: hidden;
  padding: 1rem 1.2rem 4rem;
  background: radial-gradient(circle at 20% 20%, #ffffff99, transparent 45%),
    radial-gradient(circle at 85% 15%, #fff3b099, transparent 40%),
    linear-gradient(135deg, #ff9b71, #ff5c8a 50%, #5cc8ff);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: #ffffff2c;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero-content {
  max-width: 900px;
  margin: 5rem auto 0;
  color: #fff;
  position: relative;
  z-index: 2;
}

.tag {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  background: #ffffff2a;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.hero-content h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 7vw, 4rem);
  margin: 0;
  line-height: 1.08;
}

.hero-content p {
  max-width: 680px;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  margin-top: 0.8rem;
  background: #fff;
  color: #e32a6f;
  font-weight: 700;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
}

.floating-shapes span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.28;
  animation: float 8s linear infinite;
}

.floating-shapes span:nth-child(1) {
  width: 120px;
  height: 120px;
  background: #fff;
  left: 6%;
  top: 70%;
}

.floating-shapes span:nth-child(2) {
  width: 200px;
  height: 200px;
  background: #ffd166;
  right: 3%;
  top: 48%;
  animation-duration: 10s;
}

.floating-shapes span:nth-child(3) {
  width: 90px;
  height: 90px;
  background: #8ecae6;
  right: 30%;
  top: 20%;
}

.floating-shapes span:nth-child(4) {
  width: 70px;
  height: 70px;
  background: #fff;
  left: 28%;
  top: 24%;
  animation-duration: 12s;
}

.section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1.2rem;
}

.section-title,
.section h3 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 1rem;
}

.intro {
  margin-top: 3rem;
  background: #ffffffbf;
  border-radius: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card,
.quote,
.column,
.contact-box,
.item,
.banner {
  background: var(--card);
  border: 1px solid #ffffff;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 26px #0000000e;
}

.card h4,
.column h4,
.banner h4 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  color: #d42b6e;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

.long-list {
  display: grid;
  gap: 0.8rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.banner {
  margin-top: 1rem;
  background: linear-gradient(110deg, #ffde7d, #ffafcc, #8ecae6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
  cursor: pointer;
}

.g {
  min-height: 110px;
  border-radius: 16px;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  text-shadow: 0 2px 6px #00000030;
}

.g1 { background: linear-gradient(135deg, #7c2d12, #ea580c); }
.g2 { background: linear-gradient(135deg, #fb7185, #f43f5e); }
.g3 { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.g4 { background: linear-gradient(135deg, #4f46e5, #818cf8); }
.g5 { background: linear-gradient(135deg, #c2410c, #fb923c); }
.g6 { background: linear-gradient(135deg, #7e22ce, #d946ef); }

.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote {
  font-style: italic;
}

footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: #5b2d3f;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  50% {
    transform: translateY(-18px) rotate(10deg);
  }
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 700px) {
  .hero {
    padding-bottom: 2.5rem;
  }

  .nav {
    justify-content: center;
  }

  .hero-content {
    margin-top: 2.5rem;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
