/* ================================
   GLOBAL STYLES - DARK LUXURY THEME
================================ */

:root {
  --primary-gold: #D4AF37;
  --primary-gold-light: #F5D76E;
  --dark-bg: #0a0a0a;
  --dark-bg-light: #1a1a1a;
  --dark-bg-lighter: #2d2d2d;
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-light: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(212, 175, 55, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  cursor: none;
}

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }
}

/* ================================
   NAVBAR - DARK THEME
================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0.85rem 1.1rem;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.site-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-logo-img {
    height: 36px;
    max-width: min(200px, 58vw);
  }
}

.navbar-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.navbar-menu a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
  transition: width 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--primary-gold);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

/* Language Selector in Menu */
.language-menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.language-selector {
  position: relative;
}

.language-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 4px;
  white-space: nowrap;
}

.language-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
  transition: width 0.3s ease;
}

.language-button:hover,
.language-button:focus {
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.05);
}

.language-button:hover::after,
.language-button:focus::after {
  width: 100%;
}

.language-flag {
  font-size: 1.2rem;
  display: inline-block;
  line-height: 1;
}

.language-code {
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
}

.language-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--primary-gold);
  display: inline-block;
  margin-left: 0.2rem;
}

.language-arrow.open {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease;
  margin-top: 0.5rem;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
}

.language-option.active {
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  font-weight: 600;
}

.language-option .language-flag {
  font-size: 1.3rem;
}

.language-name {
  flex: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-left: 1px solid var(--border-gold);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu a {
    font-size: 1.3rem;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .navbar-menu {
    width: 92%;
    max-width: none;
    gap: 1.6rem;
    padding: 1.5rem 1rem;
  }

  .navbar-menu a {
    font-size: 1.15rem;
  }

  .language-dropdown {
    min-width: 220px;
  }
}

/* ================================
   FOOTER - DARK THEME
================================ */
.footer {
  background: linear-gradient(180deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-gold);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: fill 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.social-icon:hover svg {
  fill: var(--dark-bg);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 4rem 0 1.5rem;
  }

  .footer-container {
    padding: 0 1.1rem;
  }
}

/* ================================
   SCROLL ANIMATIONS
================================ */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.from-left {
  transform: translateX(-60px);
}

.scroll-animate.from-left.visible {
  transform: translateX(0);
}

.scroll-animate.from-right {
  transform: translateX(60px);
}

.scroll-animate.from-right.visible {
  transform: translateX(0);
}

.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }
.scroll-animate.delay-7 { transition-delay: 0.7s; }
.scroll-animate.delay-8 { transition-delay: 0.8s; }
.scroll-animate.delay-9 { transition-delay: 0.9s; }
.scroll-animate.delay-10 { transition-delay: 1.0s; }
.scroll-animate.delay-11 { transition-delay: 1.1s; }

/* ================================
   BUTTONS
================================ */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::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 ease;
}

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

/* ================================
   SECTION LABELS
================================ */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

/* ================================
   PAGE HERO - DARK THEME
================================ */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ================================
   GLASSMORPHISM CARDS
================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(212, 175, 55, 0.1);
}

/* ================================
   UTILITY CLASSES
================================ */
.text-gold {
  color: var(--primary-gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-dark {
  background: var(--dark-bg);
}

.bg-dark-light {
  background: var(--dark-bg-light);
}
