:root {
  --primary-gradient: linear-gradient(135deg, #ff6b6b, #ff8e53);
  --secondary-gradient: linear-gradient(135deg, #4ecdc4, #44a08d);
  --accent-gradient: linear-gradient(135deg, #a8edea, #fed6e3);
  --dark-gradient: linear-gradient(135deg, #a5e9d2, #7df0c9);

  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --accent-color: #ffd93d;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --black: #000000;

  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);

  --border-radius: 20px;
  --border-radius-large: 30px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #ffdfd7 0%, #ffdfd7 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-gradient);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary-gradient);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-gradient);
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Language Switch */
.language-switch {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
}

.lang-container {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.lang-btn.active {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-light);
}

.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  background-color: #ffdfd7;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem 0;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.logo-container {
  position: relative;
  margin-bottom: 3rem;
  display: inline-block;
}

.logo {
  max-width: 350px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

.logo-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-large);
  opacity: 0;
  filter: blur(20px);
  transition: var(--transition);
  z-index: -1;
}

.logo-container:hover .logo-glow {
  opacity: 0.3;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(112, 58, 41, 0.9);
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.6s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.8s;
}

.stat-item:nth-child(3) {
  animation-delay: 1s;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--stats-color);
  font-family: 'Fredoka', sans-serif;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--stats-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.2s forwards;
}

/* Buttons */
.cta-primary,
.cta-secondary,
.cta-mega {
  position: relative;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-primary:hover .button-glow {
  left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Sections */
.features-section,
.timeline-section {
  padding: 6rem 0;
  position: relative;
}

.features-section {
  background: var(--white);
}

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-dark);
}

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

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Timeline */
.timeline-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-gradient);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 0 4px var(--white);
}

.timeline-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  width: calc(50% - 40px);
  transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: 40px;
}

.timeline-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.timeline-date {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-card h3 {
  font-family: 'Fredoka', sans-serif;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Final CTA */
.final-cta {
  padding: 6rem 0;
  background: var(--dark-gradient);
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-mega {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--shadow-heavy);
  position: relative;
}

.cta-mega:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--green);
  padding: 3rem 0;
  text-align: center;
}

.footer-text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  color: var(--green);
}

/* Hide language switch */
.language-switch {
  display: none;
}

.instagram-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.instagram-link:hover {
  color: var(--primary-color);
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: var(--transition);
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .language-switch {
    top: 1rem;
    right: 1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-card {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
  }

  .footer-logos {
    gap: 2rem;
  }

  .footer-logo {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem 0;
  }

  .logo {
    max-width: 280px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .timeline-card {
    padding: 1.5rem;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gradient);
}

@media only screen and (max-width: 768px) {
  body, 
  .animated-bg {
    background-color: #ffdfd7 !important;
  }
  
  /* Optional: Add this if text colors are also affected */
  body {
    color: #4a2511 !important;
  }
}