  @font-face {
  font-family: 'Stretch Pro';
  src:
    url('/fonts/StretchProRegular.woff2') format('woff2'),
    url('/fonts/StretchProRegular.woff') format('woff');

  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Lexend+Exa:wght@100..900&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');

*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    :root{
      --bg:#0a0a0a;
      --card:#151515;
      --border:rgba(255,255,255,0.08);
      --text:#ffffff;
      --muted:rgba(255,255,255,0.6);
      --pill:#161616;
      --active:#ffffff;
      --activeText:#000000;
      --transition:cubic-bezier(.77,0,.18,1);
    }

    body{
         background: url(https://images.unsplash.com/photo-1545128485-c400e7702796?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8Y2x1YiUyMGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D);
      color:var(--text);
      font-family: "Zalando Sans Expanded", sans-serif;
      overflow:hidden;
      height:100vh;
      background-size:cover;
    }
    

    a{
      text-decoration:none;
      color:inherit;
    }

    /* NAV */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    /* backdrop-filter: blur(20px); */
}

.pogo{
  padding: 10px;
}

    .logo{
      font-size:14px;
      letter-spacing:8px;
      text-transform:uppercase;
      font-weight:600;
    }

    /* CONTENT */

    .content-wrapper{
      position:relative;
      width:100%;
      height:100vh;
      overflow:hidden;
    }

    .tab-content{
      position:absolute;
      inset:0;
      opacity:0;
      pointer-events:none;
      transition:opacity 0.6s var(--transition);
      display:flex;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:24px;
      /* padding-top:60px; */
      padding-bottom:0px;
    }

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

.tab-content h1 {
    font-size: clamp(32px, 7vw, 100px);
    text-transform: uppercase;
    /* letter-spacing: -5px; */
}

    .tab-content p{
      color:var(--muted);
      font-size:14px;
      text-transform:uppercase;
      letter-spacing:3px;
    }

    /* TEMP BACKGROUNDS */

    /* .apparel{
      background:#111111;
    }

    .logos{
      background:#171717;
    }

    .website{
      background:#1e1e1e;
    } */

    /* BUTTON */

    .view-more{
      padding:16px 28px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,0.1);
      background:rgba(255,255,255,0.05);
      color:white;
      font-size:13px;
      letter-spacing:2px;
      text-transform:uppercase;
      transition:0.4s ease;
      cursor:pointer;
    }

    .view-more:hover{
      background:white;
      color:black;
    }

    /* BOTTOM NAV */

    .bottom-nav{
      position:fixed;
      bottom:30px;
      left:50%;
      transform:translateX(-50%);
      z-index:100;
    }

    .pill-nav{
      position:relative;
      display:flex;
      background:#1616161a;
      border-radius:999px;
      padding:8px;
      border:1px solid var(--border);
      overflow:hidden;
      backdrop-filter:blur(20px);
    }

    .pill-indicator{
      position:absolute;
      top:8px;
      left:8px;
      width:120px;
      height:calc(100% - 16px);
      background:white;
      border-radius:999px;
      transition:transform 0.45s var(--transition);
    }

    .pill-btn{
      position:relative;
      width:120px;
      height:40px;
      border:none;
      background:transparent;
      color:white;
      z-index:2;
      cursor:pointer;
      font-size:13px;
      letter-spacing:1px;
      transition:0.4s ease;
      text-transform: uppercase;
    }

    .pill-btn.active{
      color:black;
    }

    /* TRANSITION OVERLAY */

    .transition-overlay{
      position:fixed;
      inset:0;
      background:white;
      transform:scaleY(0);
      transform-origin:bottom;
      z-index:999;
      pointer-events:none;
    }

    .transition-overlay.active{
      animation:pageTransition 1s var(--transition) forwards;
    }

    @keyframes pageTransition{

      0%{
        transform:scaleY(0);
        transform-origin:bottom;
      }

      50%{
        transform:scaleY(1);
        transform-origin:bottom;
      }

      51%{
        transform-origin:top;
      }

      100%{
        transform:scaleY(0);
        transform-origin:top;
      }

    }
    /* ========================================= */
/* UPDATED TAB CONTENT */
/* ========================================= */

.tab-content{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.6s cubic-bezier(.77,0,.18,1);
  overflow:hidden;
}

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

/* ========================================= */
/* SPLIT LAYOUT */
/* ========================================= */

.hero-split{
  position:relative;
  width:100%;
  height:100vh;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  overflow:hidden;
}

/* ========================================= */
/* VIDEO */
/* ========================================= */

