@import url("https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --primary: #030a16;
  --secondary: #323946;
  --disabled: #fff3;
  --green: #7cf03d;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ancizar Serif", serif;
}

body,
html {
  background: var(--primary);
  color: var(--white);
  min-height: 100dvh;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

body.no-scroll {
  height: 100dvh;
  overflow: hidden;
}

.main-container {
  max-width: 700px;
  padding: 1rem;
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 1rem 0;
}

.brand-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.brand-info h2 {
  font-size: 1.7rem;
  font-weight: 800;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  font-size: 2rem;
  font-weight: 800;
  cursor: pointer;
}

#overlay {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1000;
}

#menu-toggle:checked ~ #overlay {
  display: block;
  position: fixed;
  inset: 0;
  top: 7rem;
  height: 100dvh;
  background: var(--primary);
  opacity: 1;
  pointer-events: none;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 2rem 0;
  z-index: 1000;
  transform: translateX(150%);
  transition: all 0.4s ease;
}

#menu-toggle:checked ~ nav {
  transform: translateX(0%);
}

nav a {
  text-align: center;
  padding: 0.8rem;
  font-size: 1.4rem;
  border: 5px solid var(--secondary);
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  opacity: 0;
  transform: translateX(150%);
  transition: all 0.4s ease;
}

#menu-toggle:checked ~ nav a {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: calc(var(--i) * 0.2s);
}

.navlink.active {
  color: var(--green);
}

.content {
  display: none;
}

.content.active {
  display: block;
}
/* style.css */
body.no-scroll {
  height: 100dvh;
  overflow: hidden; /* This completely disables scrolling when the menu is "active" */
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Add this for iOS smoothness */
}

@media screen and (width >= 1024px) {
  .main-container {
    max-width: 950px;
  }

  header {
    position: static;
  }

  .brand-info {
    gap: 20px;
  }

  .brand-info img {
    width: 90px;
    height: 90px;
  }

  .brand-info h2 {
    font-size: 2.5rem;
  }

  #menu-toggle {
    pointer-events: none;
  }

  .menu-icon {
    display: none;
  }

  nav {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    position: static;
    transform: translateX(0%);
  }

  nav a {
    padding: 0;
    font-size: 1.5rem;
    border: none;
    opacity: 1;
    transform: translateX(0%);
  }

  nav a:hover {
    color: var(--green);
  }
}

@media screen and (width >= 1250px) {
  .main-container {
    max-width: 1200px;
  }

  .brand-info {
    gap: 35px;
  }

  .brand-info img {
    width: 100px;
    height: 100px;
  }

  .brand-info h2 {
    font-size: 3rem;
  }

  nav {
    gap: 2.5rem;
  }

  nav a {
    font-size: 2rem;
  }
}



