/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Luxury Color Palette - Gold, Green, Black */
  --color-gold: #d4af37;
  --color-gold-light: #ffd700;
  --color-gold-dark: #b8860b;
  --color-gold-glow: rgba(212, 175, 55, 0.3);

  --color-green: #002f12;
  --color-green-light: #194329;
  --color-green-lighter: #325841;
  --color-green-glow: rgba(0, 47, 18, 0.2);

  --color-black: #000000;
  --color-black-light: #111111;
  --color-black-lighter: #222222;

  --color-white: #ffffff;
  --color-gray: #888888;

  /* Disco Colors */
  --color-disco-1: #ff00ff;
  --color-disco-2: #00ffff;
  --color-disco-3: #ffff00;
  --color-disco-4: #ff0000;
  --color-disco-5: #00ff00;

  /* Typography */
  --font-heading: "Cinzel", serif;
  --font-body: "Montserrat", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Effects */
  --glow-gold: 0 0 20px var(--color-gold-glow), 0 0 40px var(--color-gold-glow);
  --glow-green: 0 0 20px var(--color-green-glow);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-slow: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-black);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, var(--color-green) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--color-gold) 0%, transparent 50%),
    linear-gradient(45deg, var(--color-black) 0%, var(--color-black-light) 100%);
  opacity: 0.6;
  z-index: -2;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s var(--transition-slow);
}

.loading-content {
  text-align: center;
}

.loading-logo {
  margin-bottom: var(--spacing-lg);
}

.crown-loader {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.crown-part {
  width: 40px;
  height: 30px;
  background: linear-gradient(45deg, var(--color-gold-dark), var(--color-gold));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: crownPulse 1.5s infinite;
}

.crown-part:nth-child(2) {
  animation-delay: 0.3s;
}

.crown-part:nth-child(3) {
  animation-delay: 0.6s;
}

.loading-text {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 10px;
  margin-bottom: var(--spacing-sm);
}

.loading-char {
  display: inline-block;
  color: var(--color-gold);
  text-shadow: var(--glow-gold);
  opacity: 0;
  animation: charReveal 0.5s forwards;
}

.loading-char:nth-child(1) {
  animation-delay: 0.1s;
}
.loading-char:nth-child(2) {
  animation-delay: 0.3s;
}
.loading-char:nth-child(3) {
  animation-delay: 0.5s;
}
.loading-char:nth-child(4) {
  animation-delay: 0.7s;
}

.loading-subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray);
  animation: subtitlePulse 2s infinite;
}

/* Lighting Effects */
.lighting-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    var(--color-gold-glow) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(20px);
  animation: spotMove 20s infinite linear;
}

.spotlight-1 {
  top: 20%;
  left: 10%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    transparent 70%
  );
  animation-duration: 25s;
}

.spotlight-2 {
  top: 60%;
  right: 15%;
  background: radial-gradient(circle, rgba(0, 47, 18, 0.2) 0%, transparent 70%);
  animation-duration: 30s;
  animation-delay: 5s;
}

.spotlight-3 {
  bottom: 10%;
  left: 30%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  animation-duration: 35s;
  animation-delay: 10s;
}

.disco-ball {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: discoRotate 20s infinite linear;
}

.disco-ball-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--color-gold),
    var(--color-black)
  );
  box-shadow:
    inset 0 0 50px var(--color-gold),
    0 0 100px var(--color-gold-glow);
}

.mirror {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: mirrorShine 2s infinite alternate;
}

.mirror:nth-child(1) {
  top: 20%;
  left: 20%;
}
.mirror:nth-child(2) {
  top: 60%;
  left: 40%;
  animation-delay: 0.2s;
}
.mirror:nth-child(3) {
  top: 40%;
  right: 20%;
  animation-delay: 0.4s;
}
.mirror:nth-child(4) {
  bottom: 20%;
  left: 30%;
  animation-delay: 0.6s;
}
.mirror:nth-child(5) {
  top: 30%;
  left: 60%;
  animation-delay: 0.8s;
}
.mirror:nth-child(6) {
  bottom: 40%;
  right: 40%;
  animation-delay: 1s;
}

