body, input, button, h1, .logo {
  font-family: 'Roboto', sans-serif;
  font-weight: 400; /* Normal font weight; adjust as needed */
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Optional: if you want to remove scrollbar for full page sections */
}

header, footer {
  /* Style your header and footer */
}

.simulation-section {
  position: relative;
  width: 50%;
  height: 100vh;
  float: left;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will cover the entire area of the section */
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

h1 {
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFF;
  font-weight: 700; /* Bold for headings */
}

/* Add additional styling as per your needs */
.navbar {
  background-color: #000; /* Assuming a black navbar */
  color: #fff;
  padding: 10px 20px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Adjust as needed for your layout */
  margin: 0 auto;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-size: 18px; /* Adjust as needed */
  font-weight: bold;
}

.nav-right {
  display: flex;
  align-items: center;
}

.search-container {
  position: relative;
}

#search-bar {
  padding: 5px 10px;
  margin: 0 auto; /* Centering the search bar horizontally */
  border: none;
  border-radius: 50px;
  text-align: center; /* Aligning the content inside the search bar */
  width: 300px; /* Adjust the width as needed */
}


.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  /* Add a background-image of a search icon here */
}

.shop-button,
.locale-button,
.currency-button {
  background: none;
  border: none;
  color: #fff;
  margin-left: 10px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.shop-button:hover,
.locale-button:hover,
.currency-button:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Light highlight on hover */
}

/* Responsive adjustments */


  .nav-right {
    margin-top: 10px;
  }
  .overlay img {
    max-width: 70%; /* Reduces the image size to 50% of its container width */
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Makes the image a block-level element */
    margin: 0 auto; /* Centers the image horizontally within the container */
    transition: opacity 0.3s ease; /* Smooth transition for the hover effect */
}

.overlay img:hover {
  opacity: 0; /* Image becomes fully transparent on hover */
}
.navbar-logo {
  height: 80px; /* Or your preferred size */
  vertical-align: middle; /* To align it nicely with any text or elements inside the navbar */
  margin-right: 10px; /* Optional: Adds some space between the logo and the text or next element */
}
footer {
  position: relative;
  clear: both;
}