/* Reset and page setup */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  z-index: 1; /* Keeps content above video */
}

/* Background video */
.hero video {
  position: fixed; /* stays constant on scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Send video to background */
}

/* Hero text styling */
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-style: italic;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Search box */
.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.search-box input {
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  width: 250px;
  outline: none;
}

.search-box button {
  padding: 10px 20px;
  font-size: 1rem;
  background: #ff7f50;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #ff5722;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  line-height: 1.6;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent background */
  color: white;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000; /* above video */
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header h3 {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 15px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #ff7043;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-video {
  position: fixed;  /* fixed background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* behind everything */
}

.hero-content {
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-style: italic;
}

/* Search Box */
.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.search-box input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 250px;
}

.search-box button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #ff7043;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.search-box button:hover {
  background: #e64a19;
}