.laser-beam {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-disco-1),
    transparent
  );
  animation: laserScan 4s infinite linear;
  filter: blur(1px);
}

.laser-1 {
  top: 25%;
  left: 0;
  width: 100%;
  animation-delay: 0s;
}

.laser-2 {
  top: 50%;
  left: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-disco-3),
    transparent
  );
  animation-delay: 1s;
}

.laser-3 {
  top: 75%;
  left: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-disco-5),
    transparent
  );
  animation-delay: 2s;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray);
}

.text-gold {
  color: var(--color-gold);
  position: relative;
  display: inline-block;
}

.text-gold::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 1rem 2rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-gold,
.btn-solid-gold {
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.btn-gold:hover,
.btn-solid-gold:hover {
  background-color: transparent;
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-event {
  background-color: var(--color-green);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

.btn-event:hover {
  background-color: var(--color-green-light);
  box-shadow: var(--glow-green);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-sm) 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: var(--spacing-xs) 0;
  background-color: rgba(0, 0, 0, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.logo-small .logo-img {
  height: 40px;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--color-gold-glow));
  transition: var(--transition-normal);
}

.logo-small:hover .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--color-gold));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-normal);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  width: 100%;
  margin-top: var(--spacing-xl);
}

.logo-reveal {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.logo-container {
  position: relative;
  display: inline-block;
}

.main-logo {
  max-width: 600px;
  width: 100%;
  filter: drop-shadow(0 0 20px var(--color-gold-glow));
  animation: logoFloat 3s infinite ease-in-out;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(40px);
  z-index: -1;
}

.hero-subtitle {
  margin-bottom: var(--spacing-lg);
}

.subtitle-line {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: var(--spacing-xs);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-text {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--color-gray);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s infinite;
}

/* Experience Section */
.experience-section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 47, 18, 0.05),
    transparent
  );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.experience-card {
  background-color: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: var(--glow-gold), var(--shadow-heavy);
}

.card-number {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.1);
  font-weight: 900;
}

.card-content h3 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
}

.card-link {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--spacing-sm);
}

.card-link:hover {
  gap: 10px;
}

.card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    var(--color-gold-glow),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.experience-card:hover .card-hover {
  opacity: 0.3;
}

/* Events Section */
.events-section {
  padding: var(--spacing-xl) 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.events-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.event-card {
  background-color: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.event-card.featured {
  border-color: var(--color-gold);
  box-shadow: var(--glow-gold);
}

.event-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.date-day {
  font-size: 0.8rem;
  color: var(--color-gray);
  text-transform: uppercase;
}

.date-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 0.8rem;
  color: var(--color-gray);
  text-transform: uppercase;
}

.event-content h3 {
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
}

.event-dj {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.event-time {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
}

.event-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.event-card:hover .event-glow {
  left: 100%;
}

/* Bottle Service Section */
.bottle-section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.bottle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    var(--color-green) 0%,
    transparent 50%
  );
  opacity: 0.1;
  pointer-events: none;
}

.bottle-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.bottle-text {
  padding-right: var(--spacing-md);
}

.bottle-description {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.bottle-list {
  margin-bottom: var(--spacing-lg);
}

.bottle-item {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.bottle-item:last-child {
  border-bottom: none;
}

.bottle-item h4 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-xs);
}

.bottle-item p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-xs);
}

.bottle-price {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.bottle-visual {
  position: relative;
  height: 500px;
}

.bottle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--color-green) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(40px);
}

.bottle-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 400px;
  background: linear-gradient(
    45deg,
    var(--color-green),
    var(--color-green-light)
  );
  border: 2px solid var(--color-gold);
  box-shadow: var(--glow-green);
}

.liquid-effect {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 70%;
  background: linear-gradient(transparent, var(--color-gold));
  opacity: 0.5;
  animation: liquidMove 3s infinite ease-in-out;
  border-radius: 0 0 20px 20px;
}

