@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Bebas+Neue&display=swap');

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1A1A1A;
}
::-webkit-scrollbar-thumb {
    background: #B11226;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D91E36;
}

/* Global Styles */
body {
    scroll-behavior: smooth;
}

.bg-animate-lava-flow {
    background-size: 400% 400%;
    animation: lavaFlow 15s ease infinite;
}

/* Text Selection */
::selection {
    background: #B11226;
    color: white;
}

/* Custom Animations */
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.flicker {
    animation: flicker 3s infinite ease-in-out;
}

/* Responsive Typography */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
}







/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(177, 18, 38, 0.2);
}

/* Logo */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: #B11226;
}

/* Links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #B11226;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}



















/* Footer Base */
.footer {
  background: #0B0B0B;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(177, 18, 38, 0.2);
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Logo */
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}

.footer-logo span {
  color: #B11226;
}

/* Text */
.footer-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Headings */
.footer-heading {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: white;
}

/* Social */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #B11226;
}

/* Copyright */
.copyright {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
