:root {
  --hex-width: 140px;
  --hex-height: 121px; /* 140 × √3/2 */
  --hex-horiz-step: 240px; /* 140 + 100 spacing */
  --hex-vert-step: 91px;   /* 121 × 0.75 */
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Safari */
  -ms-text-size-adjust: 100%;     /* IE */
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  background-color: #111;
   overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Scroll container */
.scroll-container {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #00000093;
  position: absolute; /* instead of fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  height: auto;
  max-height: 120px;
  width: auto;
  max-width:200px;
}
.logo-icon {
  height: auto;
  max-height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #d4af37;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 100;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -75%;
  width: 75%;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease;
  z-index: 99;
}
.mobile-nav ul {
  list-style: none;
  text-align: right;
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 0.4s forwards;
  animation-delay: calc(var(--i) * 0.15s);
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
  margin: 20px 0;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 30px;
  }
}

/* Hero Background */
.hero {
  height: 100vh;
  background: url('images/galla/38b5663b-58ad-4497-b2d0-f6011f7545e4.jpg') center/cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

/* Hero Overlay */
.hero-overlay {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.315);
  padding: 120px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.hero-content {
  text-align: center;
  margin-bottom: 100px;
  margin-top: 160px;
}
.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.hero-content.visible h1,
.hero-content.visible p {
  opacity: 1;
  transform: translateY(0);
}
.hero-content h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 0px;
  margin-top: -15%;
}
.hero-content p {
  font-size: 1.2rem;
  color: #ffffff;
}


.hero-fade {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000000 100%);
  z-index: 5;
  pointer-events: none;
}





/* Events section */
.events-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000000;
  padding-top: 90px;
  position: relative;
  z-index: 50;
}

/* Header spacer */
.events-header {
  text-align: center;
  padding: 20px 40px 10px;
  margin-top: -40%;
  min-height: 1px;
  position: relative;
  z-index: 50;
}

/* Panels container */
.events-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  padding: 20px 40px 60px;
  height: 80vh;
  margin: 0 auto;
  position: relative;
  z-index: 50;
}

/* Event panels */
.event-panel {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: width 0.4s ease, height 0.4s ease;
  cursor: default;
  overflow: hidden;
  position: relative;
  z-index: 50;
  background-color: #222;
}

/* Staggered sizing */
.event-panel[style*="--index: 1"],
.event-panel[style*="--index: 5"] {
  width: 12%;
  height: 60%;
}
.event-panel[style*="--index: 2"],
.event-panel[style*="--index: 4"] {
  width: 16%;
  height: 75%;
}
.event-panel[style*="--index: 3"] {
  width: 20%;
  height: 85%;
}

/* Background images */
.event-panel[style*="--index: 1"] {
  background-image: url('images/event44.jpeg');
}
.event-panel[style*="--index: 2"] {
  background-image: url('images/event55.jpeg');
}
.event-panel[style*="--index: 3"] {
  background-image: url('images/event66.jpeg');
}
.event-panel[style*="--index: 4"] {
  background-image: url('images/event55.jpeg');
}
.event-panel[style*="--index: 5"] {
  background-image: url('images/event44.jpeg');
}

/* Responsive: scale down but keep layout */
@media (max-width: 768px) {
  .events-container {
    gap: 12px;
    padding: 20px;
    height: 60vh;
  }

  .event-panel[style*="--index: 1"],
  .event-panel[style*="--index: 5"] {
    width: 16%;
    height: 50%;
  }
  .event-panel[style*="--index: 2"],
  .event-panel[style*="--index: 4"] {
    width: 20%;
    height: 60%;
  }
  .event-panel[style*="--index: 3"] {
    width: 24%;
    height: 70%;
  }

  /* Header spacer */
.events-header {
  text-align: center;
  padding: 20px 40px 10px;
  margin-top: -300%;
  min-height: 1px;
  position: relative;
  z-index: 50;
}

/* Panels container */
.events-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  padding: 20px 40px 60px;
  height: 80vh;
  margin-bottom:-80% ;
  margin-top: 80%;
  position: relative;
  z-index: 100;
}

}







.recap-section {
  margin-top: -17%;
  width: 100%;
  min-height: 45vh;
  background-color: #000000;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.recap-header {
  text-align: center;
  margin-bottom: 40px;
  z-index: 1000;
}

.recap-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #ffffff;
}

.gallery-divider {
  width: 80px;
  height: 2px;
  background: #bfa133;
  margin: 14px auto 0;
  border-radius: 2px;
  margin-bottom: 5%;
}

.recap-videos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  z-index: 100;
}

.recap-item {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.recap-item video {
  width: 400%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  pointer-events: none; /* disables interaction */
  z-index: 100;
}

.recap-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #bfa133;
  letter-spacing: 1px;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .recap-videos {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .recap-section {
  margin-top: -75%;
  width: 100%;
  min-height: 45vh;
  background-color: #000000;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

  .recap-item {
    flex: 1 1 100%;
  }

  .recap-item video {
    max-width: 90%;
  }
}

















/* Events section */
.gallery-section {
  width: 100%;
  min-height: 100vh;        /* ensures at least full screen height */
  display: flex;
  flex-direction: column;
  z-index: 3000;
  background: #000000;
  padding-top: 90px;        /* room for back button */
}


/* Heading */
.gallery-header {
  text-align: center;
  padding: 20px 40px 10px;
    z-index: 100;
}

.gallery-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #ffffff;
  z-index: 1000;
}
.gallery-divider {
  width: 80px;
  height: 2px;
  background: #bfa133;
  margin: 14px auto 0;
  border-radius: 2px;
  z-index: 1000;
  margin-bottom: 5%;
}

.gallery {
  column-count: 4;
  column-gap: 1rem;
  z-index: 100;
 
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.gallery-item img {
  transition: transform 0.3s ease;
  will-change: transform;
}


.gallery-item:hover img {
  transform: scale(1.05);
}





@media (max-width: 1024px) {
  .gallery {
    column-count: 3;
  }

  
}
@media (max-width: 768px) {
  .gallery {
    column-count: 2;
  }

    /* Events section */
.gallery-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 50;
  background: #000000;
  padding-top: 70%; /* room for back button */
  z-index: 3000;
}


  /* Heading */
.gallery-header {
  text-align: center;
  padding: 20px 40px 10px;
    margin-top: -70%;
  
    z-index: 100;
}
}


@media (max-width: 480px) {
  .gallery {
    column-count: 2;
  }

}




.tempo-footer {
  background-color: #171717;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px;
  border-top: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Branding */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 1.1rem;
  color: #a88e5c;
  margin-bottom: 15px;
}
.footer-reserve-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bfa133;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.footer-reserve-btn:hover {
  background-color: #d7b94e;
  box-shadow: 0 0 12px rgba(191,161,51,0.4);
}

/* Contact Info */
.footer-contact {
  margin-bottom: 20px;
}
.footer-contact p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a {
  color: #a88e5c;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #ffffff;
}

/* Socials */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-socials a {
  font-size: 16px;
  color: #a88e5c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-socials a:hover {
  color: #ffffff;
}

/* Copyright */
.footer-copy {
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-socials {
    flex-direction: column;
    gap: 15px;
  }
  .footer-reserve-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
  .footer-contact p {
    font-size: 15px;
  }
  .footer-tagline {
    font-size: 1rem;
  }
}

