* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #38d474, #043f33);
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* Artikel Section */
.artikel {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  min-height: 100vh;
}

.artikel h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  animation: fadeIn 1s ease;
}

.artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.artikel-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.artikel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.artikel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.artikel-card h3 {
  font-size: 1.5rem;
  padding: 15px;
}

.artikel-card .date {
  font-size: 0.9rem;
  color: #ffd700;
  padding: 0 15px 10px;
}

.artikel-card p {
  font-size: 1rem;
  color: #e0e0e0;
  padding: 0 15px 15px;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.5s ease;
}

.popup-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.popup-cup-content .date {
  font-size: 0.9rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.popup-content p#popup-content {
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.popup-content p#popup-content:last-child {
  margin-bottom: 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.tts-btn {
  padding: 10px 20px;
  background: #ffd700;
  color: #333;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 15px;
  transition: transform 0.3s ease;
}

.tts-btn:hover {
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0, 0, 0.8);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .artikel h2 {
    font-size: 1.8rem;
  }

  .artikel-card h3 {
    font-size: 1.2rem;
  }

  .popup-content {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .artikel h2 {
    font-size: 1.5rem;
  }

  .artikel-card img {
    height: 150px;
  }

  .popup-content img {
    height: 150px;
  }
}
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
.contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        .contact-info, .social-media, .map-container {
            flex: 1;
            min-width: 300px;
           background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        h2 {
            color: #f3f2f2;
            margin-bottom: 20px;
        }
        .contact-info p, .social-media a {
            margin: 10px 0;
            color: #f1eeee;
            text-decoration: none;
        }
        .social-media a {
            display: block;
            padding: 10px;
            background: #00ff8854;
            backdrop-filter: blur(10px);
            
            color: white;
            border-radius: 40px;
            text-align: center;
        }
        .social-media a:hover {
            background: #0056b3;
        }
        #map {
            height: 300px;
            width: 100%;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
        }
