@font-face {
    font-family: "poppins";
    src: url(./Poppins-SemiBold.ttf);
}
.font1{
    font-family: "poppins";
}
.font2{
    font-family: "Pixelify Sans Medium";
}
@font-face {
    font-family: "Pixelify Sans Medium";
    src: url(./PixelifySans[wght].ttf);
}
@font-face {
    font-family: "inter";
    src: url(./Inter-Light-BETA.otf);
}
.font3{
    font-family: "inter";;
}
@font-face {
    font-family: "crimson";
    src: url(./CrimsonPro-VariableFont_wght.ttf);
}
.font4{
    font-family: "crimson";
}
@font-face {
    font-family: "poppins regular";
    src: url(./Poppins-Regular.ttf);
}
.font5{
    font-family: "poppins regular";
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    height: 100vh;
    
}



.name {
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 10;
}

.trail-image {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    animation: popAndFade 2s forwards;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5vh;

}

@keyframes popAndFade {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(var(--rotation));
        opacity: 0;
    }
    5% {
        transform: translate(-50%, -50%) scale(0) rotate(var(--rotation));
        opacity: 1;
    }
    15% {
        transform: translate(-50%, -50%) scale(0) rotate(var(--rotation));
        opacity: 0.9;
    }
    85% {
        transform: translate(-50%, -50%) scale(1) rotate(var(--rotation));
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(0) rotate(var(--rotation));
        opacity: 0;
    }
}
  @keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@layer utilities {
  .animate-marquee {
    animation: marquee 40s linear infinite;
  }
}

/* Hero styles for mobile only */


/* Enhanced Mobile Navigation Styles */
@media (max-width: 768px) {
  #nav {
    padding-top: 2vh;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  #mobileMenu {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    z-index: 9999 !important;
  }
  
  /* Enhanced hamburger animation */
  #mobileMenuBtn span {
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  /* Menu link animations */
  .mobile-menu-link {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
  }
  
  .mobile-menu-link:nth-child(1) { animation-delay: 0.2s; }
  .mobile-menu-link:nth-child(2) { animation-delay: 0.3s; }
  .mobile-menu-link:nth-child(3) { animation-delay: 0.4s; }
  
  .mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .mobile-menu-link:hover::before {
    left: 100%;
  }
  
  /* Prevent all scrolling when menu is open */
  body.menu-locked {
    position: fixed !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
    touch-action: none !important;
  }
  
  html.menu-locked {
    overflow: hidden !important;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop navigation enhancements */
@media (min-width: 769px) {
  #nav a {
    position: relative;
    transition: all 0.3s ease;
  }
  
  #nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background-color: #000;
    transition: all 0.3s ease;
  }
  
  #nav a:hover::after {
    width: 100%;
    left: 0;
  }
}
