/* Footer Social Icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 1.5rem;
}
.footer-social a {
  display: inline-block;
  transition: transform 0.2s;
}
.footer-social a:hover {
  transform: scale(1.15) translateY(-2px);
}
.footer-social img {
  display: block;
  height: 28px;
  width: 28px;
  filter: grayscale(0.2) brightness(0.95);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.footer-social a[aria-label]:hover img {
  filter: none;
  box-shadow: 0 4px 16px rgba(255,204,0,0.15);
}
:root {
  --clr-bg: #050505;
  --clr-surface: #111111;
  --clr-surface-light: #1e1e1e;
  --clr-primary: #FFCC00;
  --clr-primary-hover: #FFB800;
  --clr-text-main: #FFFFFF;
  --clr-text-muted: #A0A0A0;
  --clr-border: #333333;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--clr-bg);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Highlight Text */
.text-primary {
  color: var(--clr-primary);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-bg);
}

.btn-primary:hover {
  background-color: var(--clr-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn-outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-bg);
  transform: translateY(-3px);
}

/* Top Bar */
.top-bar {
  background-color: #181818;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  padding: 0.6rem 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span {
  display: inline-block;
}

.top-bar-right a {
  color: var(--clr-text-muted);
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
}

.top-bar-right a:hover img {
  filter: brightness(1.2) drop-shadow(0 2px 4px #ffcc00aa);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0.5rem 0;
  background-color: #111111cc;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* Safari support */
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  color: var(--clr-text-main);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a span {
  font-size: 0.8rem;
  margin-left: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-primary);
  background: #222222;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: #181818;
  border: 1px solid var(--clr-border);
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 6px;
  transition: var(--transition);
}
.hamburger-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--clr-text-main);
  border-radius: 2px;
  margin: 3px 0;
  transition: var(--transition);
}

/* Responsive Navigation (Tablet & Mobile) */
@media (max-width: 992px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .top-bar-left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .top-bar-sep {
    display: none;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #181818ee;
    flex-direction: column;
    padding: 2rem;
    transition: 0.4s ease-in-out;
    border-left: 1px solid var(--clr-border);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    align-items: flex-start;
    z-index: 2000;
  }
  .nav-links.nav-active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #222;
    justify-content: space-between;
    color: var(--clr-text-main);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Hide top bar on mobile to prioritize main content area */
  }
  
  .nav-links {
    width: 100%; /* Take full width on very small screens */
    right: -100%;
  }
}

/* Footer */
.footer {
  background-color: var(--clr-surface);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col li {
  color: var(--clr-text-muted);
  margin-bottom: 0.8rem;
}

.footer-col a:hover {
  color: var(--clr-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.legal-links a {
  color: var(--clr-text-muted);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--clr-primary);
}

/* Animations & Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Page Header */
.page-header {
  height: 100vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-top: 0;
}

.page-header h1 {
  color: var(--clr-primary);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--clr-text-main);
  max-width: 600px;
  margin: 0 auto;
}