@font-face {
    font-family: 'Stretch Pro';
    src: url('fonts/stretch_pro/StretchPro.otf') format('woff2'),
         url('fonts/stretch_pro/StretchPro.otf') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Reset some default browser styles */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; /* Needed for absolute children */
    font-family: Arial, sans-serif;
    background-color: #101010;
    color: #dcdcdc;
    margin: 0;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 2rem;
}

/* Basic styling for headings */
h1 {
    color: #DCDCDC;
    text-align: center;
    font-family: "Stretch Pro";
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

h2 {
    color: #DCDCDC;
    text-align: center;
    font-family: "Stretch Pro";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

h3 {
    color: #fff;
    text-align: center;
    font-family: "Stretch Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Basic styling for paragraphs */
p {
    color: #FFF;
    text-align: center;
    font-family: "Roboto Mono";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Basic styling for links */
a {
    text-decoration: none;
    color:#DCDCDC
}

.container {
    flex: 1;
    position: relative;
    max-width: 2000px;
    margin: 0;
    padding: 0 0px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    font-family: "Stretch Pro";
    font-size: 1rem;
    column-gap: 5rem;
    row-gap: 1rem;
    z-index: 100;
}

.nav-link-box {
  position: relative;
  padding: 0.5em 1.5em;
  background: transparent;
  color: #DCDCDC;
  overflow: hidden;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.nav-link-box::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: #fff;
  z-index: -1;
  transition: width 0.35s cubic-bezier(.77,0,.18,1);
}

.nav-link-box:hover,
.nav-link-box:focus {
  color: #101010;
}

.nav-link-box:hover::before,
.nav-link-box:focus::before {
  width: 100%;
}

.hero_video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero_logo {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 17rem;
    z-index: 100;
}

#logo {
    width: 100%;
}

.hero_Shade {
    position: absolute;
    width: 100%;
    height: 100%; /* Full video height */
    background: linear-gradient(
        180deg,
        transparent 0%,          /* No shadow at top */
        transparent 50%,         /* Shadow starts at 50% down */
        #101010 80%,  /* Mid fade */
        #101010 100%             /* Full shadow at bottom */
    );
    z-index: 10;
    pointer-events: none; /* Optional: Allows clicks through */
}

.footer_socials {
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    z-index: 10;
}

footer {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

@media screen and (max-width: 750px) {

    h1 {
        font-size: 100px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 20px;
    }
    p {
        font-size: 20px;
    }
    .nav-links {
        margin-top: 2rem;
        font-size: 0.5rem;
    }
    
    /*.hero_logo {
        left: 5%;
        top: 10rem;
    }*/
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  padding: 32px 0;
  width: 90%;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.gallery-item:hover {
  transform: scale(1.03);
}

/* Example for different heights (masonry effect) */
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(2) { grid-row: span 1; }
.gallery-item:nth-child(3) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 1; }

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-height: 75vh;
  max-width: 90vw;
  /* border-radius: 12px; */
  border-radius: 0;
  box-shadow: 0 0 32px #000;
  display: block;
  margin: auto;
}

.close-btn {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.2s;
}
.close-btn:hover { color: #171ae1; }

@media screen and (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
    width: 98%;
  }
  .gallery-item {
    min-height: 180px;
    max-height: 50vw;
    border-radius: 10px;
    grid-row: auto !important;
  }
  .modal-content {
    max-width: 98vw;
    max-height: 60vh;
  }
  .close-btn {
    top: 12px;
    right: 18px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 400px) {
  .gallery-item {
    min-height: 120px;
    max-height: 40vw;
    grid-row: auto !important;
  }
  .modal-content {
    max-width: 99vw;
    max-height: 40vh;
  }
  .close-btn {
    top: 6px;
    right: 8px;
    font-size: 1.5rem;
  }
}

.wave-accordion {
  width: 90%;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.wave-section {
  position: relative;
  background: transparent;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 0;
  transition: background 0.2s;
  outline: none;
}

.wave-svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  animation: waveOscillate 2.5s infinite linear alternate;
}

@keyframes waveOscillate {
  0% {
    d: path('M0,30 Q200,60 400,30 T800,30');
  }
  50% {
    d: path('M0,30 Q200,0 400,30 T800,30');
  }
  100% {
    d: path('M0,30 Q200,60 400,30 T800,30');
  }
}

.wave-headline {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2rem;
  font-family: "Stretch Pro", Arial, sans-serif;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  text-shadow: 0 2px 8px #101010;
}

.wave-section.open .wave-headline,
.wave-section:hover .wave-headline,
.wave-section:focus .wave-headline {
  opacity: 1;
}

.wave-content {
  width: 100%;
  background: rgba(16,16,16,0.95);
  color: #fff;
  font-size: 1.1rem;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  border-radius: 0 0 1.5rem 1.5rem;
  margin-top: -10px;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}

.wave-section:not(.open) .wave-content {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.contact-circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 80%;
  margin: 2rem auto;
}

.circle-btn {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, #101010 0%, #0000ff 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Stretch Pro";
  font-size: 2rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.circle-btn:hover,
.circle-btn:focus {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

@media screen and (max-width: 750px) {

  h2 {
    font-size: 20px;
  }

  .contact-circles {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
  }
  .circle-btn {
    width: 10rem;
    height: 10rem;
    font-size: 1rem;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-left 18s linear infinite;
}
.marquee__item {
  color: #DCDCDC;
  font-family: "Stretch Pro";
  font-size: 50px;
  line-height: 1;
}
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-13%); }
}
@media screen and (max-width: 750px) {
  .marquee__item {
    font-size: 30px;
  }
}
