/* ----------- Custom Fonts ----------- */
@font-face {
  font-family: 'i still know';
  src: url(../font/I%20Still%20Know.ttf);
}
@font-face {
  font-family: 'studebaker';
  src: url(../font/Studebaker.ttf);
}
@font-face {
  font-family: 'Harker';
  src: url(../font/Harker.otf);
}
@font-face {
  font-family: 'Helvetica ulta light';
  src: url(../font/HelveticaNeueLTPro-UltLt.otf) format('truetype');
}

/* ----------- Base Layout ----------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  background: #000;
  font-family: 'Helvetica', sans-serif;
  display: flex;
  flex-direction: column;
}

/* Content wrapper to push footer down */
main.content-wrapper {
  flex: 1;
  padding-top: 100px; /* keeps it below the fixed navbar */
}

/* ----------- Navbar ----------- */
.navbar {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  z-index: 1000;
}
.navbar-brand img {
  height: 80px;
  width: auto;
  margin-top: 10px;
}
.navbar-nav > li > a {
  font-family: 'Harker', sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 100px;
  transition: all 0.3s ease;
}
.navbar-nav > li > a:hover {
  color: #fff;
  text-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
}

/* ----------- Hero Carousel ----------- */
#hero-carousel {
  width: 100%;
  height: calc(100vh - 100px); /* full screen minus navbar */
  overflow: hidden;
}
.slider-container {
  width: 100%;
  height: calc(100vh - 80px); /* full viewport minus navbar */
  position: relative;
}
.carousel-item,
.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ----------- Sticky Footer ----------- */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 0 3rem;
  margin-top: auto;
  width: 100%;
}
footer a {
  color: white;
}
footer svg.svg-inline--fa {
  font-size: 1.6rem;
  margin: 1.2rem .2rem 0 0;
}
footer svg.svg-inline--fa:hover {
  color: #fff;
}

/* ----------- Form Styling ----------- */
form {
  border: 2px solid;
  width: 450px;
  height: 400px;
  border-radius: 20px;
  overflow: auto;
  margin: 2rem auto;
}
.Name, .Email {
  margin-left: 20px;
}
.commentBox {
  width: 300px;
  height: 200px;
}

/* Form Alerts */
#formResponse .alert {
  border-radius: 10px;
  padding: 15px 20px;
  font-family: "Harker", sans-serif;
  font-size: 18px;
  text-align: center;
  transition: all 0.5s ease;
}
#formResponse .alert-success {
  background-color: #000;
  color: #fff;
  text-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
  border: 2px solid red;
}
#formResponse .alert-danger {
  background-color: #900;
  color: #fff;
  text-shadow: 0 0 10px red, 0 0 20px red;
  border: 2px solid #fff;
}

/* ----------- Mobile Adjustments ----------- */
@media screen and (max-width: 779px) {
  .navbar-brand img {
    height: 50px;
    margin-top: 0;
  }
  .navbar-nav > li > a {
    line-height: normal;
    padding: 10px 15px;
  }
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  form {
    width: 90%;
    height: auto;
    margin: 2rem auto;
  }
}