/* Membership Section */
.membership-section {
  padding: var(--spacing-xl) 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.membership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.tier-card {
  background-color: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: var(--spacing-lg);
  position: relative;
  transition: var(--transition-normal);
}

.tier-card.featured-tier {
  border-color: var(--color-gold);
  transform: scale(1.05);
  box-shadow: var(--glow-gold);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tier-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tier-header h3 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-white);
  font-weight: 700;
}

.tier-price span {
  font-size: 1rem;
  color: var(--color-gray);
}

.tier-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray);
}

.tier-features i.fa-check {
  color: var(--color-gold);
}

.tier-features i.fa-times {
  color: #666;
}

.btn-tier {
  width: 100%;
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-tier:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-info {
  padding-right: var(--spacing-md);
}

.contact-details {
  margin: var(--spacing-lg) 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.contact-item i {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-item h4 {
  color: var(--color-white);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--color-gray);
  margin: 0;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  transition: var(--transition-normal);
}

.social-link:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-3px);
}

.contact-form {
  background-color: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: var(--spacing-lg);
}

.contact-form h3 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-lg);
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold-glow);
}

textarea {
  resize: vertical;
  min-height: 100px;
  margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background-color: rgba(0, 0, 0, 0.8);
}

.footer-content {
  text-align: center;
}

.footer-logo-img {
  height: 60px;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--color-gold-glow));
  margin-bottom: var(--spacing-lg);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-gray);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-copyright {
  color: var(--color-gray);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Audio Control */
.audio-control {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 100;
}

.audio-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
  box-shadow: var(--glow-gold);
}

.audio-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--color-gold);
}

/* Enter Button */
.enter-button {
  position: fixed;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.btn-enter {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1rem 2rem;
  background-color: var(--color-gold);
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.btn-enter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.btn-enter:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.btn-enter:hover::before {
  left: 100%;
}

/* Animations */
@keyframes crownPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes charReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitlePulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes spotMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, 100px);
  }
  50% {
    transform: translate(-50px, 150px);
  }
  75% {
    transform: translate(-100px, 50px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes discoRotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes mirrorShine {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}

@keyframes laserScan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    height: 60px;
    opacity: 1;
  }
  50% {
    height: 80px;
    opacity: 0.5;
  }
}

@keyframes liquidMove {
  0%,
  100% {
    height: 70%;
  }
  50% {
    height: 75%;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .bottle-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .bottle-text {
    padding-right: 0;
    text-align: center;
  }

  .tier-card.featured-tier {
    transform: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
  }

  .nav-right.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }

  .experience-grid,
  .events-slider,
  .membership-tiers {
    grid-template-columns: 1fr;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .disco-ball {
    width: 100px;
    height: 100px;
    right: 5%;
  }

  .main-logo {
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-section {
    padding-top: 60px;
  }

  .loading-text {
    font-size: 2.5rem;
    letter-spacing: 5px;
  }

  .audio-control {
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
  }

  .enter-button {
    bottom: var(--spacing-sm);
    width: 90%;
  }

  .btn-enter {
    width: 100%;
    justify-content: center;
  }
}

.featured-overlay {
  filter: grayscale(100%) brightness(0.7);
  transition: 0.3s ease;
}

.modern-event-card:hover .featured-overlay {
  filter: grayscale(0%) brightness(1);
}

/* new css */
@media (max-width: 767px) {
  .top-info {
    font-size: 10px;
  }
}

/* =========================================
   HIRING SECTION
========================================= */

.hiring-sec {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #050505;
  overflow: hidden;
}

/* =========================================
   SECTION HEADER
========================================= */

.hiring-sec .gallery-header {
  margin-bottom: 50px;
}

.hiring-sec .gallery-header h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
}

/* =========================================
   HIRING POST
========================================= */

.hiring-post {
  position: relative;
  width: 100%;
  min-height: 680px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(232, 185, 98, 0.45);
}

/* =========================================
   BACKGROUND IMAGE
========================================= */

.hiring-post-bg {
  position: absolute;
  inset: 0;
  z-index: 1;

  background-image: url("./assets/new-images/main-floor.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: transform 0.8s ease;
}

.hiring-post:hover .hiring-post-bg {
  transform: scale(1.04);
}

/* =========================================
   DARK OVERLAY
========================================= */

.hiring-post-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgb(0 0 0 / 74%) 35%,
    rgb(0 0 0) 70%,
    rgba(0, 0, 0, 0.96) 100%
  );
}

