/* ===============================================
   THE WANN - LUXURY NIGHTLIFE BOOKING
   Home Page Stylesheet
   =============================================== */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #000000;
  --color-secondary: #1a1a1a;
  --color-accent: #d4af37;
  --color-text: #ffffff;
  --color-text-muted: #cccccc;
  --color-border: #333333;
  
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  transition: var(--transition-smooth);
}

.site-header:hover {
  background: rgba(0, 0, 0, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Brand Logo */
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  transition: var(--transition-smooth);
}

.brand:hover {
  transform: translateY(-2px);
}

.brand-the {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  font-weight: 300;
}

.brand-wann {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Header Logo */
.header-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(1.1);
  transition: var(--transition-smooth);
}

.header-logo:hover {
  filter: brightness(1.3) drop-shadow(0 0 10px var(--color-accent));
  transform: scale(1.05);
}

/* Navigation */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 35px;
  justify-content: flex-end;
  align-items: center;
}

.nav-list a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: var(--color-accent);
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.hero-content p {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 40px;
  color: var(--color-text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.hero-cta:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.hero-cta.secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-accent);
  box-shadow: none;
}

.hero-cta.secondary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* ===== INFO BAR ===== */
.hero-info-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--color-secondary);
  padding: 30px 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 30px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.info-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
}

.info-value {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 500;
}

/* ===== HERO EXTRAS ===== */
.hero-extras {
  background: var(--color-primary);
  padding: 60px 20px;
  text-align: center;
}

.hero-usp {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Preview Carousel */
.hero-preview {
  width: 100%;
  overflow: hidden;
  margin: 50px 0;
  position: relative;
}

.preview-track {
  display: flex;
  gap: 20px;
  animation: scrollCarousel 40s linear infinite;
}

.preview-track video {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  filter: brightness(0.9);
  transition: var(--transition-smooth);
}

.preview-track video:hover {
  filter: brightness(1);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-350px * 4 - 80px));
  }
}

.hero-quote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 80px 20px;
  background: var(--color-secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  text-align: center;
  margin-bottom: 60px;
  color: var(--color-text);
}

.section-title span {
  color: var(--color-accent);
}

.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--color-secondary);
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: var(--color-secondary);
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

.gallery-scroll img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: var(--transition-smooth);
  filter: brightness(0.85);
}

.gallery-scroll img:hover {
  filter: brightness(1);
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--color-primary);
  max-width: 900px;
  margin: 0 auto;
}

.experience-section h2 {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 30px;
  font-weight: 700;
}

.experience-section .headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--color-text);
}

.experience-section > p:not(.headline) {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.experience-tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.experience-tags span {
  padding: 12px 30px;
  border: 1px solid var(--color-accent);
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: var(--transition-smooth);
}

.experience-tags span:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-secondary);
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--color-border);
  margin-bottom: 70px;
}

.footer p {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

/* ===== BOTTOM BAR ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  padding: 12px 10px;
}

.bottom-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 11px;
  transition: var(--transition-smooth);
  padding: 8px 12px;
  border-radius: 8px;
}

.bottom-bar a:hover {
  color: var(--color-accent);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
  
  .nav-list a {
    font-size: 13px;
  }
  
  .preview-track video {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-nav {
    width: 100%;
    order: 3;
  }
  
  .nav-list {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .nav-list a {
    font-size: 12px;
  }
  
  .hero-content h1 {
    font-size: 48px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-info-bar {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 15px;
  }
  
  .preview-track video {
    width: 250px;
    height: 350px;
  }
  
  .gallery-scroll img {
    width: 300px;
    height: 400px;
  }
  
  .experience-tags {
    flex-direction: column;
    align-items: center;
  }
  
  .experience-tags span {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .brand-wann {
    font-size: 24px;
  }
  
  .header-logo {
    width: 48px;
    height: 48px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .preview-track video {
    width: 200px;
    height: 300px;
  }
  
  .gallery-scroll img {
    width: 250px;
    height: 350px;
  }
  
  .bottom-bar {
    padding: 10px 5px;
  }
  
  .bottom-bar a {
    font-size: 10px;
    padding: 6px 8px;
  }
}


/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* Nav desktop */
.main-nav .nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
  }

  .nav-list a {
    font-size: 16px;
  }
}
/* ===== LUXURY MOBILE MENU ===== */
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    gap: 28px;
  }

  .nav-list a {
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
  }

  .nav-list a:hover::after {
    width: 60%;
  }
}
.menu-toggle {
  position: relative;
  width: 30px;
  height: 22px;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-text);
  transition: 0.4s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
