@font-face {
  font-family: Eliot Lord;
  src: url(Fonts/Eliothand-Regular.otf);
}

@font-face {
  font-family: DS Digital;
  src: url(Fonts/DS-DIGIT.TTF);
}

h1 {
  font-family: Eliot Lord;
  font-size: 3.2vw;
}

span {
  font-family: DS Digital;
  font-size: 2.5vw;
}

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

body {
  background-color: #f7f7f7;
  cursor: url(img/background/cursors/Cursor.svg),
    url(img/background/Pointer.svg), pointer;
  user-select: none;
}

#navo a:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7"/></svg>')
      12 12,
    pointer;
  color: #fff;
}

#navo a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: width 0.3s ease, left 0.3s ease;
}

#navo a:hover::after {
  width: 100%;
  left: 0;
}

/* Header */
.header {
  background-color: #00bed6;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00bed6;
}

#navo {
  background-color: #00bed6;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  margin: 0;
  list-style: none;
  color: white;
}

#navo img {
  margin: auto;
  display: block;
  width: 40%;
  max-width: 300px;
}

#navo li {
  display: inline;
}

#navo a {
  font-family: Arial;
  font-weight: 800;
  font-size: 1.6vw;
  text-decoration: none;
  padding: 0 20px;
  color: white;
}

#navo a:hover {
  cursor: url(img/background/cursors/Pointer1.svg), pointer;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}

/* Hamburger Button */
.hamburger {
  width: 28px;
  height: 24px;
  cursor: url(img/background/cursors/Pointer1.svg), pointer;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  right: 20px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

/* Hamburger animation when open */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.side-menu.active {
  right: 0;
}

.menu-header {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
}

.menu-section {
  border-bottom: 1px solid #e0e0e0;
}

.menu-item {
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: url(img/background/cursors/Pointer1.svg), pointer;
  transition: background-color 0.2s ease;
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.menu-item:hover {
  background-color: #f7f7f7;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-subsection {
  padding: 15px 20px 5px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}

/* Main Content */
.main-content {
  margin-top: 0px;
  padding: 0;
}

#wrap {
  width: 100%;
  color: #00bed6;
  margin: 0;
  padding: 0;
}

.article {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.article h2 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: Eliot Lord;
}

.article p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .side-menu {
    width: 100%;
    right: -100%;
  }

  #navo img {
    width: 60%;
  }

  #navo a {
    padding: 0 10px;
    font-size: 0.9em;
  }
}

.footer {
  background-color: #262626;
  color: #fff;
  padding: 40px 20px 20px 20px;
  margin-top: 40px;
}

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

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #fff;
  cursor: url("img/background/cursors/Pointer1.svg"), pointer;
}

.footer-bottom {
  border-top: 1px solid #404040;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #808080;
  font-size: 13px;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #00bed6;
  cursor: url(img/background/cursors/Pointer1.svg), pointer;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

body::-webkit-scrollbar {
  width: 1em round;
  overflow: scroll;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(255, 255, 255);
}

body::-webkit-scrollbar-thumb {
  background-color: #00bed6;
  outline: 1px solid #00bed6;
}

body::-webkit-scrollbar-thumb:hover {
  cursor: url("img/background/Pointer.svg");
}

body::-webkit-scrollbar {
  width: 1em round;
  overflow: scroll;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px black;
  width: 2em;
}

body::-webkit-scrollbar-thumb {
  background-color: #00bed6;
  width: 1em round;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .side-menu {
    width: 100%;
    right: -100%;
  }

  #navo img {
    width: 60%;
  }

  #navo a {
    padding: 0 5px;
    font-size: 2.8vw;
    white-space: nowrap;
  }

  #navo {
    padding: 15px 0;
  }

  #navo li {
    display: inline-block;
  }
}