/* =========================================
   GOLD CORNERS
========================================= */

.hiring-corner {
  position: absolute;
  z-index: 5;
  width: 14px;
  height: 14px;
  border-color: #d4af37;
  border-style: solid;
}

.hiring-corner-top {
  top: 0;
  left: 0;
  width: 80px;
  height: 14px;
  border-width: 5px 0 0 5px;
}

.hiring-corner-bottom {
  right: 0;
  bottom: 0;
  width: 80px;
  height: 14px;
  border-width: 0 5px 5px 0;
}

/* =========================================
   CONTENT
========================================= */

.hiring-post-content {
  position: relative;
  z-index: 4;

  min-height: 680px;
  padding: 35px 28px 30px;

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

  color: #ffffff;
  text-align: center;
}

/* =========================================
   LOGO
========================================= */

.hiring-logo {
  width: 150px;
  height: 120px;

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

  margin-bottom: 5px;
}

.hiring-logo img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

/* =========================================
   WE'RE
========================================= */

.hiring-script {
  margin-top: -4px;

  color: #ffffff;

  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
  font-style: italic;
  font-weight: 500;
}

/* =========================================
   HIRING TITLE
========================================= */

.hiring-title {
  margin-top: 3px;

  color: #e8b962;

  font-family: "Playfair Display", serif;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 2px;

  background: linear-gradient(to bottom, #fff0b2 0%, #e8b962 45%, #b88324 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* =========================================
   POSITION
========================================= */

.hiring-position {
  margin: 45px 0 8px;

  color: #ffffff;

  font-family: Montserrat, sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

/* =========================================
   DESCRIPTION
========================================= */

.hiring-description {
  max-width: 400px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.92);

  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}
.hiring-extra-description {
  margin-top: 20px;
}

.hiring-join {
  margin-top: 14px;
  color: #e8b962;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.hiring-post,
.hiring-post-content {
  height: 100%;
}

.hiring-post-content {
  min-height: 760px;
}

/* =========================================
   REQUIREMENTS
========================================= */

.hiring-requirements {
  width: 100%;
  max-width: 440px;

  margin-top: 25px;

  text-align: left;
}

.hiring-requirement {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 16px;

  color: #ffffff;

  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.hiring-requirement:last-child {
  margin-bottom: 0;
}

.hiring-content-block {
  width: 100%;
  max-width: 440px;
  margin-top: 22px;
  text-align: left;
}

.hiring-content-title {
  margin: 0 0 14px;
  color: #e8b962;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.hiring-content-block .hiring-requirement {
  margin-bottom: 12px;
  font-size: 12px;
}

.hiring-extra-description {
  margin-top: 22px;
}

.hiring-join {
  margin-top: 14px;
  color: #e8b962;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

/* Gold Circle */

.requirement-icon {
  flex: 0 0 auto;

  width: 20px;
  height: 20px;

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

  margin-top: 2px;

  color: transparent;

  border: 3px solid #d4af37;
  border-radius: 50%;

  font-size: 0;
}

/* =========================================
   APPLY
========================================= */

.hiring-apply {
  margin-top: auto;
  padding-top: 28px;

  color: #ffffff;

  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

/* =========================================
   CONTACT
========================================= */

.hiring-contact {
  width: 100%;

  margin-top: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hiring-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #ffffff;

  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.contact-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;

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

  color: #d4af37;

  font-size: 22px;
}

/* =========================================
   TABLET
   Bootstrap: col-md-6
========================================= */

@media (max-width: 991.98px) {
  .hiring-sec .gallery-header {
    margin-bottom: 40px;
  }

  .hiring-sec .gallery-header h1 {
    font-size: 40px;
  }

  .hiring-post {
    min-height: 650px;
  }

  .hiring-post-content {
    min-height: 650px;
    padding: 30px 25px;
  }

  .hiring-position {
    margin-top: 35px;
    font-size: 27px;
  }

  .hiring-description {
    font-size: 12px;
  }

  .hiring-requirement {
    font-size: 14px;
  }
}

/* =========================================
   MOBILE
   Bootstrap: col-12
========================================= */

@media (max-width: 575.98px) {
  .hiring-sec .gallery-header {
    margin-bottom: 30px;
  }

  .hiring-sec .gallery-header h1 {
    font-size: 32px;
  }

  .hiring-sec .main-subtitle {
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .hiring-post {
    min-height: 650px;
  }

  .hiring-post-content {
    min-height: 650px;
    padding: 30px 22px;
  }

  .hiring-logo {
    width: 130px;
    height: 105px;
  }

  .hiring-logo img {
    max-width: 130px;
    max-height: 105px;
  }

  .hiring-script {
    font-size: 34px;
  }

  .hiring-title {
    font-size: 52px;
  }

  .hiring-position {
    margin-top: 35px;
    font-size: 25px;
  }

  .hiring-description {
    font-size: 12px;
  }

  .hiring-requirements {
    margin-top: 22px;
  }

  .hiring-requirement {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
  }

  .hiring-apply {
    font-size: 17px;
  }

  .hiring-contact-item {
    font-size: 14px;
  }

  .hiring-corner-top,
  .hiring-corner-bottom {
    width: 55px;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .hiring-post-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hiring-title {
    font-size: 46px;
  }

  .hiring-position {
    font-size: 22px;
  }

  .hiring-description {
    font-size: 12px;
  }

  .hiring-requirement {
    font-size: 13px;
  }

  .hiring-contact-item {
    font-size: 13px;
  }
}
/* =========================================
   NIGHT GALLERY
========================================= */

.night-gallery-section {
  width: 100%;
  padding: 80px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h1 {
  margin-bottom: 10px;
}

.main-subtitle {
  letter-spacing: 2px;
}

/* Gallery Column */

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Gallery Item */

.gallery-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Gallery Image */

.gallery-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Image Heights */

.h-tall {
  height: 320px;
}

.h-medium {
  height: 240px;
}

/* Image Hover */

.gallery-img {
  transition: transform 0.4s ease;
}

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

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
  .night-gallery-section {
    padding: 60px 0;
  }

  .h-tall {
    height: 280px;
  }

  .h-medium {
    height: 220px;
  }
}

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

@media (max-width: 767.98px) {
  .night-gallery-section {
    padding: 50px 0;
  }

  .gallery-header {
    margin-bottom: 30px;
  }

  .gallery-header h1 {
    font-size: 30px;
  }

  .gallery-column {
    gap: 12px;
  }

  .row.g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .h-tall,
  .h-medium {
    height: 280px;
  }
}

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

@media (max-width: 575.98px) {
  .night-gallery-section {
    padding: 40px 0;
  }

  .gallery-header h1 {
    font-size: 26px;
  }

  .main-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  /* Stack center images on small screens */
  .col-6 {
    width: 100%;
  }

  .h-tall,
  .h-medium {
    height: 300px;
  }
}
/* ========================================================= TZAR NIGHT GALLERY All classes are uniquely prefixed to avoid conflicts ========================================================= */
.tzar-gallery-section {
  position: relative;
  width: 100%;
  padding: 110px 0 120px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(233, 216, 199, 0.07),
      transparent 38%
    ),
    #050505;
  overflow: hidden;
}
.tzar-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(233, 216, 199, 0.08),
    transparent
  );
  pointer-events: none;
} /* ========================================================= CONTAINER ========================================================= */
.tzar-gallery-container {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 60px));
  margin: 0 auto;
} /* ========================================================= HEADER ========================================================= */
.tzar-gallery-header {
  text-align: center;
  margin-bottom: 55px;
}
.tzar-gallery-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #e9d8c7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.tzar-gallery-title {
  margin: 0;
  color: var(--gold);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-family: var(--font-heading);
}
.tzar-gallery-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.tzar-gallery-line {
  width: 70px;
  height: 1px;
  margin: 25px auto 18px;
  background: #e9d8c7;
}
.tzar-gallery-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 3px;
} /* ========================================================= MAIN GALLERY GRID ========================================================= */
.tzar-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.55fr) minmax(0, 0.72fr);
  gap: 14px;
  align-items: stretch;
} /* ========================================================= COLUMNS ========================================================= */
.tzar-gallery-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tzar-gallery-half-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
} /* ========================================================= GALLERY ITEM ========================================================= */
.tzar-gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(233, 216, 199, 0.12);
}
.tzar-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 30%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.tzar-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: scale(1.001);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1),
    filter 0.5s ease;
  background: #050505;
} /* ========================================================= FEATURE IMAGE ========================================================= */
.tzar-gallery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(233, 216, 199, 0.2);
  pointer-events: none;
}
.tzar-gallery-feature-content {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 4;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
}
.tzar-gallery-feature-content::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: #e9d8c7;
} /* ========================================================= NUMBER OVERLAY ========================================================= */
.tzar-gallery-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
} /* ========================================================= HOVER ========================================================= */
.tzar-gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.75);
}
.tzar-gallery-item:hover::before {
  opacity: 0.8;
}
.tzar-gallery-item:hover .tzar-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
} /* ========================================================= TABLET ========================================================= */
@media (max-width: 1100px) {
  .tzar-gallery-container {
    width: min(100% - 40px, 1000px);
  }
  .tzar-gallery-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) minmax(0, 0.8fr);
  }
  .tzar-gallery-tall {
    height: 360px;
  }
  .tzar-gallery-medium {
    height: 175px;
  }
  .tzar-gallery-feature {
    height: 365px;
  }
} /* ========================================================= TABLET / SMALL LAPTOP ========================================================= */
@media (max-width: 850px) {
  .tzar-gallery-section {
    padding: 85px 0 90px;
  }
  .tzar-gallery-container {
    width: min(100% - 35px, 700px);
  }
  .tzar-gallery-header {
    margin-bottom: 40px;
  }
  .tzar-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tzar-gallery-left {
    order: 1;
  }
  .tzar-gallery-center {
    order: 2;
    grid-column: 1 / -1;
  }
  .tzar-gallery-right {
    order: 3;
  }
  .tzar-gallery-tall {
    height: 390px;
  }
  .tzar-gallery-medium {
    height: 220px;
  }
  .tzar-gallery-feature {
    height: 430px;
  }
} /* ========================================================= MOBILE ========================================================= */
@media (max-width: 600px) {
  .tzar-gallery-section {
    padding: 65px 0 70px;
  }

  .tzar-gallery-container {
    width: calc(100% - 24px);
  }

  .tzar-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tzar-gallery-col {
    gap: 10px;
  }

  .tzar-gallery-half-row {
    gap: 10px;
  }

  /* IMPORTANT:
       Remove fixed heights on mobile */
  .tzar-gallery-tall,
  .tzar-gallery-medium,
  .tzar-gallery-feature {
    height: auto !important;
    min-height: 0 !important;
  }

  /* Show complete image */
  .tzar-gallery-item img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    object-position: center;
  }

  .tzar-gallery-item {
    height: auto !important;
    min-height: 0 !important;
  }

  .tzar-gallery-overlay {
    opacity: 1;
    transform: none;

    width: 28px;
    height: 28px;

    top: 10px;
    right: 10px;

    font-size: 9px;
  }

  .tzar-gallery-feature-content {
    left: 18px;
    bottom: 18px;

    font-size: 8px;
    letter-spacing: 2px;
  }
} /* ========================================================= VERY SMALL MOBILE ========================================================= */
@media (max-width: 380px) {
  .tzar-gallery-title {
    font-size: 36px;
  }

  .tzar-gallery-tall,
  .tzar-gallery-medium,
  .tzar-gallery-feature {
    height: auto !important;
  }

  .tzar-gallery-item img {
    height: auto !important;
    object-fit: contain !important;
  }
}
