body {
  background-color: #000;
  color: #fff;
  font-family: "Lato", sans-serif;
  min-height: 100vh;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
}

#logo {
  display: flex;
  align-items: center;
  margin: 0;
}
#logo img {
  width: 12.5rem;
  height: auto;
  display: block;
}

.navbar {
  display: flex;
  gap: 2rem;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar a:hover {
  color: #8CA9AD;
}

.header-line {
  height: 3px;
  background: #8CA9AD;
  border: none;
  margin: 0 2.5rem 0 2.5rem;
}

.hero-video {
  display: block;
  width: 50rem;
  margin: 1rem auto 0 auto;
  height: auto;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  width: 100%;
  gap: 0;
  column-gap: 0;
}
.grid-row img {
  position: relative;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.grid-row img:hover {
  transform: scale(1.03);
}

.h2 {
  text-align: left;
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  position: relative;
}

.media-mix {
  position: relative;
  width: auto;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.media-mix .static-image,
.media-mix .gif-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.media-mix .text_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 2.3em;
  letter-spacing: 8px;
  text-align: center;
  white-space: nowrap;
}
.media-mix .text_overlay_small {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 1.1em;
  letter-spacing: 6px;
  text-align: center;
  white-space: nowrap;
}
.media-mix .gif-image {
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.media-mix:hover .gif-image, .media-mix:focus .gif-image {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
.media-mix:hover .static-image, .media-mix:focus .static-image, .media-mix:hover .text_overlay, .media-mix:focus .text_overlay, .media-mix:hover .text_overlay_small, .media-mix:focus .text_overlay_small {
  opacity: 0;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
}
.popup .popup-content {
  background: #111;
  margin: 5% auto;
  padding: 0;
  border-radius: none;
  max-width: 600px;
  position: relative;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
}
.popup .close {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}
.popup .close:hover {
  color: #8CA9AD;
}

.h1 {
  text-align: left;
  margin: 2rem 2.5rem 0 2.5rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: relative;
}

.text-container {
  background-image: url("hav-filter.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 1rem 0 0 0;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.h2-about {
  text-align: left;
  margin: 2rem 2.5rem 0.5rem 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #8CA9AD;
  position: relative;
}

.p {
  text-align: left;
  margin: 0 2.5rem;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  position: relative;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 2.5rem;
}

.profile {
  position: relative;
  width: 100%;
  max-width: 28rem;
  overflow: hidden;
  cursor: pointer;
}
.profile .profile-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.2s;
}
.profile .profile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.profile:hover .profile-overlay, .profile:focus .profile-overlay {
  opacity: 1;
  pointer-events: auto;
}
.profile:hover .profile-photo, .profile:focus .profile-photo {
  opacity: 0.3;
}

.overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.overlay-text-h3 {
  position: absolute;
  top: 20%;
  left: 1rem;
  z-index: 2;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin: 0 1rem;
}

.overlay-text-p,
.overlay-text-p1 {
  position: absolute;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin: 0 1rem;
}

.overlay-text-p {
  top: calc(20% + 1.4em);
  color: #8CA9AD;
  font-weight: 500;
}

.overlay-text-p1 {
  top: calc(20% + 2.5em + 2rem);
  color: #fff;
  font-weight: 300;
}

.news-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 2.5rem 4rem 2.5rem;
}

.news-image {
  flex: 1;
  justify-content: center;
}

.news-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.news-text {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin: 0;
  margin-bottom: 10%;
}

#news-content-h4 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #8CA9AD;
  margin: 0;
}

#news-content-p {
  font-size: 1.2rem;
  font-weight: 300;
}

.column-photo {
  width: 100%;
  max-width: 18.75rem;
  height: auto;
  display: block;
}

.news-insta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.insta-headline {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.elfsight-app-bfa59890-b189-427b-8102-d006335580b4 {
  display: block;
  margin: 0 auto;
  max-width: 21.875rem;
  width: 100%;
}

.main-container-insta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  box-sizing: border-box;
  display: none;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  justify-items: start;
  align-items: start;
  display: none;
}

.instagram-media {
  width: 100% !important;
  max-width: 24rem !important;
  min-width: 14rem !important;
  margin: 0 !important;
  display: none;
}

.password-container {
  margin: 8.75rem auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 0.75rem;
  max-width: 21.875rem;
  color: #222;
  border: 1px solid #8CA9AD;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}

#h2-pitches {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  margin-right: 0;
  text-align: left;
  width: 100%;
  letter-spacing: 0.03em;
}

.password-row {
  display: flex;
  width: 100%;
  gap: 0.5em;
}

#passwordInput {
  flex: 1 1 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 0.25em;
  border: 1px solid #8CA9AD;
  padding: 0.7em 0.9em;
  background: #f7f7f7;
  color: #222;
  box-sizing: border-box;
  text-align: left;
}

