/*
 * MAIN STYLE SHEET
 */

@import url(fonts.css);

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

.navbar-brand {
  margin-right: 64px;
}
header .nav-link {
  font-size: large;
  font-weight: 700;
}
.color-pink,
header .nav-link:hover,
h1 {
  color: #e90085 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Saira", sans-serif;
}

/* GENERAL */

.page-section-header {
  height: 448px;
  background: no-repeat center/cover url(../images/page-section-header.jpg);
}

.page-section-header div h1 {
  color: white !important;
  background-color: #000 !important;
  margin: auto 0;
  padding: 32px;
  margin-top: 64px;
}

.bg-photo-cover {
  background-size: cover;
  background-position: center;
}

.code {
  font-weight: bolder;
  font-size: xx-large;
  font-family: monospace;
}

.code-box,
.code-box:hover {
  text-align: center;
  color: #fff !important;
  background-color: #666 !important;
  border: 1px solid #000 !important;
}

.carousel-inner {
  max-height: calc(100vh - 106px);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 0.75rem;
}

/* LOGO SWITCHING */
.logo-dark {
  display: none;
}
[data-bs-theme="dark"] .logo-dark {
  display: inline-block;
}
[data-bs-theme="dark"] .logo-light {
  display: none;
}

/* VIDEO & CAROUSEL HERO */
.video-hero,
.carousel-hero {
  position: relative;
  height: 72vh;
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-hero .carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-hero .carousel-inner,
.carousel-hero .carousel-item,
.carousel-hero .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
}

.video-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.video-hero .display-1 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
`n/* GALLERY */`n.gallery-card {`n  transition: transform 0.3s ease, shadow 0.3s ease;`n  overflow: hidden;`n  border: none;`n}`n.gallery-card:hover {`n  transform: translateY(-5px);`n  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;`n}`n.gallery-card img {`n  transition: filter 0.3s ease;`n}`n.gallery-card:hover img {`n  filter: brightness(1.1);`n}
