/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
  height: 100%;
  position: relative;
}

/* Background Video */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay Section */
.overlay {
  position: relative;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Heading with hover effect */
.overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.overlay h1:hover {
  transform: scale(1.05);
  color: #00ffff;
}

/* Location Info */
.location-info {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.location-info:hover {
  color: #a3e4f7;
  transform: scale(1.02);
}

/* Back to Home Button */
.back-home {
  margin-top: 3rem;
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.back-home:hover {
  background-color: #ffffff;
  color: #000;
  transform: scale(1.05);
}

/* Brand Name Top Left */
.brand-name {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }

  .location-info {
    font-size: 1rem;
  }
}