/* ==================== Imports ==================== */
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

/* ==================== CSS reset ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ==================== Variables ==================== */

:root {
  --section-width: calc(100% - 2rem);
  --section-banner-margin: 1rem;
  --section-border-radius: 2rem;
  --main-font-color: black;
  --secondary-color: #ff00bb;
  /* --secondary-color: #1ea59c; */
}

/* ==================== Global styles ==================== */
body {
  font-family: "Grotesk", sans-serif;
  background-color: black;
  color: black;
  background-image: url("assets/img/bg/background3.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

h1 {
  font-size: 6rem;
  font-weight: 400;
  font-family: "Audiowide", sans-serif;
}

p {
  margin-bottom: 2rem;
  text-align: center;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  /* min-height: 500px; */
  background-color: black;
  color: white;
}

/* Scroll to Top Button */

/* old button */
/* #scrollToTopBtn {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--secondary-color);
  color: white;
  cursor: pointer;
  padding: 15px; 
  border-radius: 10px;
  font-size: 18px; 
  opacity: 0;
  transform: translateY(calc(100% + 2rem)) scale(0.9);
  transition: scale 0.3s ease;
} */

/* Scroll to Top Button */
#scrollToTopBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Fixed/sticky position */
  bottom: 4rem; /* Place the button at the bottom of the page */
  right: 4rem; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--secondary-color); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px 18px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  opacity: 0; /* Hidden by default */
  transform: translateY(calc(100% + 2rem)) scale(0.9); /* Add a transition effect */
  transition: scale 0.3s ease; /*  */
}

#scrollToTopBtn:hover {
  scale: 1.1;
}

#scrollToTopBtn .caret-left,
#scrollToTopBtn .caret-right {
  width: 3px;
  height: 15px;
  background-color: white;
  position: relative;
}

#scrollToTopBtn .caret-left {
  transform: rotate(-45deg);
  right: -6.1px;
}

#scrollToTopBtn .caret-right {
  transform: rotate(45deg);
  left: -6.1px;
}

/* ==================== Animations ==================== */

@keyframes appear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.bottom-reveal {
  animation: bottom-reveal 1s forwards;
}

@keyframes bottom-reveal {
  0% {
    transform: translateY(calc(100% + 2rem));
    opacity: 0;
  }
  100% {
    transform: translateY(calc(0%));
    opacity: 1;
  }
}

.bottom-hide {
  animation: bottom-hide 1s forwards;
}

@keyframes bottom-hide {
  0% {
    transform: translateY(calc(0%));
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100% + 2rem));
    opacity: 0;
  }
}

/* make a bouncing animation */

@keyframes logoBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ==================== Header ==================== */
header {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  height: 150px;
  width: 100%;
  padding: 0 50px;
  /* background-color: #333; */
  background-size: cover;
  color: white;
  /* border-bottom: 50px solid var(--secondary-color); */
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform-origin: bottom;
  animation: rollAway 0.5s ease-out forwards;
}

@keyframes rollAway {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

/* ==================== Hamburger Icon ==================== */
header #hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 70px;
  scale: 0.9;
  transition: scale 0.3s ease-in;
  overflow: hidden;
  padding: 10px;
  transition: all 0.3s ease;
}

header #hamburger-icon:hover {
  scale: 1;
}

header #hamburger-icon:hover > div {
  cursor: pointer;
  background-color: var(--secondary-color);
}

header #hamburger-icon div {
  margin-bottom: 7px;
  height: 7px;
  width: 100%;
  border-radius: 5px;
  background-color: white;
  transition: all 0.3s ease;
}

header #hamburger-icon div:last-child {
  margin-bottom: 0;
}

/* open animation */
header #hamburger-icon.open {
  transform: translateX(20%);
}

header #hamburger-icon.open div:first-child {
  transform: rotate(45deg) translate(0, 20.5px);
}

header #hamburger-icon.open div:nth-child(2) {
  opacity: 0;
}

