/* ATHENA EXECUTIVE LOUNGE - CUSTOM LUXURY STYLES */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #997A15;
  --gold-metallic: linear-gradient(135deg, #d4af37 0%, #fff1bd 50%, #aa7c11 100%);
  --gold-metallic-hover: linear-gradient(135deg, #e5c04b 0%, #fff7d6 50%, #bc8d22 100%);
  --bg-deep: #08080a;
  --bg-card: rgba(18, 18, 24, 0.75);
  --border-gold: rgba(212, 175, 55, 0.3);
}

html, body {
  font-family: 'Prompt', sans-serif;
  background-color: var(--bg-deep);
  color: #e5e5e5;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

/* Luxury Gold Text Gradient */
.text-gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #fae69e 40%, #c4962c 70%, #fdf5d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-shimmer {
  background: linear-gradient(90deg, #b38728 0%, #fcf6ba 25%, #bf953f 50%, #fbf5b7 75%, #aa771c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Luxury Gold Buttons */
.btn-gold {
  background: var(--gold-metallic);
  color: #0d0d10;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--gold-metallic-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  transition: 0.8s;
  opacity: 0;
}

.btn-gold:hover::after {
  opacity: 1;
  left: 100%;
}

.btn-gold-outline {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #ffffff;
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* Glassmorphism Luxury Cards */
.card-luxury {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-luxury:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 15px 35px -10px rgba(212, 175, 55, 0.25), 0 0 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-4px);
}

/* Gold Glowing Border / Accents */
.border-gold-glow {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Ambient Background Glows */
.ambient-glow-gold {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #08080a;
}
::-webkit-scrollbar-thumb {
  background: #3a3219;
  border-radius: 4px;
  border: 1px solid #5a4b22;
}
::-webkit-scrollbar-thumb:hover {
  background: #8b7124;
}

/* Sticky Bottom Bar on Mobile with iOS Safe Area */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(8, 8, 11, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.85);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

/* Ensure body doesn't get obscured by mobile sticky bar */
@media (max-width: 767px) {
  body {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Modal Popup Styles */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  background: #101016;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 50px rgba(0,0,0,0.95), 0 0 35px rgba(212, 175, 55, 0.3);
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

/* Image Gallery Lightbox Styles */
#image-lightbox-modal {
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#lightbox-image {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

@media (min-width: 640px) {
  #lightbox-image {
    max-height: 78vh;
  }
}

/* Mobile Swiper Optimization */
.swiper-button-next, .swiper-button-prev {
  color: var(--gold-light) !important;
  transform: scale(0.7);
  background: rgba(0, 0, 0, 0.6);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(4px);
}

.swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.7;
}

/* Responsive Table Scroll Indicator */
.table-scroll-wrapper {
  position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-none {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Language Switcher Buttons */
.lang-btn.active, .lang-btn-mobile.active {
  background: var(--gold-metallic);
  color: #0d0d10 !important;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}
