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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
  line-height: 1.6;
  background-color: #18392b;
}

/* Background Video */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay for Visibility */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 50px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Main Content */
.content {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 50px;
  max-width: 560px;
  z-index: 10;
}

.description {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
}

.description strong {
  font-weight: 600;
}

.locations {
  position: fixed;
  bottom: 50px;
  right: 50px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}

.locations p {
  font-size: 18px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 25px 30px;
  }

  .content {
    padding: 30px;
    max-width: 65%;
  }

  .description {
    font-size: 18px;
  }

  .locations {
    bottom: 30px;
    right: 30px;
  }

  .locations p {
    font-size: 16px;
  }
}