header #hamburger-icon.open div:last-child {
  transform: rotate(-45deg) translate(0, -20.5px);
}

/* ==================== LOGO ==================== */

#logo {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  font-family: "Audiowide", cursive;
  font-size: 5rem;
  font-weight: 400;
  color: white;
  text-shadow: 2px 2px 4px #000000;
  transition: transform 0.3s ease;
  cursor: pointer;
}

#logo:hover {
  animation: logoBounce 2s ease-in-out infinite;
}

/* ==================== Info ==================== */
#hamburger-icon,
#info {
  flex-grow: 0;
  display: flex;
  justify-content: center;
}

#hamburger-icon-container,
#info {
  min-width: 200px;
}

header #info {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  text-align: right;
}

/* ==================== Navigation ==================== */
nav {
  display: flex;
  justify-content: center;
  top: 150px;
  left: 0;
  right: 0;
  z-index: 1;
  position: absolute;
  background-color: var(--secondary-color);
  width: 100%;
  height: 0;
  visibility: hidden;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  width: 100%;
}

nav ul li {
  cursor: pointer;
  width: 100%;
  height: 6rem;
  text-align: center;
  line-height: 6rem;
  transition: background-color 0.5s ease;
  overflow: hidden;
}
nav ul li:hover {
  background-color: white;
}

nav ul li a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.5s ease;
  display: block;
  width: 100vw;
}
nav ul li:hover a {
  color: black;
}

/* nav Animation */

/* close */
@keyframes shrink {
  0% {
    height: calc(6rem * 4);
    font-size: 2rem;
  }
  50% {
    height: 0px;
    font-size: 0;
  }
  100% {
    height: 0px;
    font-size: 0;
    visibility: hidden;
  }
}

.nav-shrink {
  animation-name: shrink;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  /* animation-iteration-count: 1; */
  animation-timing-function: ease-in-out;
}

/* open */
@keyframes grow {
  0% {
    height: 0px;
    font-size: 0px;
  }
  50% {
    height: calc(6rem * 3);
    font-size: 0rem;
  }
  100% {
    height: calc(6rem * 3);
    font-size: 2rem;
    visibility: visible;
  }
}

.nav-grow {
  animation-name: grow;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  /* animation-iteration-count: 1; */
  animation-timing-function: ease-in-out;
}

/* ==================== Home Section ==================== */
#home {
  height: calc(100vh - 150px);
}

#home-video {
  /* position: absolute; */
  top: calc(150px);
  margin: 2rem;
  /* width: calc(100% - 4rem)!important; */
  height: calc(
    100vh - 150px - 4rem
  ) !important; /* 100% - 150px for the header and 1rem */
  border-radius: 2rem !important;
  animation: forwards 1s appear;
}

.video-container {
  height: 100%;
  overflow: hidden;
}

.play-overlay {
  position: absolute;
  top: calc(150px + 2rem);
  height: calc(100vh - 150px - 4rem);
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 30px solid black;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  margin-left: 10px;
}

.hidden {
  display: none;
}

/* #home-video::-webkit-media-controls {
  display: none !important;
}

#home-video::-moz-media-controls {
  display: none !important;
}

#home-video::-ms-media-controls {
  display: none !important;
}

#home-video:hover::-webkit-media-controls {
  display: block !important;
}

#home-video:hover::-moz-media-controls {
  display: block !important;
}

#home-video:hover::-ms-media-controls {
  display: block !important;
} */

/* ==================== Contact Section ==================== */
#contact {
  flex-direction: column;
  height: auto;
  padding: 2rem;
  font-size: 2.5rem;
  text-align: center;
  color: var(--secondary-color);
  overflow: hidden;
}

#contact-content h2 {
  margin: 2rem;
}

/* #contact-content {
  transform: translateY(100px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
} */

#contact-content.reveal {
  opacity: 1;
  transform: translateY(0);
}

