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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: radial-gradient(ellipse at bottom, #220035, #0b0014);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-bottom: 50px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(20, 0, 40, 0.9);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.logo {
  height: 48px;
}

.logo-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s ease;
}

.logo-wrap:hover .logo-text {
  color: #ccc;
}

.navbar ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.navbar ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #fff;
}

.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-btn {
  background: #6e28c9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #8a44ff;
}

select#lang-select {
  background: #1e0033;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 1s ease-in;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Section Headers */
section h2 {
  text-align: center;
  margin: 3rem 0 1.5rem;
  font-size: 2rem;
}

/* Categories */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
}

.bubble-btn {
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.bubble-btn:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px #8a44ff;
}

/* Testimonials */
.testimonial {
  text-align: center;
  margin-bottom: 1rem;
  color: #ddd;
  font-style: italic;
}

/* About */
#about {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 1rem 2rem;
  color: #bbb;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .category-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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