:root {
  --primary-dark: #000;
  --primary-mid: #ffb82a;
  --primary-light: #ffb82a;
  --primary-lightest: #ffffff;

  --font-family-base: "Outfit", sans-serif;
  --font-family-heading: "Graduate", sans-serif;

  --font-weight-light: 200;
  --font-weight-regular: 300;
  --font-weight-heavy: 400;

  --font-size-base: 17px;
  --font-size-large: 23px;
  --font-size-heading: 45px;

  --border-radius: 10px;
}

@media (max-width: 1014px) {
  .navbar-expand-lg .navbar-toggler {
    display: block;
  }

  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }

  .navbar-expand-lg .navbar-collapse.show {
    display: block !important;
  }
}

@media (min-width: 1015px) {
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
}

body {
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  font-style: normal;
  background-color: var(--primary-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  font-family: var(--font-family-heading);
  font-optical-sizing: auto;
  font-weight: var(--font-weight-heavy);
  letter-spacing: 1px;
}

.section {
  padding: 120px 0px;
}

.section-heading {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

hr {
  width: 80px;
  color: var(--primary-lightest);
  opacity: 1;
}

.card-img,
.card-img-top,
.gallery-item img {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.gallery-item:hover,
.card-img-top:hover {
  transform: scale(1.05);
}
.modal-header {
  background-color: transparent;
  border-bottom: none;
}
.modal-content {
  background-color: transparent;
  border: none;
}
.modal-body img {
  background-color: #fff; /* Optional: to ensure image visibility */
  border: var(--primary-lightest) solid 5px;
}
.custom-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  background-color: white;
  border: none;
  border-radius: 50%;
  opacity: 1;
  z-index: 1051; /* Ensure the close button is on top */
}

.custom-close::before {
  content: "\2715"; /* Unicode for 'x' */
  font-size: 20px;
  color: black;
  display: block;
  text-align: center;
  line-height: 30px;
}

h2 {
  font-size: var(--font-size-heading);
  color: var(--primary-lightest);
}

@media only screen and (max-width: 768px) {
  .section {
    padding: 0px 0px;
  }

  .section-heading {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  hr {
    display: none;
  }
  h1 {
    font-size: 25px !important;
  }
  h2 {
    font-size: 20px !important;
  }
  .pb-5,
  .py-5 {
    padding-bottom: 0rem !important;
  }

  .mt-5 {
    margin-top: 0rem !important;
  }
}