#contact-content button {
  cursor: pointer;
  margin: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 600;
  scale: 0.9;
  transition: transform 1s ease-out, scale 0.3s ease-in, color 0.3s ease-in;
}

#contact-content.reveal button {
  transform: translateY(0) scale(0.9);
}

#contact-content button:hover,
#contact-content.reveal button:hover {
  color: white;
  scale: 1;
  animation: pulse 1s forwards;
}

/* Form styles */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: none;
  padding: 1.5rem;
  /* background-color: rgba(255, 255, 255, 0.9); */
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form label {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.contact-form input,
.contact-form textarea,
.contact-form input:focus,
.contact-form textarea:focus {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid #ddd;
  outline: none;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  color: #333;
}

.contact-form input:active,
.contact-form input:focus {
  border: 1px solid #ddd;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}

.contact-form button[type="submit"]:hover {
  background-color: #e600a8;
  transform: scale(1.05);
}

/* ==================== Description Section ==================== */
#description-box,
.areas-box {
  flex-direction: column;
  justify-content: start;
  margin-top: 1rem;
  padding: 2rem;
  width: var(--section-width);
  border-radius: var(--section-border-radius);
  background-color: white;
  color: black;
  text-align: center;
  z-index: 10;
}

/* ==================== Description reveal animation ==================== */
/* Initial state for elements */
#description-box * {
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#description-box .right {
  transform: translateX(50%);
}

#description-box .appear {
  transform: translateX(0);
}

/* Reveal animations */
#description-box .reveal-left {
  opacity: 1;
  transform: translateX(0);
}

#description-box .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

#description-box .reveal-appear {
  opacity: 1;
}

/* ==================== Banner section ==================== */

#banner {
  background-color: transparent;
}

#banner-frame {
  margin: var(--section-banner-margin);
  width: 100%;
  height: calc(750px - 4rem);
  background-color: transparent;
  border-radius: var(--section-border-radius);
  box-shadow: 0 0 0 4rem #000000;
}

/* ==================== Areas Section ==================== */

#areas {
  flex-direction: column;
}

#areas-heading-box {
  background: #e600a8;
  background: -webkit-linear-gradient(
    deg,
    rgba(230, 0, 168, 1) 0%,
    rgba(30, 165, 156, 1) 100%
  );
  background: -moz-linear-gradient(
    deg,
    rgba(230, 0, 168, 1) 0%,
    rgba(30, 165, 156, 1) 100%
  );
  background: linear-gradient(
    nulldeg,
    rgba(230, 0, 168, 1) 0%,
    rgba(30, 165, 156, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#E600A8",
  endColorstr="#1EA59C",
  GradientType=0
);
  right: 1000px;
}

#areas-heading-box.reveal {
  transform: translateX(-1000px);
}

#areas-heading {
  background-color: #000000; /* Black overlay */
  position: relative;
  overflow: hidden;
}

#areas-heading h1 {
  font-size: 3.5rem;
  margin: 2rem;
  text-align: center;
  font-weight: 900;
  position: relative;
  color: #000000; /* Black text (invisible on black) */
}

