/* Import Google Fonts - Rounded, playful fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #8b5cf6;
  --primary-pink: #ec4899;
  --primary-blue: #3b82f6;
  --primary-yellow: #fbbf24;
  --primary-orange: #f97316;
  --dark-bg: #1e1b4b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --gradient-magic: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #667eea 100%);
  --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-ocean: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
  font-family: 'Fredoka', 'Poppins', sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.studio-finder {
  position: relative;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sparkles Animation */
.sparkles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sparkle {
  position: absolute;
  font-size: 2rem;
  animation: float 3s infinite ease-in-out;
  opacity: 0;
}

.sparkle-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 30%;
  right: 15%;
  animation-delay: 0.5s;
}

.sparkle-3 {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.sparkle-4 {
  top: 80%;
  right: 25%;
  animation-delay: 1.5s;
}

.sparkle-5 {
  top: 40%;
  left: 50%;
  animation-delay: 2s;
}

.sparkle-6 {
  top: 70%;
  right: 40%;
  animation-delay: 2.5s;
}

.sparkle-7 {
  top: 20%;
  left: 30%;
  animation-delay: 0.3s;
}

.sparkle-8 {
  top: 50%;
  right: 20%;
  animation-delay: 1.2s;
}

.sparkle-9 {
  top: 75%;
  left: 40%;
  animation-delay: 1.8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(0);
    opacity: 0;
  }
  25% {
    transform: translateY(-30px) rotate(90deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-60px) rotate(180deg) scale(1.2);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-90px) rotate(270deg) scale(0.9);
    opacity: 0.5;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(90deg, #fff 0%, #fbbf24 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  color: var(--dark-bg);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.7);
  }
}

.hero-image {
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  fill: var(--light-bg);
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-magic);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
  }
}

/* Section Title */
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

/* Mission Section */
.mission-section {
  padding: 6rem 2rem;
  background: var(--white);
  text-align: center;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-text {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  animation: fadeInUp 0.8s ease-out;
}

.mission-text.highlight {
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* What We Do Section */
.what-we-do-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
  text-align: center;
}

.what-we-do-image {
  margin: 3rem auto;
  max-width: 800px;
}

.what-we-do-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  animation: floatImage 4s ease-in-out infinite;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-magic);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-purple);
}

.card-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.card-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--primary-pink);
  margin-top: 1rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 6rem 2rem;
  background: white;
  text-align: center;
}

.why-choose-image {
  margin: 3rem auto;
  max-width: 800px;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
  animation: floatImage 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  color: white;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.5);
}

.benefit-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.benefit-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-description {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* About Section */
.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #fff 0%, #fce7f3 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  animation: floatImage 4s ease-in-out infinite;
  animation-delay: 1s;
}

.about-text {
  animation: fadeInUp 0.8s ease-out;
}

.about-paragraph {
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-paragraph.highlight {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 2rem;
}

.about-paragraph.final {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary-purple);
  font-weight: 600;
  margin-top: 2rem;
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  text-align: center;
  color: white;
}

.contact-intro {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-tagline {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: shimmer 3s linear infinite;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto;
}

.contact-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-item strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.contact-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  display: inline-block;
}

.contact-link:hover {
  color: var(--primary-yellow);
  border-bottom: 2px solid var(--primary-yellow);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 2rem;
  background: var(--dark-bg);
  text-align: center;
  color: white;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .mission-text {
    font-size: 1.2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--primary-purple);
  color: white;
}
