/* Base Styles & Variables */
:root {
  --primary-color: #74c0fc; /* Furina Blue */
  --primary-dark: #4a90e2;
  --secondary-color: #25d366;
  --accent-color: #f3d9a2; /* Furina Gold */
  --text-light: #333;
  --text-dark: #eee;
  --bg-light: #f8f9fa; /* Furina White */
  --bg-dark: #121212;
  --card-light: #fff;
  --card-dark: #222;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Font & Body */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #b3d9f5, #e7f0fd); /* Furina Theme */
  color: var(--text-light);
  transition: var(--transition);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body.dark {
  background: var(--bg-dark);
  color: var(--text-dark);
}

/* Optional: Waves Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.svgrepo.com/show/2046/waves.svg') no-repeat center/cover;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100px); }
}

/* Particle Bubble Effect */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: rgba(243, 217, 162, 0.3); /* Warna emas transparan */
  border: 1px solid rgba(116, 192, 252, 0.5); /* Border biru */
  bottom: -100px;
  width: 20px;
  height: 20px;
  background: rgba(116, 192, 252, 0.4);
  border-radius: 50%;
  animation: riseBubble 10s infinite ease-in;
  opacity: 0.6;
}


@keyframes riseBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-1200px) scale(1.5);
    opacity: 0;
  }
}

/* Hero Styling */
.hero {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 60px 30px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease forwards;
  text-align: center;
  overflow: hidden;
}

body.dark .hero {
  background: rgba(30, 30, 30, 0.9);
}

.hero h2 {
  font-size: 2.8rem;
  font-family: 'Marcellus', serif;
  color: var(--text-light);
  margin-bottom: 15px;
}

body.dark .hero h2 {
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

body.dark .hero-description {
  color: #ccc;
}

/* Animasi bubble akan aktif jika ditambahkan elemen <div class="bubble-container"> di HTML */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 10px 0;
  border-bottom: 2px solid #eee;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.logo-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  margin: 0;
  color: #2c3e50;
}

