/* 
 * RV Entertainment Group - Core Stylesheet
 * Ultra-Premium, Luxurious, Modern Cultural-Event Brand Style
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN VARIABLES
   ========================================================================== */
:root {
  /* ── CREAM BACKGROUNDS ── */
  --bg-primary: #FDF5E8;       /* Warm Ivory Cream */
  --bg-secondary: #F5E6CC;     /* Deeper Cream */
  --bg-tertiary: #EDD9B8;      /* Toasted Cream */
  --bg-light-sand: #E8CEAB;    /* Sandy Cream */
  --bg-accent-opaque: rgba(253, 245, 232, 0.92);

  /* ── MAROON PALETTE (Primary Accent) ── */
  --color-maroon: #8B1A2A;        /* Royal Maroon — the star */
  --color-maroon-light: #A8243A;  /* Lighter Maroon */
  --color-maroon-dark: #6B1220;   /* Deep Maroon */
  --color-maroon-muted: #C1546A;  /* Soft rose-maroon */
  --color-crimson: #8B1A2A;

  /* ── GOLD PALETTE (Secondary Trim Accent) ── */
  --color-gold-light: #E6C068;
  --color-gold: #D4AF37;
  --color-gold-dark: #C49A2D;
  --color-gold-deep: #A67E1E;
  --color-amber: #C46A4A;
  --color-terracotta: #C46A4A;

  /* ── TEXT COLOURS ── */
  --text-primary: #2A0E14;     /* Dark Maroon-Black */
  --text-secondary: #5C2A35;   /* Deep Maroon-Brown */
  --text-muted: #9C6B78;       /* Muted Rose */

  /* ── FONTS ── */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* ── GRADIENTS ── */
  --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  --gradient-gold-hover: linear-gradient(135deg, #FDF5E8 0%, var(--color-gold-light) 30%, var(--color-gold) 70%, var(--color-gold-dark) 100%);
  --gradient-maroon: linear-gradient(135deg, var(--color-maroon-light) 0%, var(--color-maroon) 55%, var(--color-maroon-dark) 100%);
  --gradient-maroon-hover: linear-gradient(135deg, var(--color-maroon-muted) 0%, var(--color-maroon-light) 40%, var(--color-maroon) 100%);
  --gradient-dark: linear-gradient(180deg, rgba(237, 217, 184, 0.4) 0%, rgba(253, 245, 232, 0.95) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.80) 0%, rgba(245, 230, 204, 0.90) 100%);
  --gradient-royal: linear-gradient(135deg, rgba(139, 26, 42, 0.07) 0%, rgba(253, 245, 232, 0) 100%);
  --gradient-cream-maroon: linear-gradient(135deg, var(--bg-primary) 0%, rgba(139, 26, 42, 0.06) 100%);

  /* ── HERO OVERLAYS (Neutral for better image visibility) ── */
  --hero-overlay: linear-gradient(rgba(15, 10, 10, 0.45), rgba(15, 10, 10, 0.85));
  --hero-overlay-darker: linear-gradient(rgba(15, 10, 10, 0.60), rgba(15, 10, 10, 0.92));
  --cta-overlay: linear-gradient(rgba(15, 10, 10, 0.65), rgba(15, 10, 10, 0.90));

  /* ── SHADOWS ── */
  --shadow-sm: 0 4px 15px rgba(139, 26, 42, 0.10);
  --shadow-md: 0 10px 30px rgba(139, 26, 42, 0.14);
  --shadow-lg: 0 20px 45px rgba(139, 26, 42, 0.20), 0 0 30px rgba(212, 175, 55, 0.12);
  --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.30);
  --shadow-maroon-glow: 0 0 30px rgba(139, 26, 42, 0.30);

  /* ── BORDERS ── */
  --border-glass: 1px solid rgba(139, 26, 42, 0.25);
  --border-glass-light: 1px solid rgba(139, 26, 42, 0.12);
  --border-gold: 1px solid rgba(212, 175, 55, 0.35);

  /* ── RADII ── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* ── TRANSITIONS ── */
  --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* ── FLUID TYPOGRAPHY & SPACING ── */
  --fz-h1: clamp(2.2rem, 5vw, 4rem);
  --fz-h2: clamp(1.8rem, 4vw, 2.8rem);
  --fz-h3: clamp(1.3rem, 2.2vw, 1.6rem);
  --fz-body: clamp(0.9rem, 1.5vw, 1rem);
  --fz-subtitle: clamp(0.8rem, 1.2vw, 0.9rem);
  --space-section: clamp(60px, 8vw, 120px);
  --space-grid: clamp(20px, 3vw, 35px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-primary);
}

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

body.menu-open {
  overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--color-maroon-dark) 50%, var(--bg-secondary) 100%);
  border: 2px solid var(--bg-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-maroon);
}

