/* /* ========================================
   AmarVandana Palace — Premium CSS
   White + Gold + Black Luxury Palette
======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #a07840;
  --black: #0a0806;
  --dark: #12100e;
  --dark2: #1e1a16;
  --dark3: #2c2720;
  --white: #f5f9fa;
  --off-white: #f0ebe3;
  --text: #3a3228;
  --text-light: #7a6e62;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(201, 169, 110, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.25);
  --radius: 2px;
  --radius-lg: 8px;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Jost', sans-serif;
  --nav-h: 80px;
  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: var(--font-ui);
}

/* ===== UTILITY ===== */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section-pad {
  padding: 100px 0;
}

.center {
  text-align: center;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 12px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
  transform: translateY(-2px);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  background: rgba(201, 169, 110, 0.12);
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, #1db954, #25d366);
  color: #fff;
  border-color: #25d366;
}

.btn-wa:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-xl {
  padding: 18px 44px;
  font-size: 0.9rem;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(201, 169, 110, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 1;
  }

  100% {
    height: 50px;
    opacity: 0;
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.3), 0 6px 30px rgba(0, 0, 0, 0.5);
  }

  50% {
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.6), 0 6px 30px rgba(0, 0, 0, 0.5);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-up.visible {
  animation: fadeUp 0.9s var(--transition) forwards;
}

.reveal-up:nth-child(1) {
  animation-delay: 0.1s;
}

.reveal-up:nth-child(2) {
  animation-delay: 0.25s;
}

.reveal-up:nth-child(3) {
  animation-delay: 0.4s;
}

.reveal-up:nth-child(4) {
  animation-delay: 0.55s;
}

.reveal-up:nth-child(5) {
  animation-delay: 0.7s;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  height: 68px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1300px, 95%);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
  transition: all 0.4s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.19;
}

.logo-top {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: all 0.4s ease;
}

.logo-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.navbar.scrolled .nav-logo-img {
  height: 46px;
}

.navbar.scrolled .logo-top {
  font-size: 1.1rem;
}

.navbar.scrolled .logo-sub {
  font-size: 0.58rem;
}

@media (max-width: 900px) {
  .nav-logo-img {
    height: 46px;
  }

  .logo-top {
    font-size: 1.1rem;
  }

  .logo-sub {
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    gap: 8px;
  }

  .nav-logo-img {
    height: 42px;
  }

  .logo-top {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }

  .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.25em;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 245, 0.8);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

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

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  padding: 9px 22px;
  font-weight: 500;
  border-radius: var(--radius);
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s ease;
  transform-origin: center;
}

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

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

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

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

.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: var(--black);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(10, 8, 6, 0.3) 0%,
      rgba(10, 8, 6, 0.55) 40%,
      rgba(10, 8, 6, 0.75) 80%,
      rgba(10, 8, 6, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(250, 248, 245, 0.75);
  margin-bottom: 44px;
  letter-spacing: 0.04em;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.55);
  letter-spacing: 0.05em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 0;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}



/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding: 0 40px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
}

/* ===== ABOUT ===== */
.about {
  background: var(--dark2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--dark2);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-accent:hover img {
  transform: scale(1.06);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  line-height: 1.4;
  margin-top: 4px;
}

.about-text {
  padding: 20px 0;
}

.about-desc {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.about-featured-video {
  margin-bottom: 32px;
}

.about-featured-video video {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-featured-video p {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 0.96rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stat {
  flex: 1;
}

.stat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-l {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
}

/* ===== WEDDINGS ===== */
.weddings {
  background: var(--dark);
}

.weddings-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.wedding-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.wedding-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.wedding-card:hover img {
  transform: scale(1.07);
}

.wedding-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.92) 0%, rgba(10, 8, 6, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
}

.wedding-card:hover .wedding-overlay {
  background: linear-gradient(to top, rgba(10, 8, 6, 0.98) 0%, rgba(10, 8, 6, 0.3) 70%);
}

.wedding-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}

.wedding-overlay p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.weddings-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.wedding-photo,
.wedding-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: var(--dark3);
}

.wedding-photo img,
.wedding-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-photo-label,
.wedding-photo-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(10, 8, 6, 0.7);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-tall {
  grid-row: span 2;
}

.card-wide {
  grid-column: span 2;
}

.weddings-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 30px;
}

