/* ==========================
   Fonts
========================== */
@font-face {
    font-family: "ZenDots";
    src: url("../fonts/ZenDots-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: "NovecentoWide";
  src: url("../fonts/Novecentosanswide-Normal.otf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* ==========================
   Reset
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================
   Base Layout
========================== */
html,

body {
  display: flex;
  height: 100%;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background: #424242;
  color: #333;
  line-height: 1.6;
}

main {
  flex: 1;
}

/* ==========================
   Container
========================== */
.container {
  width: 60%;
  margin: 0 auto;

}


/* ==========================
   Header
========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #222c;
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Active header after scrolling */
.site-header.scrolled {
  background: #222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

header {
  background: #222;
  color: white;
  padding: 1rem 0;
  
}

.logo,
h1 {
  font-family: "ZenDots", sans-serif;
  font-size: 2.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

header h1 {
  position: relative;
  display: block;
  padding-bottom: 0.5rem;
}

header h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #424242;
}

/* ==========================
   Navigation
========================== */
nav {
  margin-top: 1rem;
  font-family: "NovecentoWide", sans-serif;
}

nav a {
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  margin-right: 1.5rem;
  padding-bottom: 0.25rem;
  letter-spacing: 1px;
  transition: color 0.25s ease;
  text-transform: uppercase;
}

nav a::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 110%;
  height: 2px;
  background: #78909C;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

nav a:hover {
  color: #78909C;
}

nav a:hover::after {
  transform: scaleX(1);
}

/* ==========================
   Desktop Navigation
========================== */

#menu-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.hamburger {
  display: none;
  cursor: pointer;
}


/* ==========================
   Hamburger Icon
========================== */

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  margin: 6px 0;
  transition: 0.3s ease;
}


/* ==========================
   Mobile Navigation
========================== */
/* Hide hamburger checkbox */
#menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem !important;
  }
  .hamburger {
    display: block;
    position: fixed;
    cursor: pointer;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }


  .nav-links a {
    margin: 1rem 0;
  }


  #menu-toggle:checked ~ .nav-links {
    max-height: 400px;
  }


  /* Animate hamburger into X */
  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

}

/* ==========================
   Vanta DOTS Background
========================== */
.vanta-container {
  width: 100%;
  height: 500px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}



/* ==========================
   Main
========================== */
main {
  padding-top: 3rem;
}

section {
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}
#content{

  background: #FAFAFA;
  padding: 5em;
  font-family: NovecentoWide, Arial, Helvetica, sans-serif;
  
}
/* ==========================
   Buttons
========================== */
button,
.btn {
  background: #90A4AE;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover,
.btn:hover {
  background: #78909C;
}

/* ==========================
   Footer
========================== */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
}