/* Custom Selection */
::selection {
  background: var(--color-maroon);
  color: #FDF5E8;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.font-serif-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   GLOBAL LAYOUT & SECTIONS
   ========================================================================== */
section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Responsive Grid Layout Utilities */
.grid-autofit-220 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-grid);
}

.grid-autofit-280 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-grid);
}

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

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-serif);
  color: var(--color-maroon);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: var(--fz-subtitle);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding: 0 20px;
}

.section-subtitle::before, .section-subtitle::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
}

.section-subtitle::before { left: 0; }
.section-subtitle::after { right: 0; }

/* ── Hero override: subtitle always gold on dark backgrounds ── */
.page-hero .section-subtitle,
.page-hero-content .section-subtitle {
  color: var(--color-gold-light);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

.section-title {
  font-size: var(--fz-h2);
  font-family: var(--font-serif);
  margin-bottom: 20px;
  background: var(--gradient-maroon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn-primary {
  background: var(--gradient-maroon);
  color: #FDF5E8;
  box-shadow: var(--shadow-maroon-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-maroon-hover);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 26, 42, 0.45);
  color: #FDF5E8;
}

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

.btn-secondary {
  background: rgba(253, 245, 232, 0.6);
  color: var(--color-maroon);
  border: var(--border-glass);
}

.btn-secondary:hover {
  background: var(--gradient-maroon);
  color: #FDF5E8;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-maroon-glow);
}

.btn-outline {
  background: transparent;
  color: var(--color-maroon);
  border: 1.5px solid var(--color-maroon);
}

.btn-outline:hover {
  background: var(--gradient-maroon);
  color: #FDF5E8;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-maroon-glow);
}

.btn i {
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.btn i:first-child {
  margin-right: 10px;
}

.btn i:last-child {
  margin-left: 10px;
}

.btn:hover i:last-child {
  transform: translateX(4px);
}

.btn:hover i:first-child {
  transform: translateX(-4px);
}

/* ==========================================================================
   CARDS & GLASSMORPHISM
   ========================================================================== */
.glass-panel {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass-light);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(139, 26, 42, 0.25);
  box-shadow: var(--shadow-lg);
}

/* Premium Divider */
.cultural-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  width: 100%;
  max-width: 400px;
}

.cultural-divider::before, .cultural-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 26, 42, 0.4), transparent);
}

.cultural-divider span {
  padding: 0 15px;
  color: var(--color-maroon);
  font-size: 1.2rem;
  font-family: var(--font-serif);
}

/* ==========================================================================
   INTERACTIVE CARDS (SERVICES, TEAM, etc)
   ========================================================================== */
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 1;
  border: var(--border-glass-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 10, 10, 0.95) 0%, rgba(15, 10, 10, 0.45) 50%, rgba(15, 10, 10, 0) 85%);
  z-index: 2;
  transition: var(--transition-normal);
}

.service-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transform: scale(1.0);
  transition: transform 1.2s cubic-bezier(0.15, 0.85, 0.35, 1);
}

.service-card .card-content {
  position: relative;
  z-index: 3;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.service-card .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--color-gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition-normal);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FDF5E8;
  margin-bottom: 10px;
  transition: var(--transition-normal);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(253, 245, 232, 0.8);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.4s ease, margin-bottom 0.3s ease;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-gold-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 15px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.service-card .card-link i {
  margin-left: 6px;
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

/* Card Hover Lifting and Zoom */
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
}

.service-card:hover::before {
  background: linear-gradient(to top, rgba(15, 10, 10, 0.98) 0%, rgba(15, 10, 10, 0.75) 60%, rgba(15, 10, 10, 0.1) 100%);
}

.service-card:hover .card-bg {
  transform: scale(1.1);
}

.service-card:hover .card-content {
  transform: translateY(0);
}

.service-card:hover .card-icon {
  background: var(--gradient-maroon);
  color: #FDF5E8;
  border-color: transparent;
  box-shadow: var(--shadow-maroon-glow);
  transform: rotate(360deg);
}

.service-card:hover p {
  opacity: 1;
  max-height: 80px;
  margin-bottom: 10px;
}

.service-card:hover .card-link {
  transform: translateY(0);
  opacity: 1;
}

.service-card:hover .card-link:hover i {
  transform: translateX(4px);
}

/* Service Card Mobile/Tablet Access overrides */
@media (max-width: 1024px) {
  .service-card {
    height: auto;
    min-height: 380px;
    justify-content: flex-end;
  }
  .service-card .card-content {
    transform: translateY(0) !important;
  }
  .service-card p {
    opacity: 1 !important;
    max-height: 120px !important;
    margin-bottom: 12px !important;
  }
  .service-card .card-link {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  .service-card::before {
    background: linear-gradient(to top, rgba(15, 10, 10, 0.98) 0%, rgba(15, 10, 10, 0.75) 60%, rgba(15, 10, 10, 0.1) 100%) !important;
  }
  .service-card h3 {
    color: #FDF5E8 !important;
  }
  .service-card p {
    color: rgba(253, 245, 232, 0.85) !important;
  }
  .service-card .card-link {
    color: var(--color-gold-light) !important;
  }
  .service-card .card-icon {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--color-gold-light) !important;
    color: var(--color-gold-light) !important;
  }
}

