/* Extracted styles from index.html */
:root { scroll-behavior: smooth; }

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

body {
  font-family: 'Rajdhani', sans-serif;
  background: #0D0D0D;
  color: #F5F0E8;
  overflow-x: hidden;
}

/* ── Grain overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #C0392B; border-radius: 2px; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,57,43,0.3);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A0A08 40%, #2C1510 100%);
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1622232994736-c6b8ecb60f93?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-diagonal {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: url('https://images.unsplash.com/photo-1577223625816-7546f13df25d?w=900&auto=format&fit=crop&q=80') center/cover no-repeat;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.55;
}
.hero-diagonal::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, #0D0D0D 0%, transparent 40%, rgba(13,13,13,0.5) 100%);
}

/* ── Section headings ── */
.section-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #D4AF37;
  border-left: 3px solid #C0392B;
  padding-left: 0.75rem;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
}

/* ── Cards hover lift ── */
.card-lift {
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s;
}
.card-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(192,57,43,0.25);
}

/* ── Red line accent ── */
.red-line::before {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: #C0392B;
  margin-bottom: 1.5rem;
}

/* ── Parallax stripe ── */
.stripe-section {
  background: linear-gradient(135deg, #C0392B 0%, #8B1A10 100%);
  position: relative; overflow: hidden;
}
.stripe-section::before {
  content: '';
  position: absolute; top: -50%; left: -10%;
  width: 120%; height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 80px
  );
}

/* ── Stats counter ── */
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #D4AF37;
  line-height: 1;
}

/* ── Image card ── */
.img-card {
  position: relative; overflow: hidden; border-radius: 4px;
}
.img-card img { transition: transform 0.6s ease; }
.img-card:hover img { transform: scale(1.07); }
.img-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}
.img-card:hover .img-card-overlay { opacity: 1; }

/* ── Animate on scroll ── */
.aos-fade { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos-fade.visible { opacity: 1; transform: none; }
.aos-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos-left.visible { opacity: 1; transform: none; }
.aos-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ── Hero text animation ── */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotateX(30deg);
  animation: heroReveal 0.8s cubic-bezier(.25,.8,.25,1) forwards;
}
@keyframes heroReveal {
  to { opacity: 1; transform: none; }
}

/* ── Ticker tape ── */
.ticker-wrap { overflow: hidden; white-space: nowrap; background: #C0392B; padding: 0.6rem 0; }
.ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  0%  { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Nav mobile menu ── */
#mobile-menu { display: none; }
#mobile-menu.open { display: block; }

/* ── Shoelace button override ── */
sl-button::part(base) {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* ── Form ── */
.form-field {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.25);
  color: #F5F0E8;
  padding: 0.85rem 1.1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}
.form-field:focus { border-color: #C0392B; }
.form-field::placeholder { color: #9A8F7E; }

textarea.form-field { resize: vertical; min-height: 130px; }

/* ── Footer ── */
footer { border-top: 1px solid rgba(212,175,55,0.15); }

/* ── Cursor glow ── */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left 0.1s, top 0.1s;
}