#areas-heading h1::before {
  content: attr(data-text); /* You need data-text attribute! */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: transparent;
  /* background: #e600a8; Pink shows through */
  background: #e600a8;
  background: -webkit-linear-gradient(
    deg,
    rgba(230, 0, 168, 1) 0%,
    rgba(30, 165, 156, 1) 100%
  );
  background: -moz-linear-gradient(
    deg,
    rgba(230, 0, 168, 1) 0%,
    rgba(30, 165, 156, 1) 100%
  );
  background: linear-gradient(
    nulldeg,
    rgba(230, 0, 168, 1) 0%,
    rgba(30, 165, 156, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#E600A8",
  endColorstr="#1EA59C",
  GradientType=0
);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.areas-box {
  margin-top: 1rem;
  padding: 2rem;
  width: var(--section-width);
  border-radius: var(--section-border-radius);
  background-color: white;
  color: black;
}

.area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.area-content {
  flex: 1;
  padding-right: 2rem;
}

.area-content:nth-child(2) {
  padding-left: 2rem;
}

.area-content h2 {
  margin-bottom: 1rem;
  font-family: "Grotesk", sans-serif;
}

/* ==================== Slide Show ==================== */

.slideshow-container {
  position: relative;
  flex: 1;
  height: 550px;
  border-radius: var(--section-border-radius);
}

.slides-wrapper {
  position: relative;
  height: 100%;
}

.mySlides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: hidden;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade-in {
  opacity: 1;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 1;
}

.prev {
  left: 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: var(--secondary-color);
}

/* ==================== areas reveal animation ==================== */
/* Initial state for elements */
/* .areas-box *, */
.area-content * {
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* .areas-box .right, */
.area-content .right {
  transform: translateX(50%);
}

/* .areas-box .appear, */
.area-content .appear {
  transform: translateX(0);
}

/* Reveal animations */
/* .areas-box .reveal-left, */
.area-content .reveal-left {
  opacity: 1;
  transform: translateX(0);
}

/* .areas-box .reveal-right, */
.area-content .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

/* .areas-box .reveal-appear, */
.area-content .reveal-appear {
  opacity: 1;
}

/* ==================== Location Section ==================== */
#location-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: var(--section-width);
  margin: 1rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--secondary-color);
  color: white;
  border-radius: var(--section-border-radius);
}

#location h1 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 4rem;
}

#location hr {
  border: none;
  height: 2px;
  background-color: white;
}

#location-container div {
  display: flex;
  justify-content: center;
  align-items: center;
}

#location iframe {
  border-radius: var(--section-border-radius);
  margin: 2rem;
  margin-top: 3rem;
}

#map {
  height: 450px;
  /* keep aspect-ratio */
  width: 100%;
  border-radius: var(--section-border-radius);
  margin: 2rem;
  margin-top: 3rem;
}

/* ==================== Footer ==================== */

footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2rem;
  height: 200px;
  background-color: transparent;
  color: white;
}

/* ==================== Media Queries for responsivness ==================== */

/* =================== background =================== */

@media (max-width: 1420px) {
  body {
    background-position: top center;
    background-size: 107.5%;
    background-repeat: no-repeat;
  }

  #maps {
    display: flex;
    flex-direction: column;
  }

  #map,
  #location iframe {
    margin: 2rem auto 0;
  }
}

/* ==================== iPad Pro ==================== */
@media (max-width: 1366px) {
  header #hamburger-icon {
    width: 60px;
  }

  header #hamburger-icon div {
    margin-bottom: 6px;
    height: 6px;
    border-radius: 5px;
  }

  /* open animation */

  header #hamburger-icon.open div:first-child {
    transform: rotate(45deg) translate(0, 17.5px);
  }

  header #hamburger-icon.open div:last-child {
    transform: rotate(-45deg) translate(0, -17.5px);
  }

  #logo {
    font-size: 3.5rem;
  }

  header #info {
    font-size: 1rem;
  }

  #banner-frame {
    height: calc(500px - 2rem);
  }
}
/* ==================== iPad ==================== */

