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

/* BODY STYLING */
body {
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.navbar .logo img {
  width: 50px;
  height: auto;
  display: block;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  min-width: 5.5rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: max-content;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 9s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-button,
.dropdown-content a {
  padding: 12px 14px;
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

/* HERO SECTION (BACKGROUND) */
.hero {
  width: 100%;
  height: 94vh;
  background: url("./Images/pexels-rohit-sharma-1230131-20717199.jpg") no-repeat
    center center/cover;
  position: relative;
}

/* BLACK OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.63);
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.hero-content h2 {
  font-size: 1.9rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}

#tagline-meaning {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

#tagline-heading {
  margin-bottom: 2.5rem;
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 600px;
  width: 100%;
  justify-content: center;
}

.search-bar input,
.search-bar select {
  flex: 1 1 100px;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  outline: none;
  font-size: 1rem;
}

.search-bar button {
  padding: 20px;
  background-color: #f06c6c;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  width:100%;
  font-weight:bold;
}

.search-bar button:hover {
  background-color: #ff7e7e;
}

footer {
  height: 6vh;
  background-color: #ebe5e5;
  width: 100%;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
  }
}
