/* Base Resets and Defaults */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

.video-bg {
  display: block;
}

.video-bg-mobile {
  display: none;
}

h2 {
  color: #ce202f !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

html {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f5;
  color: #222;
}

/* Navigation */

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 90px;
  background-color: #fff;
  z-index: 9999; /* makes sure it stays above all content */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* optional clean shadow */
}

.nav_logo img {
  height: 60px;
}

.nav_links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav_links a {
  color: #ce202f;
  text-decoration: none;
  font-size: 16px;
  padding: 10px;
  transition: 0.3s;
}

.nav_links a:hover {
  padding: 12px 24px;
  background-color: #ce202f;
  color: #ddd;
  border-radius: 4px;
}

.nav_social a {
  color: #ce202f;
  font-size: 24px;
  margin-left: 30px;
  transition: 0.3s;
}

.nav_social a:hover {
  color: black;
}

.nav_toggle {
  display: none;
  font-size: 48px;
  cursor: pointer;
  color: #ce202f;
}

/*
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #eee;
  gap: 12px;
}

.mobile-menu.open {
  display: flex;
  justify-content: left;
  gap: 48px;
}
*/

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  height: 50vh;
  background: #fff;
  padding: 40px 20px;
  gap: 24px;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
  display: flex;
  justify-content: flex-start;
}


.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  color: #ce202f;
  font-weight: 600;
}

/* Hero Section */
.landing-page-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-page-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.landing-page-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-text-block {
  max-width: 541px;
  margin-left: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.hero-title span {
  color: #ce202f;
  font-weight: 600;
  font-size: 18px;
}

.hero-title h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.hero-description {
  font-size: 18px;
  line-height: 1.2;
  color: #444;
}

.cta-button {
  width: fit-content;
  padding: 16px 60px;
  background-color: #ce202f;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b41c28;
}

.stats {
  display: flex;
  width: fit-content;
  gap: 48px;
  padding: 24px 30px;
  top: 780px;
  left: 120px;
  background-color: #fff;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}

.stats > div {
  position: relative;
  text-align: center;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.stats > div:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: #ddd;
}

.stat-num {
  font-size: 36px;
}

/* Logo Bar */
.logo-bar {
  background: #fff;
  padding: 24px 55px;
  display: flex;
  justify-content: center;
}

.logo-scroll {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.brands-long {
  background-color: #fff;
  padding: 24px 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: auto;
}

.brands-long img {
  width: 150px;
  height: auto;
}

.brands-long img:hover {
  scale: 1.3;
  filter: invert(27%) sepia(85%) saturate(3705%) hue-rotate(350deg) brightness(80%) contrast(99%);
}

.line-break {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .landing-page-hero {
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #desktop_bg {
    display: none;
  }

  .topnav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 0px 20px;
  }

  .hero-title h1 {
    font-size: 48px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 20px;
  }

  .nav_logo img {
    height: 48px;
  }

  .nav_toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  .nav_links {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    display: none;
  }

  .nav_links.active {
    display: flex;
  }

  .nav_links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav_social {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .desktop-menu {
    display: none;
  }

  .hero-text-block {
    margin: 16px;
    max-width: 361px;
    text-align: center;
  }

  .cta-button {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    gap: 16px;
    width: 100%;
    position: sticky;
    z-index: 999;
    background: #fff;
    padding: 12px 16px;
  }

  .stat-num {
    font-size: 24px;
  }

  .video-bg {
    display: none;
  }

  .video-bg-mobile {
    display: block;
  }

  .brands-long {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .brands-long img {
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin-right: 16px;
  }

  #colomn-three {
    display: none;
  }

  .line-break {
    display: inline;
  }

  .mobile-menu .open {
    display: none !important;
  }

  .nav_social a {
    display: flex;
    justify-content: center;
    justify-items: center;
    color: #ce202f;
    font-size: 30px;
    margin-left: 30px;
    transition: 0.3s;
  }

}
