* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Base */
html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #F5CB5C;
  color: #eaeaea;
  font-family: 'Adventor', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

body {
  overflow-x: hidden;
}

@font-face {
  font-family: 'Adventor';
  src: url('texgyreadventor-bold.otf') format('opentype');
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  list-style: none;
  padding: 2rem 0;
  margin: 0;
  background-color: transparent;
}

nav a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

nav a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* Main Content */
main {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  text-align: center;
  overflow: visible;
}

/* Page Content */
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
}

.page-content p {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 600px;
}

/* Home Links */
.home-links {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home-links-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.home-links a {
  font-family: 'Adventor', sans-serif;
  font-size: 2.5rem;
  color: #242423;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  text-align: left;
  display: block;
  position: relative;
  z-index: 100;
}

.home-links a:hover {
  transform: translateY(-4px) scale(1.05);
  opacity: 0.8;
}

/* Layout Boxes */
.home-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.5rem;
}

.home-box p {
  font-size: 2.5rem;
  color: #242423;
  text-transform: uppercase;
  margin: 0;
}

/* Corners */
.corner-tjp {
  position: absolute;
  font-size: 1rem;
  color: #e8eddf;
  text-transform: uppercase;
  letter-spacing: 2px;
  left: 0;
  bottom: calc(50% + 150px);
  pointer-events: none;
  z-index: 10;
}

.corner-motion {
  position: absolute;
  font-size: 1rem;
  color: #e8eddf;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: rotate(90deg);
  right: -105px;
  top: calc(50% - 100px);
  transform-origin: left top;
  pointer-events: none;
  z-index: 10;
}

/* Squares */
.top-right-squares {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.square {
  width: 60px;
  height: 60px;
}

.square.black {
  background-color: #242423;
}

.square.white {
  background-color: #e8eddf;
}

/* Floating Circle */
.floating-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #e8eddf;
  border-radius: 50%;
  box-shadow: -50px 50px 105px rgba(0, 0, 0, 0.2);
  z-index: 3;
  pointer-events: none;
  transition: none;
}

/* Frame and Labeling */
.corner-frame {
  position: absolute;
  width: 50px;
  height: 50px;
  border-top: 2px solid #242423;
  border-left: 2px solid #242423;
}

.label-tag {
  font-size: 0.75rem;
  color: #242423;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 0.25rem;
  font-family: monospace;
}

/* Grid */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
  height: 100vh; /* will be updated dynamically */
}


/* Social Icons */
.social-icons a {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.social-icons a:hover {
  transform: scale(1.5);
  opacity: 0.2;
}
.fade-in {
  opacity: 0;
  animation: simpleFadeIn 2s ease forwards;
}

@keyframes simpleFadeIn {
  to {
    opacity: 1;
  }
  

  
}
.top-nav {
  position: absolute;
  top: 2.35rem;
  left: 8rem;
  z-index: 100;
   z-index: 1001;
}

.top-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
   z-index: 1001;
}

.top-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Adventor', sans-serif;
  color: #242423;
  font-size: 1rem;
  transition: opacity 0.3s ease;
   z-index: 1001;
 
}

