/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

section a {
  color: #fff;
  text-decoration: none;
}

section a:hover {
  text-decoration: underline;
}

/* Navigation */
nav {
  background-color: #282537;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  font-family: 'Kanit', sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Kanit', sans-serif;
  font-weight: 100;
  position: relative;
}

nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover:after {
  width: calc(100% - 2rem);
}

nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Sections */
section {
  min-height: 100vh;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section:nth-child(even) {
background: #282537;
background-image: -webkit-radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
background-image: -moz-radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
background-image: -o-radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
background-image: radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
}

section:nth-child(odd) {
  background: #282537;
  background-image: -webkit-radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
  background-image: -moz-radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
  background-image: -o-radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
  background-image: radial-gradient(top, circle cover, #3c3b52 0%, #252233 80%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  max-width: 800px;
}

/* Footer */
footer {
  background-color: #1b1925;
  padding: 1.5rem;
  text-align: center;
  font-size: .75rem;
}

footer p {
  margin-bottom: 1rem;
  font-size: .75rem;
  max-width: 100%;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Active Navigation Indicator */
nav a.active:after {
  width: calc(100% - 2rem);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }

  nav {
    padding: 0rem;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    width: 100%;
    background-color: #282537;
  }

  nav ul.show {
    display: flex;
    padding: 1rem;
  }

  nav a:after {
    bottom: -2px;
  }

  section {
    padding: 5rem 1rem 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

.text {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: 5em;
  color: #FAFAFA;
}

.dud {
  color: #757575;
}

