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

html {
  scroll-behavior: smooth;
}

body {
  background: #c97a0c;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  width: 100%;
  padding: 22px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 154, 3, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 62px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.04);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #d2850a;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #d2850a;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffa600;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.10);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #d4af37;
  color: #0b0b0b;
  transform: translateY(-2px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 0 auto;
  transition: 0.3s ease;
  border-radius: 99px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  background: rgba(165, 86, 0, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  padding: 18px 20px 24px;
  gap: 14px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9998;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(210, 129, 22, 0.331);
}

/* PAGE */
.previous-events-page {
  width: 100%;
  padding-top: 110px;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 25%),
    #703c01;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #4a2e00;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* PAGE */
.previous-events-page {
  width: 100%;
  background:
    linear-gradient(
      135deg,
      #fdfaf6 0%,
      #f5e6c8 50%,
      #e8d3a5 100%
    );
}

/* STACK AREA */
.stack-area {
  width: 100%;
  min-height: 320vh;
  position: relative;
  display: flex;
}

/* LEFT */
.left {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 7vw;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title {
  max-width: 540px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.95;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.sub-title {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
}

.luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 180px;
  padding: 14px 28px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.luxury-btn:hover {
  background: #d4af37;
  color: #0b0b0b;
  transform: translateY(-2px);
}

/* RIGHT */
.right {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.card {
  width: 420px;
  height: 440px;
  position: absolute;
  top: calc(50% - 220px);
  left: calc(50% - 210px);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: #111;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay on photo */
.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.30) 45%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.card-tag {
  display: inline-block;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card-bottom h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.card-bottom p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 320px;
}

.card:hover {
  transform: scale(1.02);
}
/* MOBILE */
@media (max-width: 768px) {
  .left {
    padding: 90px 20px 30px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .title {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 0.95;
  }

  .sub-title {
    font-size: 14px;
    line-height: 1.8;
  }

  .luxury-btn {
    padding: 13px 22px;
    font-size: 13px;
  }

  .right {
    min-height: 620px;
  }

  .card {
    width: min(90vw, 360px);
    height: 380px;
    padding: 22px;
  }

  .card-bottom h3 {
    font-size: 1.8rem;
  }

  .card-bottom p {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .card {
    width: min(86vw, 420px);
    height: 420px;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .card {
    width: min(90vw, 360px);
    height: 380px;
  }

  .card-overlay {
    padding: 22px;
  }

  .card-bottom h3 {
    font-size: 1.8rem;
  }

  .card-bottom p {
    font-size: 14px;
  }
}
/* =============================================
   NAVBAR FIXED - DESKTOP + LAPTOP + MOBILE
============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 1000;

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

  padding: 0 28px;
  background: rgba(167, 78, 0, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.176);
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img,
.logo-img {
  width: 95px;
  height: auto;
  display: block;
  padding-left: 0;
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 166, 35, 0.85);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #F5A623;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #F5A623;
}

.nav-links a:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.lang-btn {
  min-width: 38px;
  height: 30px;
  padding: 0 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.lang-btn.active {
  background: #F5A623;
  color: #0A0A0A;
}

/* THEME TOGGLE */
.theme-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-2px);
}

/* CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #F5A623;
  color: #0A0A0A;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #F7B94A;
  transform: translateY(-2px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 24px 20px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  gap: 18px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:hover {
  color: #F5A623;
}

/* PAGE SPACE UNDER FIXED NAV */
.previous-events-page {
  padding-top: 110px;
}

/* =========================
   LARGE LAPTOP / SMALL DESKTOP
========================= */
@media (max-width: 1280px) {
  .nav {
    padding: 0 20px;
  }

  .nav-logo img,
  .logo-img {
    width: 82px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .lang-switcher {
    display: none;
  }

  .nav-cta {
    padding: 0 14px;
    font-size: 0.78rem;
  }
}

/* =========================
   TABLET / LAPTOP
========================= */
@media (max-width: 1024px) {
  .nav {
    padding: 0 18px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .theme-toggle {
    display: none;
  }

  .nav-cta {
    height: 40px;
    padding: 0 12px;
    font-size: 0.75rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img,
  .logo-img {
    width: 88px;
  }

  .previous-events-page {
    padding-top: 96px;
  }
}
/* =============================================
   VIDEO SECTION
============================================= */
.previous-video-section {
  width: 100%;
  padding: 100px 7vw;
  background:
    linear-gradient(
      135deg,
      #fdfaf6 0%,
      #f5e6c8 50%,
      #e8d3a5 100%
    );
}

.previous-video-container {
  max-width: 1300px;
  margin: 0 auto;
}

.previous-video-text {
  max-width: 700px;
  margin-bottom: 32px;
}

.video-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95; 
  color: #fff;
  margin-bottom: 18px;
}

.video-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.previous-video-box {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.previous-video {
  width: 100%;
  display: block;
  max-height: 720px;
  background:
    linear-gradient(
      135deg,
      #fa9f29 0%,
      #000000 50%,
      #000000 100%
    );
}

/* MOBILE */
@media (max-width: 768px) {
  .previous-video-section {
    padding: 80px 20px;
  }

  .video-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .video-subtitle {
    font-size: 14px;
  }

  .previous-video-box {
    border-radius: 20px;
  }
}
/* =============================================
   RESET
============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =============================================
   BASE
============================================= */
body {
  background: #381b00;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  background: rgba(67, 38, 0, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LINKS */
.nav-links a {
  color: rgba(255,255,255,0.7);
}

.nav-links a:hover {
  color: #F5A623;
}

.nav-links a::after {
  background: #F5A623;
}

/* CTA */
.nav-cta {
  color: #0A0A0A;
  background: #F5A623;
  border: none;
}

.nav-cta:hover {
  background: #F7B94A;
  color: #0A0A0A;
}

/* MOBILE MENU */
.mobile-menu {
  background: rgba(10,10,10,0.97);
}

/* =============================================
   PAGE
============================================= */
.previous-events-page {
  background: #0A0A0A;
}

/* =============================================
   LEFT SIDE
============================================= */
.section-label {
  color: #F5A623;
}

.title {
  color: #FFFFFF;
}

.sub-title {
  color: #888888;
}

/* BUTTON */
.luxury-btn {
  border: 1px solid rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.08);
  color: #FFFFFF;
}

.luxury-btn:hover {
  background: #F5A623;
  color: #0A0A0A;
}

/* =============================================
   RIGHT SIDE / CARDS
============================================= */
.card {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.card-overlay {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.787) 0%,
      rgba(0,0,0,0.4) 45%,
      rgba(0,0,0,0.1) 100%
    );
}

.card-tag {
  background: rgba(245,166,35,0.15);
  color: #F5A623;
  border: 1px solid rgba(245,166,35,0.25);
}

.card-bottom h3 {
  color: #FFFFFF;
}

.card-bottom p {
  color: rgba(255,255,255,0.8);
}

/* =============================================
   VIDEO SECTION
============================================= */
.previous-video-section {
  background: #4a2f01;
}

.video-title {
  color: #FFFFFF;
}

.video-subtitle {
  color: #888888;
}

.previous-video-box {
  background: #381e02;
  border: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   HAMBURGER
============================================= */
.hamburger span {
  background: #FFFFFF;
}

/* =============================================
   MOBILE MENU LINKS
============================================= */
.mobile-menu a {
  color: rgba(255,255,255,0.85);
}

.mobile-menu a:hover {
  color: #F5A623;
}

/* =============================================
   RESPONSIVE (UNCHANGED)
============================================= */
@media (max-width: 768px) {
  .title {
    color: #FFFFFF;
  }

  .sub-title {
    color: #888888;
  }
}
body {
  background: #472a00;  }
