/* Global Styles */
:root {
  --primary-purple: #6b21a8;
  --secondary-pink: #ec4899;
  --accent-magenta: #d946ef;
  --light-bg: #faf8ff;
  --dark-bg: #1a0033;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --gradient-1: linear-gradient(135deg, #6b21a8 0%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #d946ef 0%, #6b21a8 100%);
  --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5);
  --glow-magenta: 0 0 30px rgba(217, 70, 239, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a0033 0%, #2d1047 50%, #1a0033 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: rgba(26, 0, 51, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 72, 153, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
}

.nav-logo i {
  color: #ec4899;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ec4899;
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.7;
  animation: blob 8s infinite;
}

.blob1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #6b21a8 0%, #ec4899 100%);
  top: -100px;
  left: -100px;
  animation: blob 8s infinite;
  filter: drop-shadow(0 0 60px rgba(236, 72, 153, 0.5));
}

.blob2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #d946ef 0%, #6b21a8 100%);
  bottom: -50px;
  right: -50px;
  animation: blob 8s infinite reverse;
  filter: drop-shadow(0 0 50px rgba(217, 70, 239, 0.4));
}

@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -50px) scale(1.05);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }
  75% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #ec4899 50%, #d946ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: var(--glow-pink);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-magenta), 0 10px 30px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(236, 72, 153, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(236, 72, 153, 0.2);
  border-color: #ec4899;
  transform: translateY(-3px);
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.section-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Tentang Section */
.tentang {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(45, 16, 71, 0.5) 100%);
}

.tentang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tentang-card {
  padding: 2.5rem;
  text-align: center;
  border-radius: 20px;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tentang-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.tentang-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Konten Section */
.konten {
  background: linear-gradient(135deg, rgba(45, 16, 71, 0.5) 0%, rgba(26, 0, 51, 0.5) 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-card {
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
}

.video-thumbnail {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(236, 72, 153, 0.2));
  border-radius: 15px;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: #ec4899;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gradient-1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.video-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.video-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ec4899;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ec4899;
  transition: var(--transition);
}

.card-link:hover {
  gap: 1rem;
}

.card-link:hover::after {
  width: 100%;
}

/* Glass Morphism */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(236, 72, 153, 0.1);
}

/* Quote Section */
.quote {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(45, 16, 71, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.quote-container {
  padding: 4rem;
  text-align: center;
  max-width: 800px;
}

.quote-icon {
  font-size: 4rem;
  color: #ec4899;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.quote-text {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}

.quote-author {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* Motivasi Section */
.motivasi {
  background: linear-gradient(135deg, rgba(45, 16, 71, 0.5) 0%, rgba(26, 0, 51, 0.5) 100%);
}

.motivasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.motivasi-card {
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
}

.motivasi-card:hover {
  transform: translateY(-5px);
}

.motivasi-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.motivasi-card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.motivasi-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Sosial Section */
.sosial {
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.5) 0%, rgba(45, 16, 71, 0.5) 100%);
  text-align: center;
}

.social-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 1.1rem;
  color: white;
}

.social-btn.tiktok {
  background: var(--gradient-1);
  box-shadow: var(--glow-pink);
}

.social-btn.youtube {
  background: linear-gradient(135deg, #ff0000 0%, #d946ef 100%);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Footer */
.footer {
  background: rgba(10, 0, 30, 0.9);
  border-top: 1px solid rgba(236, 72, 153, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: #ec4899;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 72, 153, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom i {
  color: #ec4899;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu li {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .tentang-grid,
  .video-grid,
  .motivasi-grid {
    grid-template-columns: 1fr;
  }

  .quote-text {
    font-size: 1.25rem;
  }

  .quote-container {
    padding: 2rem;
  }

  .video-thumbnail {
    height: 100px;
    font-size: 2rem;
  }

  .social-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section {
    padding: 3rem 0;
  }

  .tentang-card,
  .video-card,
  .motivasi-card {
    padding: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}
