@charset "utf-8";
/* styles.css */

/* ---------- GLOBAL STYLES ---------- */
body {
  background-color: #f2f2f2;
  color: #1a1a1a;
  font-family: 'Syne', sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
  font-size: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.overlay-content p {
  color: white;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  border-bottom: 1px solid #000;
  background-color: #fff;
}

.navbar-brand {
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
}

.dropdown-menu {
  border: 1px solid #000;
  border-radius: 0;
  background-color: #fff;
  padding: 0;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
}

.dropdown-item:hover {
  background-color: #e6e6e6;
}

/* ---------- HEADER ---------- */
header {
  text-align: center;
  padding: 4rem 1rem;
  border-bottom: 1px solid #000;
  background-color: #fff;
}

header h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1rem;
  color: #333;
}

.video-header {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust as needed */
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.overlay-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.overlay-content h1 {
  font-size: 7rem;
  margin-bottom: 1rem;
}

.overlay-content p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.video-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; /* Increased height for a more pronounced fade */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(242, 242, 242, 1));
  pointer-events: none;
}

/* ---------- UTILITIES ---------- */
.container {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ---------- MEDIA QUERIES ---------- */
@media (min-width: 768px) {
  header h1 {
    font-size: 3.5rem;
  }

  p {
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 4rem 2rem;
  }
}