.weddings-row+.weddings-row {
  margin-top: 46px;
}

.wedding-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-item img,
.wedding-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wedding-item video {
  min-height: 260px;
}

@media (max-width: 1120px) {
  .weddings-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .weddings-row {
    grid-template-columns: 1fr;
  }

  .wedding-item {
    min-height: 260px;
  }
}

/* ===== VENUE ===== */
.venue {
  position: relative;
  overflow: hidden;
}

.venue-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.venue-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.82);
}

.venue-content {
  position: relative;
  z-index: 2;
}

.venue-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.venue-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.venue-card:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.venue-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.venue-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.venue-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.venue-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.venue-image,
.venue-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  aspect-ratio: 16 / 7;
  background: var(--dark3);
}

.venue-image img,
.venue-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-highlight-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10, 8, 6, 0.75);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--dark2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 32px;
  /* Increased spacing for a high-end spacious feel */
  margin-top: 18px;
}

.g-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  /* Luxurious gold-tinted glass border */
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.g-item:hover {
  border-color: var(--gold);
  /* Highlight border color on hover */
  transform: translateY(-6px);
  /* Elegant floating transition */
  box-shadow: var(--shadow-gold);
  /* Dynamic glowing shadow */
}

.g-item img,
.g-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.6s var(--transition);
  /* Smooth scale-up zoom transition */
}



.g-item.hidden {
  display: none;
}

.gallery-grid.show-all .g-item.hidden {
  display: block;
}

.gallery-show-more {
  display: inline-flex;
  margin: 32px auto 0;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
}

.gallery-show-more:hover {
  transform: translateY(-1px);
}

.gallery-video-card,
.gallery-video-label {
  display: none !important;
}

.g-hover {
  display: none !important;
}

.g-item:hover img {
  transform: scale(1.03);
}

.g-tall {
  grid-row: span 2;
}

.g-wide {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

#lbImg {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox.open #lbImg {
  transform: scale(1);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(201, 169, 110, 0.15);
  color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lb-close {
  top: 24px;
  right: 24px;
  font-size: 1rem;
}

.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== ROOMS ===== */
.rooms {
  background: var(--dark);
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.room-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark2);
  transition: all var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--glass-border);
}

.room-featured {
  border-color: var(--gold-dark);
}

.room-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.06);
}

.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 8, 6, 0.85);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
}

.badge-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.room-body {
  padding: 32px;
}

.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.room-body p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}

.room-features li {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}

.tax {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-light);
}

.rooms-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.rooms-photo,
.rooms-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
  background: var(--dark3);
}

.rooms-photo img,
.rooms-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms-media-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10, 8, 6, 0.8);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* ===== AMENITIES ===== */
.amenities {
  background: var(--dark2);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.amenity-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  background: rgba(201, 169, 110, 0.06);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FOOD ===== */
.food {
  background: var(--dark);
}

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.food-images {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.food-images video,
.food-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-images video {
  position: absolute;
  inset: 0;
}

.food-images img {
  position: relative;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.food-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  font-family: var(--font-ui);
  font-size: 0.8rem;
}

.food-badge span {
  font-size: 2rem;
  display: block;
  margin-bottom: 4px;
}

.food-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.food-tags span {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--dark2);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 280px;
}

.tslide {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.tslide.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}

.tcard {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
}

.tquote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.5;
}

.tcard p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
}

.tauthor {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tavatar {
  font-size: 2.5rem;
}

.tauthor strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.tauthor span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 2px;
  display: block;
}

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.t-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ===== TIMELINE ===== */
.timeline {
  background: var(--dark);
}

.timeline-track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
  z-index: 1;
  justify-self: center;
  animation: pulse 3s infinite;
}

.tl-card {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  grid-column: 3;
}

.tl-right .tl-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.tl-right .tl-dot {
  grid-column: 2;
}

