@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Syne:wght@400..800&display=swap');

:root {
  --primary: #FFC20E;
  --secondary: #272727;
  --secondary-light: #AAAAAA;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
}

.font-syne {
  font-family: "Syne", sans-serif;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-secondary-light {
  color: var(--secondary-light);
}


.container {
  padding-left: 54px;
  padding-right: 54px;
}

header nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.5s;
}

header nav a:hover,
header nav a:hover svg {
  color: var(--primary);
}

footer a {
  transition: 0.4s;
}

footer a:hover {
  color: var(--primary) !important;
}


/* Remove arrows in Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}


/* Autofill background fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #747474 !important;
  transition: background-color 9999s ease-in-out 0s;
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}



/* Header Styles */
.header-sticky {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
  top: 0 !important;
}

.header-scrolled #siteHeader {
  background: rgba(33, 33, 33, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  border-radius: 0 !important;
}

.header-hidden {
  transform: translateY(-120%);
}

/* Mobile Menu Animations */
#mobileMenu.active {
  transform: translateX(0);
}

#mobileMenu.active .mobile-link {
  opacity: 1;
  transform: translateX(0);
}

#mobileMenu.active .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

#mobileMenu.active .mobile-link:nth-child(2) {
  transition-delay: 0.2s;
}

#mobileMenu.active .mobile-link:nth-child(3) {
  transition-delay: 0.3s;
}

#mobileMenu.active .mobile-link:nth-child(4) {
  transition-delay: 0.4s;
}

#mobileMenu.active .mobile-link:nth-child(5) {
  transition-delay: 0.5s;
}

/* Hamburger Animation */
#menuIcon.active .bar-top {
  transform: rotate(45deg) translateY(11px);
}

#menuIcon.active .bar-middle {
  opacity: 0;
  transform: translateX(-20px);
}

#menuIcon.active .bar-bottom {
  transform: rotate(-45deg) translateY(-11px);
}

/* Desktop Menu Underline Animation */
.header-sticky nav a {
  position: relative;
}


/* Button animation */
.btn-ripple{
  overflow: hidden;
  position: relative;
}
.btn-ripple::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.20) 10%,
    transparent 10%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}
.btn-ripple:hover::after {
  transform: translate(-50%, -50%) scale(5);
}