* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #111;
}





/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  color: #555;
}

/* ================= STACKED COLLECTIONS ================= */
.stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 80px 20px;
}

.outer-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.inner-scroll {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.inner-scroll::-webkit-scrollbar {
  display: none;
}

.inner-item {
  flex: 0 0 75%;
  scroll-snap-align: center;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
}

.inner-item img {
  width: 100%;
  border-radius: 12px;
}

/* ================= CAROUSEL ================= */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.carousel-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-track {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

 

.carousel-slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
}

.carousel-slide img {
  width: 100%;
  border-radius: 16px;
}

/* ================= SECTION ================= */
.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background: #111;
  color: #fff;
}

/* ================= CTA ================= */
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);

  z-index: 1000;
}



.menu-btn {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= BACKDROP ================= */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;

  z-index: 1500;
}

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

/* ================= SIDEBAR ================= */

.sidebar {
  position: fixed;
  top: 0;
  right: -85%;
  width: 75%;
  height: 100vh;

  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(22px);

  box-shadow: -12px 0 40px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding-top: 90px;
  padding-left: 24px;

  transition: right 0.35s ease;
  z-index: 2000;
}
 

.sidebar.active {
  right: 0;
}

.sidebar a {
  text-decoration: none;
  color: #111;
  font-size: 20px;
  margin-bottom: 22px;
  font-weight: 500;
}

.sidebar a:active {
  transform: scale(0.97);
}

/* close button */
.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;

  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* video section */
.video-block {
  margin-bottom: 3rem;
  text-align: center;
}

.video-container {
  width: 70vw;
  max-width: 700px;

  height: 65vh;
  max-height: 650px;

  margin: 1.5rem auto;

  position: relative;
  overflow: hidden;

  border-radius: 12px;
  background: #000;
}

/* key part: forced crop + zoom like your reference */
.video-container iframe,
.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 120%;
  height: 120%;

  transform: translate(-50%, -50%) scale(1.15);

  border: none;
  display: block;
}


 


 


 


 



 
 

 


 

 

 

 
