body,
html {
    margin: 0;
    padding: 0;
    height: 200vh;
    /* Keep the scrollable height */
    font-family: Arial, sans-serif;
    background-color: #08001d;
    /* Dark blue background */
    display: block;
    /* Allow the body to be scrollable and not affect centering */
}


/* Container to control the image size */
.image-container {
    position: relative;
    height: 100vh;
    width: auto;
    overflow: hidden;
    opacity: 0.6;
    display: flex;
    justify-content: center;
    bottom: 10vh;
}

/* Image styling */
.image-container img {
    height: 150vh;
    display: block;
    border-radius: 8px;
}

/* Gradient fade effect using both linear and radial gradients */
.image-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    
    /* Add multiple backgrounds */
    background: 
        radial-gradient(ellipse at center, rgba(0, 31, 63, 0) 30%, #08001d 70%), /* Radial gradient */
        linear-gradient(to bottom, rgba(8, 0, 29, 0) 0%, rgba(8, 0, 29, 1) 100%); /* Linear gradient */
    
    z-index: 1;
    /* Ensures the gradient is on top of the image */
    pointer-events: none;
    /* Ensures the gradient doesn't interfere with interactions */
}


.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100vh;
    /* Take up the full viewport height */
    top: 40vh;
    /* Start in the vertical middle of the viewport */
    transform: translateY(-50%);
    /* Ensure it's perfectly centered vertically */
}

.logo {
    display: flex;
    bottom: 3vh;
    color: white;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-text {
    text-shadow: 0px 10px 10px rgba(0, 0, 0, 1);
    margin: 0;
    font-size: 7vh;
    letter-spacing: .35em !important;
    margin-right: -.35em;
}

.logo-subtext {
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 1);
    margin: 0;
    font-size: 2vh;
}

/* Input box container */
.input-container {
    width: 50%;
    display: flex;
    justify-content: center;
}

/* Input field wrapper */
.input-wrapper {
    display: flex;
    align-items: center;
    background-color: white;
    /* White background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    padding: 5px 10px;
    width: 100%;
    /* 50% of the container width */
    max-width: 600px;
    /* Set a max width for larger screens */
    border: 1px solid;
    /* padding: 10px; */
    box-shadow: 0px 5px 30px black;
}

/* Search input styling */
input[type="text"] {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 16px;
    outline: none;
    color: #555;
    background-color: transparent;
    /* Transparent background for white wrapper */
    margin-right: 10px;
}

/* Region select styling */
select {
    background-color: #0056b3;
    /* Blue background */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 10px;
}

/* Search button (icon) */
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 17px;
    color: #007BFF;
    padding: 0;
}

/* Add a magnifying glass icon */
button::before {
    /* content: '\1F50D'; /* Unicode for magnifying glass */
    font-size: 17px;
}

.footer {
    color: rgba(255, 255, 255, 0.678);
    position: fixed;
    bottom: 0;
    width: 100% !important;
    display: flex;
    justify-content: center;
    width: auto;
}






















/* FONTS */

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  