/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body settings */
body {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #fff;
  background: #000; /* fallback if video doesn't load */
}

/* Header */
header {
  position: relative;      /* allows absolute positioning for the logo */
  height: 40px;            /* set a fixed height for the header */
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;     /* vertically center nav-wrapper and menu-icon */
}

/* Optional: shift the nav from the left edge */
.nav-wrapper {
  margin-left: 20px;       /* change or remove if you want it flush left */
}

/* Nav links with zero margin between them */
nav {
  display: flex;           /* show links side by side */
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0;               /* no extra spacing between links */
  padding: 0 10px;         /* give each link a bit of clickable space */
}

/* Absolutely centered logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* move logo left by half its own width */
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

/* Menu icon aligned to the far right */
.menu-icon {
  margin-left: auto;     /* pushes the icon to the right side */
  margin-right: 20px;    /* optional extra spacing from right edge */
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
}

/* Fullscreen overlay (for mobile menu) - hidden by default */
.overlay {
  display: none; 
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.overlay a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  margin: 20px;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;       /* full viewport height */
  display: flex;       /* center content horizontally & vertically */
  justify-content: center;
  align-items: center;
  text-align: center;  /* center text if desired */
  overflow: hidden;
}

/* Background video in hero section */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fill container without distortion */
  z-index: -1;
}

/* Description box on top of the video */
.description-box {
  max-width: 600px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
}
.description-box h1 {
  margin-bottom: 10px;
}
.description-box p {
  margin-bottom: 10px;
}
.description-box a {
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}
