
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background-color: #000; color: #f5f5f5; line-height: 1.6; }
header { display: flex; justify-content: space-between; align-items: center; background: #1a1a1a; padding: 20px; }
.logo { font-size: 1.8rem; font-weight: bold; color: #ff9900; }
nav a { color: #f5f5f5; margin: 0 10px; text-decoration: none; font-weight: 500; }
nav a:hover { color: #ff9900; }
.hero { text-align: center; padding: 100px 20px 40px; background: #000; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; }
.cta { text-align: center; margin-top: 30px; }
.button { background: #ff9900; color: #000; padding: 12px 24px; border-radius: 5px; font-weight: bold; text-decoration: none; }
.button:hover { background: #e68a00; }
footer { background: #1a1a1a; text-align: center; padding: 20px; font-size: 0.9rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; padding: 40px 20px; }
.card { background: #222; padding: 20px; text-align: center; border-radius: 8px; font-weight: 600; border: 1px solid #333; }
@media screen and (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  nav { display: flex; flex-direction: column; align-items: center; }
  nav a { margin: 5px 0; }
}

/* Horizontal Scrollable Navigation (Below Heading on Mobile) */
.nav-scrollable {
  overflow-x: auto;
  white-space: nowrap;
  background-color: #000;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.nav-scrollable .nav-container {
  display: inline-flex;
  gap: 20px;
  padding-left: 16px;
}

.nav-scrollable a {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 10px;
  white-space: nowrap;
}

.nav-scrollable a:hover {
  color: orange;
}
/* Hero video styling */
.hero-video-container {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  height: auto;
  aspect-ratio: 16 / 9;
}

.hero-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #333;
}

.site-header {
  padding: 10px 20px;
  background-color: #000; /* Or match your current theme */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  color: #ff9900;
}

header,
footer,
.hero,
.cta,
.cards,
section {
  background-color: #000 !important;
  color: #f5f5f5
}