.top-nav a:hover {
  opacity: 0.5;
}
@media (max-width: 768px) {
  .top-nav {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem;
    z-index: 1001;
  }

  .top-nav ul {
    flex-direction: row; /* horizontal layout */
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
  }

  .top-nav a {
    font-size: 0.9rem;
  }
}
@keyframes floatyEaseIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatyLoop {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


@keyframes easeOutPhoto {
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.contact-header {
  text-align: center;
  margin-top: 20vh;
  font-size: 2.5rem;
  font-weight: bold;
  color: #242423;
  z-index: 10;
  position: relative;
}

.contact-title {
  display: inline-block;
  font-size: 2.75rem;
  line-height: 1.4;
  position: relative;
}
.contact-form {
  max-width: 600px;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
  position: relative;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Adventor', sans-serif;
  padding: 0.75rem 1rem;
  border: 2px solid #242423;
  background-color: #e8eddf;
  color: #242423;
  font-size: 1rem;
  flex: 1;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #242423;
  color: #F5CB5C;
  font-family: 'Adventor', sans-serif;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #000;
}
.bubble-line {
  font-size: 3rem;
  text-align: center;
  color: #242423;
  line-height: 1.3;
  text-transform: lowercase;
}

.bubble-word {
  display: inline-block;
  animation: bubblePop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: bold;
  color: #e8eddf;
  white-space: nowrap;
  transform-origin: center;
}


@keyframes bubblePop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  40% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.bubble-wrapper {
  display: inline-block;
  vertical-align: baseline;
  transition: width 0.4s ease;
  white-space: nowrap;
  width: auto; /* allow dynamic width */
}
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-check {
  background: white;
  padding: 2.5rem 3.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.overlay.active .overlay-check {
  transform: scale(1);
  opacity: 1;
}

.checkmark-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #F5CB5C;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  animation: popIn 0.4s ease forwards;
}

.checkmark {
  width: 36px;
  height: 36px;
}

.checkmark-path {
  fill: none;
  stroke: #242423; /* Dark gray/black */
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw 0.5s ease forwards 0.2s;
}

.overlay-check p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #111;
  margin: 0;
}

/* Animations */
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.video-pair {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.vertical-vid {
  flex: 1;
  position: relative;
}

.video-grid {
  column-count: 3;
  column-gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
}

.video-container {
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem;
  border: 2px solid #242423;
  border-radius: 8px;
  overflow: hidden;
  background-color: #e8eddf;
}

.video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}

.video-container.vertical iframe {
  aspect-ratio: 9 / 16;
}
.video-container:hover {
  filter: brightness(0.7);
  cursor: pointer;
  transition: filter 0.3s ease;
}

.video-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;              /* ✅ No tint */
  backdrop-filter: blur(12px);          /* ✅ Soft blur */
  -webkit-backdrop-filter: blur(12px);  /* ✅ Safari support */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}


.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 90vw;
  max-height: 90vh;
  padding: 0;
  border-radius: 0;
  background: transparent;        /* ✅ No background at all */
  backdrop-filter: none;          /* ✅ Remove blur from content box */
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-modal.active .video-modal-content {
  opacity: 1;
}

.video-modal-content iframe {
  width: 100%;
  height: calc(90vh - 6rem - 120px);
  border: none;
  margin-bottom: 1rem;
  object-fit: contain;
  background: transparent; /* ✅ Prevents fallback white */
}


.video-description {
  color: #e8eddf;
  font-size: 1rem;
  font-family: 'Adventor', sans-serif;
  text-align: center;
  width: 100%;
  line-height: 1.6;
  overflow-y: auto;
  max-height: 120px;
  white-space: normal; /* allow line wrapping */
}


.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: filter 0.3s ease;
}

.video-container.vertical {
  aspect-ratio: 9 / 16;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
  aspect-ratio: inherit;
}

.video-container:hover {
  filter: brightness(0.7);
}

.video-container {
  aspect-ratio: 16 / 9;
}

.video-container.vertical {
  aspect-ratio: 16 / 9; /* override 9/16 to keep layout tighter */
}

body.modal-open {
  overflow: hidden;
}
body {
  overflow-x: hidden;
}
/* Hide scrollbars visually */
body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}
.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10000;
  transition: opacity 0.2s ease;
}

.close-button:hover {
  opacity: 0.6;
}
.home-nav-disabled {
  font-size: 2.5rem;
  color: #242423;
  text-transform: uppercase;
  text-decoration: line-through;
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  font-family: 'Adventor', sans-serif;
}
@media (max-width: 768px) {
  .video-list {
    column-count: 1;
    padding: 1rem;
  }

  .video-container {
    margin-bottom: 1.5rem;
  }

  .home-nav a,
  .home-nav-disabled {
    font-size: 1.5rem;
  }

  .corner-tjp,
  .corner-motion {
    display: none;
  }

  .label-tag {
    font-size: 0.6rem;
  }

  main {
    padding-top: 6rem;
  }

  .video-modal-content iframe {
    height: 40vh;
  }
}
----------------------
.page-footer-tags {
  position: relative;
  width: 100%;
  height: 10rem;
  margin-top: 6rem;
}

.page-footer-tags .corner-frame,
.page-footer-tags .label-tag {
  position: absolute;
}
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}
