/* ===== style.css ===== */
/* ===== Global ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto !important; /* Lenis handles this, not the browser */
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050505;
  color: #f9fafb;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header / Navbar ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  z-index: 50;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.header__logo .text-orange-500 {
  color: #f97316;
}

.header__nav {
  display: none;
}
.header__logo img {
  height: 60px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-size: 0.95rem;
  opacity: 0.8;
}

.nav__list a:hover,
.nav__list a.active {
  opacity: 1;
}

/* Services dropdown with arrow */
.services-dropdown {
  position: relative;
}

.services-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* simple down arrow */
.services-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
}

/* dropdown panel */
.services-dropdown__content {
  position: absolute;
  top: 100%;          /* was 120%: remove the gap */
  left: 0;
  min-width: 180px;
  background: #111827;
  border-radius: 0.25rem;
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 100;       /* ensure on top */
}

/* small buffer above menu so tiny mouse movements don't close it */
.services-dropdown__content::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 6px;
}

.services-dropdown__content a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.services-dropdown__content a:hover {
  background: #1f2937;
  opacity: 1;
}

/* show on hover (desktop) */
.services-dropdown:hover .services-dropdown__content {
  display: block;
}

[data-barba="container"] {
  opacity: 1;
  visibility: visible;
}

[data-barba="container"][aria-hidden="true"] {
  opacity: 0 !important;
  visibility: hidden !important;
}

#site-header {
  transition: opacity 0.3s ease;
}

/* CTA button and hamburger kept simple */
.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    background: #f97316;
    color: #111827;
    border: none;
    cursor: pointer;
  }
}

.header__hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.header__hamburger span {
  width: 20px;
  height: 2px;
  background: #e5e7eb;
}

@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

/* ===== Mobile menu (very minimal) ===== */
.mobile-menu {
  display: none;
}

/* ===== Hero (center of page) ===== */
.hero {
  min-height: 100vh;
  padding-top: 64px; /* header height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
}

.hero__content {
  max-width: 640px;
  padding: 0 1.5rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero__title .text-orange-500 {
  color: #f97316;
}

.hero__subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #f97316;
  color: #111827;
  border-color: #f97316;
}

.btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: #4b5563;
}

/* optional hero scroll indicator hidden for now */
.hero__scroll {
  display: none;
}

/* ===== Footer (simple) ===== */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.5rem 1.5rem 2rem;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 2rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

[data-animate] {
  opacity: 0;
}
