@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&display=swap");

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

html {
  scroll-behavior: smooth;
}

section {
  min-height: 100vh;
  padding: 100px 40px;
  color: #fff;
}

body {
  font-family:
    "Rajdhani",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #111;
}

nav.navbar {
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}

nav.navbar .brand {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

nav.navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav.navbar .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: opacity 0.2s ease;
}

nav.navbar .nav-links a:hover {
  opacity: 0.7;
}

.site-footer {
  background-color: #000000;
  color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-top: 60px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 480px;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-description {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer-contact {
  margin-top: 8px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  color: #ffffff;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.6;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-nav {
  min-width: 160px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin-bottom: 16px;
}

.nav-list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid #1a1a1a;
  padding: 24px 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-bottom p {
  color: #888888;
  font-size: 0.85rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #050505;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.home-section {
  background-color: #050505;
}

.hero-image-container {
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
}

.sponsor-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 100px 20px;
}

.brand-sponsor {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #777777;
}

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

.zowie .red-icon {
  color: #9e1b22;
}

.split-section {
  padding: 60px 0 100px;
  background-color: #050505;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.content-left h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.content-left p {
  color: #a0a0a0;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 500;
}

.spacing-top {
  margin-top: 40px;
}

.contact-links p {
  margin-bottom: 8px;
}

.contact-links a {
  color: #a0a0a0;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.contact-links a:hover {
  color: #ffffff;
}

.image-right {
  width: 100%;
}

.image-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sponsor-bar {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
  }
}
