/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #0f2027, #0b1924 60%);
  color: #fff;
  overflow-x: hidden;
}

/* ===== GLOBAL IMAGE FIX ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== GLASS EFFECT ===== */
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-tribal {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 30%, rgba(243,156,18,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(211,84,0,0.08), transparent 40%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 2px,
      transparent 2px,
      transparent 6px
    );
  animation: tribalMove 20s linear infinite;
}

@keyframes tribalMove {
  from { background-position: 0 0; }
  to { background-position: 200px 200px; }
}

/* ===== GLOW ORBS ===== */
.glow-orb {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.6;
}

.orb1 {
  background: #f39c12;
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.orb2 {
  background: #d35400;
  bottom: 10%;
  right: 5%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 10px;
  margin: 10px;
  padding: 1rem;
  z-index: 1000;
}

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

.header-logo {
  height: 70px;
}

.header-text h1 {
  font-size: 1.8rem;
  background: linear-gradient(90deg, #f39c12, #f1c40f);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lang-switch {
  position: absolute;
  right: 20px;
  top: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  padding: 8px 14px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 10px;
  z-index: 1000;
  margin: 10px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 6px 10px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #f39c12;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #f39c12;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero-banner {
  margin: 20px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.8));
  z-index: 1;
}

.slide .text {
  position: absolute;
  bottom: 40px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
  text-shadow: 0 0 20px rgba(243,156,18,0.6);
}

/* ===== SECTIONS ===== */
section {
  margin: 30px 10px;
  padding: 2rem;
  border-radius: 18px;
}

section h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  margin-top: 8px;
  background: repeating-linear-gradient(
    45deg,
    #f39c12,
    #f39c12 5px,
    #000 5px,
    #000 10px
  );
}

section:hover {
  box-shadow: 0 0 30px rgba(243,156,18,0.2);
  transform: translateY(-4px);
}

/* ===== BUTTON ===== */
.cta-btn {
  background: linear-gradient(135deg, #f39c12, #d35400);
  border-radius: 30px;
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(243,156,18,0.6);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
  transition: 0.4s ease;
}

/* ===== TEAM ===== */
.team-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: 0.3s;
  max-width: 260px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(243,156,18,0.4);
}

.team-photo {
  width: 110px;
  height: 110px;
  max-width: 110px;
  max-height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ===== CONTACT SOCIAL ICONS ===== */
.contact-social-icons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
}

.contact-social-icons .social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-social-icons .social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(243,156,18,0.4);
}

.contact-social-icons .social-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2rem;
  opacity: 0.8;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .glow-orb {
    display: none;
  }

  .bg-tribal {
    animation: none;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 10px;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    padding: 15px;
    border-radius: 12px;
    width: 200px;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-banner {
    height: 220px;
  }

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

  .team-row {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

}