.hero-video-wrap{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* RIGHT EDGE BLUR */

.video-fade{
  position:absolute;
  top:0;
  right:-2px;
  width:240px;
  height:100%;

  pointer-events:none;

  background:linear-gradient(
    to right,
    rgba(10,10,10,0) 0%,
    rgba(10,10,10,0.15) 20%,
    rgba(10,10,10,0.45) 45%,
    rgba(10,10,10,0.75) 70%,
    rgba(10,10,10,1) 100%
  );
}
/* ========================================= */
/* CONTENT SIDE */
/* ========================================= */

.hero-content{
  position:relative;
  z-index:2;

  width:100%;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;

  padding:8vw;

  background:#0a0a0a;
}

.hero-content p{
  color:rgba(255,255,255,0.55);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:3px;
  margin-bottom:18px;
}

.hero-content h1{
  font-size:clamp(58px,8vw,140px);
  line-height:0.9;
  letter-spacing:-5px;
  text-transform:uppercase;
  margin-bottom:36px;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.view-more{
  padding:16px 28px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.05);
  color:white;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:0.4s ease;
  cursor:pointer;
}

.view-more:hover{
  background:white;
  color:black;
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:992px){

  .hero-split{
    display:block;
  }

  .hero-video-wrap{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }

  .hero-video{
    width:100%;
    height:100%;
  }

  .video-fade{
    width:100%;
    height:100%;

    /* background:linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.45) 35%,
      rgba(0,0,0,0) 75%
    ); */

    backdrop-filter:none;
  }

  .hero-content{
    position:absolute;
    right:0;
    top:0;

    width:100%;
    height:auto;

    padding:40px 30px 130px;

    background:none;

    justify-content:flex-end;
    align-items:flex-end;

    text-align:right;
  }

  .hero-content h1{
    font-size:clamp(58px,14vw,110px);
    margin-bottom:24px;
  }

  .hero-content p{
    margin-bottom:12px;
  }

}



/*LOADER*/
.loader{
    position:fixed;
    inset:0;
    background:#000;
    z-index:999999;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    transition:opacity .8s ease;
}

.loader.hide{
    opacity:0;
    pointer-events:none;
}

.logo{
    width:min(420px,70vw);
    margin-left:220px;}
.logo svg{
    width:100%;
    height:auto;
    overflow:visible;

    /* Adjust these */
    transform: translateX(-120px) translateY(-15px);
}

/* ---------- Initial States ---------- */

#icon{
    opacity:0;
    transform:translateX(240px) scale(.92);
    transform-box:fill-box;
    transform-origin:center;
}

#break{
    opacity:0;
    transform:scaleY(0);
    transform-box:fill-box;
    transform-origin:center;
}

#text{
    opacity:0;
    transform:translateX(90px);
    transform-box:fill-box;
    transform-origin:left center;
}


.hero-message {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Acts as the anchor for the absolute spans */
    /* overflow: hidden; */
}

.hero-text {
    position: absolute;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    white-space: nowrap; /* Prevents text wrapping during transitions */
    pointer-events: none;
}

/* Active visible state */
.hero-text.active {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
    pointer-events: auto;
}


.hero-text {
    grid-area: 1 / 1;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    
    will-change: opacity, transform, letter-spacing;
    transition: opacity 800ms ease, transform 800ms ease, letter-spacing 800ms ease;

    /* Hidden state: wide letters and pushed down */
    letter-spacing: .4em;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.hero-text.active {
    /* Active state: tightens up to crisp readability */
    letter-spacing: .25em;
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
}


.tab-content h1 {
    position: absolute;
    top: 75px;
}


/*Gallery*/
/* --- GALLERY CONTAINER --- */
.nv-gallery-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.nv-gallery-wrapper .myEventSwiper {
    width: 100%;
    padding: 0px 0;
}

.myEventSwiper .swiper-pagination {
    display: none;
}

.nv-gallery-wrapper .swiper-slide {
    width: 320px; 
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.nv-gallery-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- GLASS TEXT OVERLAYS --- */
.nv-gallery-wrapper .nv-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    visibility: hidden;
}

.nv-gallery-wrapper .nv-overlay-text h3 {
    color: #fff;
    margin: 0 0 4px 0;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.nv-gallery-wrapper .nv-overlay-text p {
    color: #ccc;
    margin: 0;
    font-size: 12px;
}

/* --- UNDER-GALLERY FACEBOOK LINK BUTTON --- */
.nv-action-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.nv-facebook-btn {
    display: inline-block;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 30px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Interactive hover feedback */
.nv-facebook-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.nv-facebook-btn:active {
    transform: translateY(0px);
}




/*Contact*/
/* --- CONTAINER BLOCK --- */
.nv-contact-container {
    background-color: #172033db; /* Premium dark background matching the image */
    border-radius: 32px;
    padding: 60px 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    max-width: 800px;
    margin: 40px auto;
    box-sizing: border-box;
    backdrop-filter: blur(20px);
}

/* --- HEADER --- */
.nv-contact-header {
    margin-bottom: 48px;
}

/* Rounded Pill Badge */
.nv-contact-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #e5e7eb;
    margin-bottom: 24px;
}

.nv-contact-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.nv-contact-subtitle {
    font-size: 16px;
    color: #9ca3af; /* Soft gray secondary text */
    margin: 0;
}

.nv-contact-subtitle a {
    color: #6366f1; /* Rich premium purple link color */
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nv-contact-subtitle a:hover {
    opacity: 0.85;
}

/* --- THE 3-COLUMN GRID --- */
.nv-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.nv-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Premium Glass/Indigo Icon Circles */
.nv-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.2); /* Transparent Indigo backplate */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #818cf8; /* Bright icon color */
}

.nv-icon-circle svg {
    width: 20px;
    height: 20px;
}

.nv-contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.nv-contact-item p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 16px 0;
    line-height: 1.5;
    display: none;
}

/* Indigo bottom values */
.nv-contact-link, 
.nv-contact-detail {
    font-size: 14px;
    font-weight: 500;
    color: #818cf8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nv-contact-link:hover {
    opacity: 0.8;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 868px) {
    .nv-contact-grid {
        grid-template-columns: 1fr; /* Stack columns vertically on tablets/mobiles */
        gap: 32px;
    }
    
    .nv-contact-container {
        padding: 40px 24px;
        margin: 20px;
        border-radius: 24px;
    }
    
    .nv-contact-title {
        font-size: 28px;
    }
    .nv-contact-item, .nv-contact-header {
    align-items: center;
    text-align: center;
}
.nv-icon-circle {
    display: none;
}
}


