@import url('reset.css');
@import url('components/header.css');
@import url('components/hero.css');
@import url('components/about.css');
@import url('components/history.css');
@import url('components/team.css');
@import url('components/events.css');
@import url('components/news.css');
@import url('components/videos.css');
@import url('components/support.css');
@import url('components/contact.css');
@import url('components/footer.css');
@import url('components/banner.css');

/* Variabel Global */
:root {
  --primary: #2a4365;
  --secondary: #d4af37;
  --accent: #ffffff;
  --bg-dark: #1a202c;
  --bg-light: #edf2f7;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 1rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Gaya Umum */
h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--secondary);
  position: relative;
}

h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--secondary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.content-spacing {
  height: 3rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn {
  background: var(--secondary);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
}

.btn:hover {
  background: #b8962e;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}