@media (max-width: 950px) {
  header {
    height: 125px;
    padding: 10px 25px;
  }

  header #hamburger-icon-container {
    min-width: unset;
  }

  header #hamburger-icon {
    width: 50px;
  }

  header #hamburger-icon div {
    margin-bottom: 5px;
    height: 5px;
    border-radius: 5px;
  }

  /* open animation */

  header #hamburger-icon.open div:first-child {
    transform: rotate(45deg) translate(0, 14.5px);
  }

  header #hamburger-icon.open div:last-child {
    transform: rotate(-45deg) translate(0, -14.5px);
  }

  header #info {
    font-size: 1rem;
  }

  #logo {
    font-size: 3rem;
  }

  header #info {
    font-size: 1rem;
  }

  nav {
    top: 75px;
    height: fit-content;
  }

  nav ul li {
    height: 4rem;
    line-height: 4rem;
  }

  /* nav Animation */

  /* close */
  @keyframes shrink {
    0% {
      height: calc(4rem * 4);
      font-size: 2rem;
    }
    50% {
      height: 0px;
      font-size: 0;
    }
    100% {
      height: 0px;
      font-size: 0;
      visibility: hidden;
    }
  }

  /* open */
  @keyframes grow {
    0% {
      height: 0px;
      font-size: 0px;
    }
    50% {
      height: calc(4rem * 3);
      font-size: 0rem;
    }
    100% {
      height: calc(4rem * 3);
      font-size: 2rem;
      visibility: visible;
    }
  }

  /* #home-video {
    top: calc(125px);
    width: calc(100% - 2rem) !important;
    height: calc(100% - 125px - 2rem) !important;
  } */

  /* ==================== Home Section ==================== */
  /* #home {
    height: calc(100vh - 150px);
  } */

  .play-overlay {
    top: calc(125px + 2rem);
    height: calc(100vh - 125px - 4rem);
  }

  #description-box,
  .areas-box,
  #location-container,
  #banner-frame {
    margin-top: 1rem;
    padding: 1rem;
    width: var(--section-width);
  }

  #description-box *:not(h1) {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 4rem;
  }

  #contact {
    padding-top: 4rem;
    font-size: 2rem;
  }

  #contact-content input {
    /* padding: 0.5rem; */
    font-size: 1.5rem;
  }

  #banner-frame {
    margin-top: 1rem;
    height: calc(500px - 2rem);
  }

  #map,
  #location iframe {
    border-radius: 1rem;
    height: auto;
    width: 100%;
    margin: 1rem;
  }

  #location iframe {
    margin-top: 2rem;
  }
}

/* ==================== small tablets ==================== */
@media (max-width: 791px) {
  #banner-frame {
    height: calc(350px - 2rem);
  }

  /* .areas-box {
    height: 1000px; 
  } */

  .area {
    flex-direction: column;
  }

  /* New styles for reordering */
  #area2 .area-content {
    order: -1; /* This moves the content before the slideshow */
  }

  #area2 .slideshow-container {
    order: 1; /* This ensures the slideshow comes after the content */
  }

  .area-content {
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .area-content:nth-child(2) {
    padding-left: 0px;
  }

  .slideshow-container {
    flex: auto;
    width: 100%;
    margin-bottom: 1rem;
  }

  .mySlides,
  .mySlides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .prev,
  .next {
    top: 50%;
    transform: translateY(-50%);
  }

  .area-content {
    padding-right: 0;
    padding-bottom: 1rem;
  }
}

/* ==================== Big Phones ==================== */

@media (max-width: 625px) {
  #info {
    display: none;
  }

  #description-box,
  .areas-box,
  #location-container,
  #banner-frame {
    margin: 0.5rem;
    padding: 0.5rem;
    width: calc(100% - 1rem);
  }
}

/* ==================== Phones ==================== */

@media (max-width: 530px) {
  body {
    background-image: url("assets/img/bg/background_2024.jpg");
  }
  header {
    height: 75px;
  }

  #home-video {
    top: calc(75px);
    height: calc(100% - 75px - 2rem) !important;
  }

  .play-overlay {
    top: calc(75px);
    height: calc(100vh - 75px - 4rem);
  }

  #footer-content {
    display: none;
  }
}

/* ==================== Small Phones ==================== */

@media (max-width: 500px) {
  #home-video {
    height: calc(75%) !important;
    margin: 2rem auto;
  }

  #logo {
    font-size: 2.5rem;
  }
  h1 {
    font-size: 3rem;
  }
}

/* ==================== Extra Small Phones ==================== */

@media (max-width: 370px) {
  #logo {
    font-size: 2rem;
  }
}
