@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

:root {
  --primary: #ff579a;
  /* Playful Pink */
  --secondary: #42b9f5;
  /* Bright Blue */
  --tertiary: #ffc843;
  /* Sunny Yellow */
  --quaternary: #9d4edd;
  /* Magical Purple */
  --bg-color: #f5f8fc;
  --text-color: #2b2b2b;
  --header-bg: rgba(255, 255, 255, 0.95);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
  font-weight: 900;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--quaternary);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 90px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container img:hover {
  transform: scale(1.1) rotate(3deg);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-color);
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 5px;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px;
  background: linear-gradient(-45deg, var(--tertiary), var(--quaternary), var(--secondary));
  background-size: 300% 300%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
  border-bottom-left-radius: 20% 5%;
  border-bottom-right-radius: 20% 5%;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.highlight {
  color: var(--tertiary);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 87, 154, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 87, 154, 0.6);
}

/* Floating Shapes in Hero */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.shape-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 20%;
  left: 15%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  top: 60%;
  right: 10%;
  transform: rotate(45deg);
}

.shape-3 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  bottom: 15%;
  left: 25%;
  background: var(--tertiary);
  opacity: 0.8;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 30px;
  background: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:nth-child(1) {
  border-color: var(--tertiary);
}

.feature-card:nth-child(2) {
  border-color: var(--secondary);
}

.feature-card:nth-child(3) {
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  font-size: 1.1rem;
  color: #555;
}

/* Gallery */
.main-content {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery {
  column-count: 4;
  column-gap: 25px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
  cursor: pointer;
  border: 4px solid transparent;
  padding: 10px;
}

.gallery-item:nth-child(even) {
  border-color: var(--secondary);
}

.gallery-item:nth-child(odd) {
  border-color: var(--tertiary);
}

.gallery-item:nth-child(3n) {
  border-color: var(--primary);
}

.gallery-item:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background-color: #f0f0f0;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary), var(--quaternary));
  color: #fff;
  text-align: center;
  border-top-left-radius: 20% 5%;
  border-top-right-radius: 20% 5%;
}

.testimonials .section-title {
  color: #fff;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
}

.testimonial h4 {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--tertiary);
  font-style: normal;
}

/* CTA */
.cta {
  padding: 100px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.location-badge {
  display: inline-block;
  background: var(--tertiary);
  color: var(--text-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(255, 200, 67, 0.4);
  transition: transform 0.3s ease;
}

.location-badge:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Footer */
.footer {
  background: var(--text-color);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-top-left-radius: 50% 10%;
  border-top-right-radius: 50% 10%;
  margin-top: 50px;
}

/* Responsive Queries */
@media (max-width: 1200px) {
  .gallery {
    column-count: 3;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 900px) {
  .gallery {
    column-count: 2;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .nav-menu {
    display: none;
  }

  /* Hide nav on mobile for simplicity */
  .header {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .logo-container img {
    height: 50px;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .location-badge {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .testimonial {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}

/* Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}