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

body {
  font-family: "Montserrat", sans-serif;
  background-color: #eeeeee;
  color: #393e46;
  line-height: 1.75;
  padding: 0;
  margin: 0;
}

/* Header and Navigation */
header {
  background-color: #222831;
  color: #eeeeee;
  padding: 20px 0;
  position: relative;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 40px; /* Adjust logo size */
  height: auto;
  margin-right: 10px;
}

.brand span {
  font-family: "Kanit", sans-serif;
  font-size: 1.5em;
  color: #eeeeee;
}

#brand-nav a {
  text-decoration: none;
}

#desktop-nav {
  display: flex;
  justify-content: space-between;
}

#desktop-nav a {
  color: #eeeeee;
  margin: 0 15px;
  font-size: 1.2em;
  text-decoration: none;
  font-family: "Kanit", sans-serif;
}

#desktop-nav a:hover {
  color: #00adb5;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 2em;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #eeeeee;
}

/* Mobile Menu */
#mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #393e46;
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  padding: 10px 0;
}

#mobile-nav.active {
  display: flex;
}

#mobile-nav a {
  margin: 10px 0;
  padding: 10px;
  color: white;
  text-align: center;
}
/* Footer */
footer {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  display: flex;
  background-color: #222831;
  font-size: 0.9rem;
  color: white;
  text-align: center;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
}

footer ul li {
  display: inline;
  margin: 0 10px;
}

footer ul li a {
  color: #eeeeee;
  text-decoration: none;
}

footer ul li a:hover {
  color: #00adb5;
}
/* Responsive design */
@media (max-width: 1024px) {
  footer {
    margin-top: 100px;
    display: block;
  }
}

@media (max-width: 768px) {
  #desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .intro-content {
    flex-direction: column;
  }

  .intro-text {
    text-align: center;
  }

  .intro-text h1 {
    font-size: 2.2em;
  }

  .intro-text p {
    font-size: 1.1em;
  }

  .intro-image {
    max-width: 80%;
    margin: 20px auto;
  }
}