.logo-text .tagline {
  margin-top: 4px;
  font-size: 1rem;
  color: #7f8c8d;
  font-style: italic;
}
/* Tambahan debugging */
.button-group {
  position: relative;
  z-index: 10;
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Notification Banner */
.notification-banner {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification-banner i {
  margin-right: 8px;
}

body.dark .notification-banner {
  background: linear-gradient(to right, #8E2DE2, #4A00E0);
}

/* Header */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.logo-container h1 {
  font-size: 2.8rem;
  font-family: 'Marcellus', serif;
  margin-bottom: 5px;
  color: var(--primary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.tagline {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

body.dark .tagline {
  color: #bbb;
}

.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 5px;
}

body.dark .badge {
  background: rgba(30, 30, 30, 0.9);
}

.badge i {
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease forwards;
  position: relative;
  overflow: hidden;
}

body.dark .hero {
  background: rgba(30, 30, 30, 0.9);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
  opacity: 0.5;
}

.hero h2 {
  font-size: 2.8rem;
  font-family: 'Marcellus', serif;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
}

body.dark .hero h2 {
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

body.dark .hero-description {
  color: #ccc;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 25px;
  border-radius: 12px;
  min-width: 120px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

body.dark .stat-item {
  background: rgba(30, 30, 30, 0.8);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

body.dark .stat-label {
  color: #aaa;
}

/* Buttons */

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 5px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  background: var(--primary-color);
  color: #fff;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.social-btn i {
  font-size: 1.1rem;
}

/* Specific Platform Colors */
.social-btn.instagram { background: #e1306c; }
.social-btn.instagram:hover { background: #c13584; }

.social-btn.tiktok { background: #000; }
.social-btn.tiktok:hover { background: #333; }

.social-btn.wa-group, 
.social-btn.wa-admin, 
.social-btn.wa-nokos { background: #25d366; }
.social-btn.wa-group:hover, 
.social-btn.wa-admin:hover, 
.social-btn.wa-nokos:hover { background: #128c7e; }

.social-btn.discord { background: #7289da; }
.social-btn.discord:hover { background: #5865f2; }

.social-btn.telegram { background: #0088cc; }
.social-btn.telegram:hover { background: #005f8c; }

.social-btn.itemku { background: #ff8c00; }
.social-btn.itemku:hover { background: #ff6b00; }

/* ===== Testimonials Form Section ===== */
.testimonials {
  margin: 50px auto;
  padding: 20px;
  max-width: 800px;
}

.testimonial-form {
  background: var(--card-light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

body.dark .testimonial-form {
  background: var(--card-dark);
}

.testimonial-form h2 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark .testimonial-form input,
body.dark .testimonial-form textarea {
  background: #2a2a2a;
  border-color: #444;
  color: #ddd;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 6px rgba(116, 192, 252, 0.5);
}

.testimonial-form textarea {
  min-height: 120px;
  resize: vertical;
}

.testimonial-form button {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.testimonial-form button:hover {
  background: #1eb857;
  transform: translateY(-2px);
}

.testimonial-form button i {
  margin-right: 6px;
}


/* ===== Testimonial Results Styling ===== */
.testimonial-results {
  margin: 50px auto;
  padding: 20px;
  max-width: 1200px;
}

.testimonial-results .section-title {
  text-align: center;
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--card-light);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

body.dark .testimonial-card {
  background: var(--card-dark);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.testimonial-content {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

body.dark .testimonial-content {
  color: #ccc;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.author-name {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1rem;
}

.author-game {
  font-size: 0.85rem;
  background: #f1f1f1;
  padding: 4px 10px;
  border-radius: 50px;
  color: #555;
}

body.dark .author-game {
  background: #333;
  color: #bbb;
}


.video-section {
  margin: 60px auto;
  text-align: center;
}

.video-section h2 {
  margin-bottom: 30px;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .video-container {
    max-width: 95%;
  }
}
/* Gallery Section */
.section-title {
  font-size: 1.8rem;
  font-family: 'Marcellus', serif;
  margin-bottom: 25px;
  text-align: center;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

body.dark .section-title {
  color: var(--text-dark);
}

.section-title i {
  font-size: 1.5rem;
}

.gallery-section {
  margin: 50px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--card-light);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

body.dark .gallery-item {
  background: var(--card-dark);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.img-caption {
  text-align: center;
  padding: 15px;
  background-color: #f9f9f9;
  font-weight: 500;
  transition: var(--transition);
}

body.dark .img-caption {
  background-color: #2a2a2a;
  color: #ddd;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #74c0fc, #f3d9a2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 0.2;
}


/* Footer */
.footer {
  background: #f5f5f5;
  padding: 50px 0 20px;
  margin-top: 50px;
  border-radius: 16px 16px 0 0;
}

body.dark .footer {
  background: #1a1a1a;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section {
  padding: 0 15px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-family: 'Marcellus', serif;
}

.footer-section p {
  margin-bottom: 15px;
  color: #666;
}

body.dark .footer-section p {
  color: #aaa;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

body.dark .contact-list li {
  color: #aaa;
}

.contact-list i {
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #666;
}

body.dark .footer-bottom {
  border-top: 1px solid #333;
  color: #aaa;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: #666;
  font-size: 1.2rem;
  transition: var(--transition);
}

body.dark .social-links a {
  color: #aaa;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Dark Mode Toggle */
.toggle-dark {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.toggle-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.light-icon {
  display: none;
}

body.dark .dark-icon {
  display: none;
}

body.dark .light-icon {
  display: inline;
}

/* Popup Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-container h1 {
    font-size: 2.2rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .stats-container {
    gap: 15px;
  }
  
  .stat-item {
    padding: 10px 15px;
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .toggle-dark {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .toggle-dark .toggle-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .social-btn {
    width: 100%;
    justify-content: center;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
}
