@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Reset and Custom Base */
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #C5A880 #0B0F19;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B0F19;
  color: #FFFFFF;
  overflow-x: hidden;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0B0F19;
}
::-webkit-scrollbar-thumb {
  background: #C5A880;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A6875D;
}

/* Glassmorphism Classes */
.glass-nav {
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card {
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 10px 30px -10px rgba(197, 168, 128, 0.15);
  background: rgba(17, 24, 39, 0.7);
}

.glass-input {
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-input:focus {
  border-color: #C5A880;
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
  outline: none;
}

/* Shimmer Shading Effects */
.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 55%
  );
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.shimmer-btn:hover::after {
  animation: shimmerEffect 1.2s infinite;
}

@keyframes shimmerEffect {
  0% { transform: translate(-30%, -30%) rotate(45deg); }
  100% { transform: translate(30%, 30%) rotate(45deg); }
}

/* Timeline Custom Visuals */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }
}

.timeline-progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, #C5A880, #A6875D);
  transform: translateX(-50%);
  height: 0%;
  transition: height 0.1s linear;
}

@media (max-width: 768px) {
  .timeline-progress-line {
    left: 20px;
  }
}

/* Glowing text & decorations */
.text-glow {
  text-shadow: 0 0 20px rgba(197, 168, 128, 0.3), 0 4px 12px rgba(0, 0, 0, 0.85);
}

.border-glow {
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.2);
}

/* Custom Swiper Styles */
.swiper-button-next,
.swiper-button-prev {
  color: #C5A880 !important;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #C5A880;
  color: #0B0F19 !important;
  border-color: #C5A880;
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #C5A880 !important;
  width: 24px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease;
}

/* Custom AOS Overrides for Luxury Feel */
[data-aos="fade-up-luxury"] {
  opacity: 0;
  transform: translateY(40px);
  transition-property: transform, opacity;
}

[data-aos="fade-up-luxury"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger Morphing Icon */
.menu-btn-bar {
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.menu-open .menu-btn-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-btn-bar:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-btn-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