.nav-list {
  position: relative;
  padding: 50px 30px;
}

.nav-list::before,
.nav-list::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,175,55,.6);
}

.nav-list::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.nav-list::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.header-inner {
  display: flex;
  align-items: center;
}

/* Gom brand + logo thành 1 cụm bên trái */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Đưa logo đứng ngay sau chữ */
.header-logo {
  order: 2;
  margin-left: 8px;
}

/* Đảm bảo chữ đứng trước logo */
.brand {
  order: 1;
}
/* =========================
   PROMOTION SECTION – THE WANN
   ========================= */

.promotion-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at top, #1a1a1a 0%, #000 60%);
  color: #f5f5f5;
}

.promotion-header {
  text-align: center;
  margin-bottom: 48px;
}

.promotion-header h2 {
  font-size: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #caa86a, #f5e6b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promotion-header p {
  font-size: 16px;
  color: #b5b5b5;
}

/* Grid */
.promotion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Card */
.promotion-card {
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Card with image */
.promotion-card.with-image {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 24px;
  align-items: center;
}

.promotion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Badge */
.promotion-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: #f5f5f5;
  margin-bottom: 12px;
}

.promotion-badge.gold {
  background: linear-gradient(90deg, #caa86a, #f5e6b3);
  color: #000;
  font-weight: 600;
}

/* Content */
.promotion-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.promotion-discount {
  font-size: 18px;
  margin-bottom: 16px;
  color: #f5e6b3;
}

/* List */
.promotion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.promotion-list li {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.promotion-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #caa86a;
}

/* Note */
.promotion-note {
  font-size: 13px;
  color: #a5a5a5;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

/* Highlight card */
.promotion-card.highlight {
  background: linear-gradient(180deg, #15120a 0%, #0b0b0b 100%);
  border: 1px solid rgba(202,168,106,0.35);
}

/* Warning */
.promotion-warning {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
}

.promotion-warning p {
  margin: 6px 0;
}

/* CTA */
.promotion-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-booking {
  display: inline-block;
  padding: 16px 36px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 40px;
  background: linear-gradient(90deg, #caa86a, #f5e6b3);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(202,168,106,0.5);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
  .promotion-grid {
    grid-template-columns: 1fr;
  }

  .promotion-card.with-image {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .promotion-header h2 {
    font-size: 28px;
  }

  .promotion-card {
    padding: 22px;
  }
}
.vip-booking{
  position:relative;
  padding:90px 20px;
  background:url('/images/bar-bg.jpg') center/cover no-repeat;
}

.vip-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
}

.vip-inner{
  position:relative;
  max-width:720px;
  margin:auto;
  border:1px solid rgba(212,175,55,.5);
  padding:50px 40px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
}

.vip-inner h2{
  text-align:center;
  color:#d4af37;
  letter-spacing:3px;
  margin-bottom:10px;
}

.vip-inner p{
  text-align:center;
  opacity:.75;
  margin-bottom:35px;
}

.field{
  margin-bottom:22px;
}

.field label{
  display:block;
  font-size:13px;
  letter-spacing:1px;
  color:#d4af37;
  margin-bottom:8px;
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:16px;
  background:transparent;
  border:1px solid rgba(212,175,55,.45);
  color:#fff;
  font-size:15px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:#f1d27a;
  box-shadow:0 0 0 1px rgba(212,175,55,.4);
}

.vip-btn{
  width:100%;
  margin-top:20px;
  padding:18px;
  font-size:18px;
  letter-spacing:2px;
  font-weight:700;
  border:none;
  cursor:pointer;
  background:linear-gradient(90deg,#cfae3c,#f5d77a);
  color:#111;
}

.vip-btn:hover{
  filter:brightness(1.1);
}

@media(max-width:640px){
  .vip-inner{padding:35px 22px;}
}
