:root {
  --bg-dark: #0a0a0a;
  --bg-header: #111111;
  --bg-section: #00ccff;
  --text-light: #000000;  
  --text-gold: #ffffff;   
  --text-muted: #777777;
  --text-normal: #ccc;
  --font-serif: 'Georgia', serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  background-color: var(--bg-dark);
  color: var(--text-normal);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--bg-header);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vh 5vw;
  border-bottom: 2px solid #00ccff;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 0.5vh 1vh rgba(0, 204, 255, 0.2);
}

.logo img {
  height: 8vh;
  width: auto;
  max-height: 80px;
}

nav .menu {
  display: flex;
  gap: 2.5vw;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

nav .menu li a {
  text-decoration: none;
  color: var(--text-gold);
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

nav .menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00ccff;
  transition: width 0.3s ease;
}

nav .menu li a:hover {
  color: #00ccff;
}

nav .menu li a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  text-align: center;
  padding: 8vh 5vw;
  color: var(--text-gold);
  background-color: var(--bg-dark);
}

.hero h1 {
  font-size: 5vw;
  margin-bottom: 1rem;
  color: #00ccff;
  text-shadow: 0 0.2vh 0.4vh rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-normal);
  letter-spacing: 0.5px;
}

.hero-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  margin-top: 30px;
  border-radius: 10px;
  background-color: var(--bg-section);
}

/* Section / Stats */
section, .stats {
  background-color: var(--bg-header);
  color: var(--text-normal);
  padding: 60px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.stats h2 {
  font-size: 2.25rem;
  margin-bottom: 40px;
  text-align: left;
  color: #00ccff;
}

.stats h2 .dot {
  color: var(--text-light);
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stats .text p {
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--text-normal);
}

.stats-numbers {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  flex: 1;
  min-width: 180px;
  text-align: center;
  background-color: var(--bg-section);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00ccff;
  box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.7);
}

.stat h3 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #00ccff;
  font-weight: 700;
}

.stat p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #00ccff;
  border-top: 1px solid #00ccff;
  box-shadow: 0 -0.3vh 0.5vh rgba(0,0,0,0.3);
}

/* Slider */
.slider {
  position: relative;
  width: 98%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  margin: 6vh auto;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--bg-dark);
}

.slider img.active {
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #00ccff;
  background-color: rgba(0, 204, 255, 0.15);
  border: 1px solid #00ccff;
  cursor: pointer;
  padding: 0.6rem 1rem;
  z-index: 1;
  user-select: none;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.3s;
  box-shadow: 0 0 8px rgba(0, 204, 255, 0.6);
}

.arrow:hover {
  background-color: rgba(0, 204, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.arrow.left {
  left: 1.2rem;
}

.arrow.right {
  right: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .arrow {
    font-size: 6vw;
    padding: 0.6rem 0.9rem;
  }

  .stats-numbers {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  nav .menu {
    flex-direction: column;
    gap: 10px;
  }

  header {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .stat p {
    font-size: 0.95rem;
  }
}



header {
  position: sticky;
  top: 0;
  z-index: 100;
}