#passwordBtn {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 0.25em;
  border: none;
  padding: 0.7em 1.3em;
  background: #8CA9AD;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
#passwordBtn:hover {
  background: #6c868a;
}

.error-message {
  color: #ff1900;
  margin-top: 0.5em;
  font-size: 0.95em;
  text-align: left;
  width: 100%;
}

.pitch img {
  width: auto;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.modal.active {
  display: flex;
}

.carousel {
  background: #111;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
  padding: 2em 2em 2em 2em;
  position: relative;
  min-width: 22rem;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carousel img {
  max-width: 70rem;
  margin-bottom: 1em;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.5);
}

.carousel-controls {
  display: flex;
  gap: 2em;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.carousel-controls button {
  background: #8CA9AD;
  color: #000;
  border: none;
  padding: 0.5em 1.2em;
  border-radius: 0.5em;
  font-size: 1.2em;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-controls button:hover {
  background: #6c868a;
}

.close-btn {
  position: absolute;
  top: 0.75em;
  right: 1.125em;
  background: none;
  color: #8CA9AD;
  border: none;
  font-size: 2em;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #fff;
}

#carouselCounter {
  color: #8CA9AD;
  font-size: 1em;
  margin-bottom: 0.5em;
}

.footer-line {
  height: 3px;
  background: #8CA9AD;
  margin: 2rem 0 2rem 0;
  border: none;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0;
}

.footer-logo img {
  max-width: 7.5rem;
  height: auto;
  display: block;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 0;
  min-width: 12.5rem;
}

.footer-email {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #fff;
  word-break: break-all;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.social-media-list {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-media-list img {
  width: 2.25rem;
  height: 2.25rem;
  transition: transform 0.2s;
}
.social-media-list img:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .main-container,
  .main-container-insta,
  .footer-content {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .navbar-container {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 1rem 0;
  }
  .navbar {
    gap: 1rem;
    font-size: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-video {
    width: 100%;
    max-width: 100%;
  }
  .grid-row,
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .news-row {
    flex-direction: column;
    margin: 2rem 1.5rem 3rem 1.5rem;
    gap: 0;
  }
}
@media (max-width: 700px) {
  .main-container,
  .main-container-insta,
  .footer-content {
    max-width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    flex-direction: column;
  }
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  #logo img {
    width: 8rem;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    width: 100%;
  }
  .header-line,
  .footer-line {
    margin: 1rem 0;
  }
  .hero-video {
    width: 100%;
    max-width: 100%;
    margin: 0.5rem 0 0 0;
  }
  .grid-row,
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .grid-row img,
  .profile {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .media-mix {
    aspect-ratio: 16/9;
    min-height: 180px;
  }
  .media-mix .text_overlay {
    font-size: 1.3em;
    letter-spacing: 2px;
  }
  .media-mix .text_overlay_small {
    font-size: 0.9em;
    letter-spacing: 2px;
  }
  .h1 {
    font-size: 2rem;
    margin: 1rem 0.75rem 0 0.75rem;
  }
  .h2,
  .h2-about {
    margin-top: 2rem;
    font-size: 1.2rem;
    margin: 1rem 0.75rem 0.25rem 0.75rem;
  }
  .p {
    font-size: 1rem;
    margin: 0 0.75rem;
  }
  .news-row {
    flex-direction: column;
    margin: 1rem 0.75rem 2rem 0.75rem;
  }
  .news-image,
  .news-text {
    width: 100%;
    padding-right: 0;
  }
  #news-content-h4 {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  #news-content-p {
    font-size: 1rem;
  }
  .column-photo {
    max-width: 100%;
  }
  .password-container {
    margin: 3rem auto;
    padding: 1.2rem 0.75rem;
    max-width: 100%;
  }
  .carousel {
    min-width: 0;
    padding: 1em 0.5em 0.5em 0.5em;
  }
  .carousel img {
    max-width: 100%;
  }
  .carousel-controls {
    gap: 1em;
  }
  .carousel-controls button {
    font-size: 1em;
    padding: 0.4em 0.8em;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0.75rem;
  }
  .footer-logo img {
    max-width: 5rem;
  }
  .footer-contact {
    min-width: 0;
    align-items: flex-start;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .social-media-list {
    gap: 1rem;
  }
  .social-media-list img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 400px) {
  .h1, .h2, .h2-about {
    font-size: 1rem;
  }
  .media-mix .text_overlay {
    font-size: 1em;
  }
  .media-mix .text_overlay_small {
    font-size: 0.7em;
  }
  .text-container {
    margin: 1rem 0 0 0;
  }
}

/*# sourceMappingURL=style.css.map */
