body {
  font-family: Nunito, sans-serif;
  /* background: linear-gradient(to right, #1e3c72, #2a5298); */
  background: linear-gradient(to right, #1e40af, #172554 90%);
  /* background: linear-gradient(rgba(49, 49, 49, 0.2), rgba(0, 0, 0, 0.2)),
    url("../img/outdoor6.jpg"); */
  height: 100vh;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map {
  border-radius: 15px;
}

/* Address Form Container */
.form-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  /* max-width: 500px; */
  /* width: 90%; */
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.form-control {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  border: 2px solid #fff;
}

label {
  font-weight: 600;
  color: white;
}

.btn-custom {
  width: 100%;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  border: none;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  color: white;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: linear-gradient(to right, #feb47b, #ff7e5f);
  transform: scale(1.05);
}

.input-group-text {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
}

/* Frosted-glass navbar styling */

.navbar {
  /* position: fixed; */
  /* top: 20px; */
  /* left: 20%; */
  /* transform: translateX(-50%); */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 12px 30px;
  max-width: 600px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  margin: 2% auto;
}

.navbar-custom {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.navbar-brand {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff !important;
}
.navbar-nav .nav-link {
  color: #fff !important;
  margin-right: 15px;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  color: #ff7e5f !important;
}
.content {
  padding: 20px;
  color: white;
}

.center-v-h {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/*Next 40 ish lines are stuff for loading screen */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    25,
    58,
    115,
    0.85
  ); /* Dark blue with opacity matching your site */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.spinner {
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #ff8f6b; /* Orange color from your buttons */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite;
  margin-bottom: 20px;
}

.loading-text {
  color: white;
  font-size: 18px;
  font-family: sans-serif;
}

.black-text {
  color: black !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto;
}
h1 {
  font-weight: 700 !important;
}
p {
  font-family: Nunito;
  font-size: 14pt;
}
.body-text {
  font-family: Nunito;
}