.tl-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.tl-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== LOCATION ===== */
.location {
  background: var(--dark2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

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

.loc-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: border-color 0.3s ease;
}

.loc-card:hover {
  border-color: var(--glass-border);
}

.loc-card span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.loc-card strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.loc-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.loc-card a {
  color: var(--white);
  transition: color 0.3s;
}

.loc-card a:hover {
  color: var(--gold);
}

.map-container {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

/* ===== BOOKING ===== */
.booking {
  position: relative;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.88);
}

.booking-content {
  position: relative;
  z-index: 2;
}

.glass-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 52px;
  max-width: 820px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--dark2);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 20px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
  transition: all 0.4s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--gold);
}

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

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--text-light);
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--white);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.fab {
  position: fixed;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.35s ease;
  text-decoration: none;
}

.fab-wa {
  bottom: 100px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: glow 2.5s ease infinite;
}

.fab-call {
  bottom: 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
}

.fab:hover {
  transform: scale(1.12) translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-grid {
    gap: 50px;
  }

  .weddings-highlight,
  .venue-highlights,
  .rooms-media {
    grid-template-columns: 1fr 1fr;
  }

  .venue-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 68px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  /* Mobile Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 8, 6, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 36px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-links .nav-cta {
    margin: 10px 0 0;
    text-align: center;
    justify-content: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    height: 360px;
  }

  .about-badge {
    left: 10px;
  }

  .venue-image,
  .venue-video {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  /* Weddings masonry */
  .weddings-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .card-tall {
    grid-row: span 1;
  }

  .card-wide {
    grid-column: span 2;
  }

  /* Rooms */
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  /* Food */
  .food-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .food-images {
    height: 340px;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }

  /* Booking form */
  .glass-form {
    padding: 36px 28px;
  }

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

  .form-actions {
    flex-direction: column;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .g-tall {
    grid-row: span 2;
  }

  .g-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-meta {
    font-size: 0.72rem;
    gap: 12px;
  }

  .hero-dots {
    bottom: 16px;
    right: 16px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .about-images {
    height: 260px;
  }

  .venue-image,
  .venue-video {
    min-height: 200px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .weddings-masonry {
    grid-template-columns: 1fr;
  }

  .card-wide {
    grid-column: span 1;
  }

  .card-tall {
    grid-row: span 1;
  }

  .venue-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-show-more {
    width: 100%;
    justify-content: center;
  }

  .g-wide {
    grid-column: span 1;
  }

  .g-tall {
    grid-row: span 1;
  }

  .weddings-highlight,
  .venue-highlights,
  .rooms-media {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-video-card video {
    height: 240px;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-track::before {
    left: 30px;
  }

  .tl-item {
    grid-template-columns: 60px 1fr;
  }

  .tl-dot {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .tl-card {
    grid-column: 2;
    grid-row: 1;
    text-align: left !important;
  }

  .tl-right .tl-card {
    grid-column: 2;
    grid-row: 1;
  }

  .tl-right .tl-dot {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav:last-of-type {
    display: none;
  }

  .glass-form {
    padding: 28px 20px;
  }

  .tcard {
    padding: 32px 24px;
  }

  .fab {
    width: 50px;
    height: 50px;
    right: 16px;
  }

  .fab-wa {
    bottom: 84px;
  }

  .fab-call {
    bottom: 24px;
  }
}

/* Dark scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===== EXPERIENCE THE MAGIC VIDEO SECTION ===== */
.video-section {
  background: var(--dark);
}

.video-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-card {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .video-card {
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .video-card {
    padding: 6px;
  }
}

/* ===== PRELOADER STYLE ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-logo-img {
  height: 120px;
  width: auto;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 35px rgba(201, 169, 110, 0.45);
  animation: logoPulse 2s ease-in-out infinite;
}

.preloader-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.preloader-logo-av {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.preloader-logo-sub {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .preloader-logo-img {
    height: 90px;
  }

  .preloader-logo-av {
    font-size: 1.8rem;
  }

  .preloader-logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
  }
}

.preloader-spinner {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-spinner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderBar 1.5s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes preloaderBar {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

/* ===== GALLERY SEPARATOR LINE ===== */
.separator-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 32px auto 48px;
  max-width: 400px;
}

.separator-line::before,
.separator-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
} */