/* ==========================================================================
   DYNAMIC PAGE TRANSITION & LOADER
   ========================================================================== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mandala {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  animation: pulseRotate 6s linear infinite;
}

.loader-mandala svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  stroke-dasharray: 300;
  animation: drawStroke 3s ease-in-out infinite alternate;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.loader-text {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes drawStroke {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 0; }
}

@keyframes pulseText {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; color: var(--color-gold-light); }
}

/* Page Overlay Transition */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 99998;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

.page-transition-overlay.animating {
  transform: translateY(0);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Intersection Observer)
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.reveal-fade-up {
  transform: translateY(50px);
}

.reveal-fade-left {
  transform: translateX(-50px);
}

.reveal-fade-right {
  transform: translateX(50px);
}

.reveal-scale-up {
  transform: scale(0.9);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Parallax Banner background */
.parallax-banner {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .parallax-banner {
    background-attachment: scroll; /* Disable parallax on mobile */
  }
}

/* Floating animation */
.float-anim {
  animation: floatEffect 4s ease-in-out infinite;
}

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

/* Maroon glow background radial */
.radial-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 26, 42, 0.08) 0%, rgba(253, 245, 232, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-top-right { top: -100px; right: -100px; }
.glow-bottom-left { bottom: -100px; left: -100px; }

/* ==========================================================================
   FORM & INTERACTIVE ELEMENTS
   ========================================================================== */
.premium-form {
  display: grid;
  gap: 25px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: var(--transition-normal);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--color-maroon);
  box-shadow: 0 0 15px rgba(139, 26, 42, 0.18);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

label.form-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-maroon);
  margin-bottom: 8px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-maroon);
  pointer-events: none;
}

.form-control select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
}

.form-control select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 15px;
}

/* ==========================================================================
   HERO / BANNER STYLING COMMON
   ========================================================================== */
.page-hero {
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
  z-index: 2;
}

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

.page-hero-title {
  font-family: var(--font-serif);
  font-size: var(--fz-h1);
  margin-bottom: 20px;
  color: #FDF5E8;
  text-shadow: 0 2px 20px rgba(42, 14, 20, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: heroReveal 1.2s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
}

.page-hero-desc {
  font-size: 1.2rem;
  color: rgba(253, 245, 232, 0.88);
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(253, 245, 232, 0.70);
}

.breadcrumb a {
  color: rgba(253, 245, 232, 0.85);
}

.breadcrumb a:hover {
  color: var(--color-gold-light);
}

.breadcrumb span.divider {
  color: var(--color-gold-light);
  font-size: 0.7rem;
}

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

/* ==========================================================================
   RESPONSIVENESS MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .page-hero-title {
    font-size: 3.2rem;
  }
  section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .section-title {
    font-size: 2rem;
  }
  .page-hero-title {
    font-size: 2.6rem;
  }
  .container {
    padding: 0 20px;
  }
  section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .btn {
    padding: 12px 25px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  .page-hero-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   PREMIUM HOVER POPUP & IMAGE ANIMATION EFFECTS
   ========================================================================== */

/* 1. Global image hover popups and scale zooms transition */
.gallery-item img,
#gallery-preview .glass-panel img,
.gallery-item,
#gallery-preview .glass-panel {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 2. Scale-up zoom effect on images when their parent card is hovered */
.gallery-item:hover img,
#gallery-preview .glass-panel:hover img {
  transform: scale(1.12);
  filter: brightness(1.05) contrast(1.02);
}

/* 3. Outer card 3D lift/popup and maroon shadow glow on hover */
.gallery-item:hover,
#gallery-preview .glass-panel:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(42, 14, 20, 0.35), 0 0 25px rgba(139, 26, 42, 0.20) !important;
  border-color: rgba(139, 26, 42, 0.35) !important;
  z-index: 5;
}

/* 4. Smooth scale on about and detail page images */
.about-image-wrapper img,
.service-detail-img img,
.about-img-container img,
.interactive-img img {
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-image-wrapper:hover img,
.service-detail-img:hover img,
.about-img-container:hover img,
.interactive-img:hover img {
  transform: scale(1.06);
  filter: brightness(1.03);
}

.about-image-wrapper,
.service-detail-img,
.about-img-container,
.interactive-img {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: var(--border-glass-light);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-md);
}

.about-image-wrapper:hover,
.service-detail-img:hover,
.about-img-container:hover,
.interactive-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-maroon-glow);
  border-color: rgba(139, 26, 42, 0.25);
}

