/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Syne:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: Arial, sans-serif;
  }
  
  body, html {
    height: 100%;
  }
  
  /* Background video */
  /* .video-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */
  
  /* Grain / texture overlay */
  /* .overlay {
    position: fixed;
    inset: 0;
    background: url("bg.png");
    opacity: 0.9; 
    margin-top: 60px;
    z-index: -1;

  } */
  
  /* Navbar */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background-image:url(navbar.png);
    backdrop-filter: blur(10px);
    color: white;
  }
  
  /* Logo image */
  .logo-small img {
    height: 80px;
  }
  
  /* Nav links */
  .nav-links {
    display: flex;
    gap: 38px;
  }
  
  .nav-links a {
    font-family:fantasy;
    color: #2718D0;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 0.81px;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    opacity: 0.6;
    color:#E72204;
  }
  
  /* Intro modal */
  /* .intro-modal {
    position: fixed;
    inset: 0;
    background: url(paper.png);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }
  
  .intro-modal video {
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
  } */
  
  /* Close button */
  /* .close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    background: white;
    border: none;
    padding: 10px 16px;
    border-radius: 1000px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
    color: #2718D0;
    font-family: fantasy;
  }
  
  .close-btn:hover {
    transform: scale(1.05);
  } */
  
  /* Footer */
  footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 20000;
    text-align: center;
    font-size: 12px;
    color: #000000;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
  }


  /* =========================
   MOBILE NAV ONLY
========================= */

/* Hide hamburger on desktop */
.menu-toggle,
.mobile-menu {
  display: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  /* Keep existing nav colors/styles */
  nav {
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide desktop links */
  .nav-links {
    display: none;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;

    background: transparent;
    border: none;

    font-size: 30px;
    color: inherit;

    cursor: pointer;
  }

  /* Mobile dropdown */
  .mobile-menu {
    z-index: 2000;
    display: none;

    position: absolute;
    top: 70px;
    right: 16px;

    flex-direction: column;
    gap: 10px;

    min-width: 200px;

    padding: 14px;

    border-radius: 14px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);

    box-shadow: 0 4px 20px rgba(0,0,0,0.15);

    z-index: 3000;
  }

  /* Mobile links */
  .mobile-menu a {
    text-decoration: none;
    color: black;

    font-size: 14px;

    padding: 10px 12px;
    border-radius: 10px;
  }

  .mobile-menu a:hover {
    background: rgba(0,0,0,0.05);
  }

  /* Open menu */
  .mobile-menu.active {
    display: flex;
  }

  /* Smaller logo */
  .logo-small img {
    height: 40px;
  }

  /* Footer stays same */
  footer {
    font-size: 10px;
  }
}
