@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(0.5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes blobPulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }

  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

@keyframes liquidBorder {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--text-main);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 44px;
  border: none;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: liquidBorder 8s ease-in-out infinite;
}

.btn:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 15px 30px rgba(224, 122, 95, 0.4);
  background: var(--primary);
}

.btn.extra {
  background: transparent;
  border: 2px solid var(--text-main);
  color: var(--text-main);
  animation: none;
  border-radius: 50px;
}

.btn.extra:hover {
  background: var(--text-main);
  color: #fff;
}

/* 2. HERO SECTION */
.hero {
  height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Abstract background shapes */
  background: radial-gradient(circle at 80% 20%, rgba(224, 122, 95, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(129, 178, 154, 0.15) 0%, transparent 40%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--bg-paper), transparent);
  pointer-events: none;
}

.container1 {
  width: 90%;
  max-width: 800px;
  z-index: 2;
  animation: fadeUp 1s ease-out forwards;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: var(--h1-size);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* 3. PRIVATE PARTIES SECTION (Grid & Glassmorphism) */
.section {
  padding: var(--spacing-lg) 5%;
  position: relative;
}

.content {
  display: grid;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.text-section {
  background: #fff;
  padding: 3rem;
  border-radius: 0 40px 0 40px;
  /* Leaf shape */
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

/* Artistic decorative tape */
.text-section::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 120px;
  height: 30px;
  background: rgba(224, 122, 95, 0.15);
  border-left: 2px dashed rgba(0, 0, 0, 0.1);
  border-right: 2px dashed rgba(0, 0, 0, 0.1);
}

.text-section h1 {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.text-section ul {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.text-section li {
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

/* Custom Bullet Points */
.text-section li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* Image organic shape styling */
.img2 img {
  width: 100%;
  height: auto;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: var(--shadow-soft);
  transition: border-radius 1s ease;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.img2:hover img {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

/* 4. MOMENTS / REVIEW (Scroll Snap) */
#review h1 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  margin-bottom: var(--spacing-md);
}

.gallery-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome */
}

.gallery-item {
  flex: 0 0 85%;
  /* Mobile: Show 85% of card */
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .gallery-item {
    flex: 0 0 40%;
  }
}

@media (min-width: 1200px) {
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }

  .gallery-item {
    flex: unset;
    width: auto;
  }
}

/* 5. HOMEPAGE GALLERY SECTION */
#gallery .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

#gallery h1 {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  margin-bottom: var(--spacing-md);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 7rem;
}


.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: filter 0.3s ease;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    height: 500px;
  }

  .gallery-grid img:nth-child(1) {
    grid-column: 1 / 2;
    height: 100%;
  }

  .gallery-grid img:nth-child(2) {
    grid-column: 2 / 3;
    height: 100%;
  }

  .gallery-grid img:nth-child(3) {
    grid-column: 3 / 4;
    height: 100%;
  }
}

/* 6. ABOUT SECTION */
#about {
  background: #fff;
  border-radius: 40px;
  margin: 0 20px;
}

#about h2 {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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