

:root {
  --luxury-black: #0a0a0a;
  --luxury-gold: #d4af37;
  --luxury-light-gold: #f4e4c1;
  --luxury-warm-gray: #1a1a1a;
  --luxury-accent-gray: #2a2a2a;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: var(--luxury-black);
  color: white;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
  font-family: var(--font-serif) !important;
}

.font-sans {
  font-family: var(--font-sans) !important;
}

/* Tailwind-like Typography Scale */
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 992px) {
  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--luxury-gold);
}

/* Utilities */
.text-luxury-gold {
  color: var(--luxury-gold) !important;
}
.bg-luxury-gold {
  background-color: var(--luxury-gold) !important;
}
.bg-luxury-black {
  background-color: var(--luxury-black) !important;
}
.bg-luxury-warm-gray {
  background-color: var(--luxury-warm-gray) !important;
}
.text-luxury-light-gold {
  color: var(--luxury-light-gold) !important;
}

/* Buttons & Links */
.btn-luxury {
  background-color: var(--luxury-gold);
  color: var(--luxury-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 2rem;
  border: none;
  transition: all 0.3s ease;
}
.btn-luxury:hover {
  background-color: white;
  color: var(--luxury-black);
}

.btn-outline-luxury {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}
.btn-outline-luxury:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
  z-index: 0;
}
.hero-bg.scale-effect {
  transform: scale(1.05); /* Simulating the scale effect */
}
.hero-overlay {
  position: absolute;
  inset: 0;
	/*background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1),*/
    #0a0a0a  /* var(--luxury-black) value */
);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-link {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #d1d5db !important;
  position: relative;
}
.nav-link:hover {
  color: white !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--luxury-gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Service Cards */
.service-card {
  background-color: var(--luxury-warm-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--luxury-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--luxury-black);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--luxury-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}
.service-card:hover .service-icon {
  background-color: var(--luxury-gold);
  color: var(--luxury-black);
}

/* Fleet Cards */
.fleet-card {
  background-color: var(--luxury-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
}
.fleet-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}
.fleet-image-container {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
.fleet-image-container img {
  transition: transform 0.7s ease-out;
}
.fleet-card:hover .fleet-image-container img {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: #e5e7eb;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.875rem;
  }
}

/* Booking CTA */
.booking-cta-box {
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .booking-cta-box {
    padding: 4rem;
  }
}

/* Footer */
footer a {
  text-decoration: none;
}
footer a:hover {
  color: var(--luxury-gold) !important;
}

/* Animations (Simple Fade In alternatives to Framer Motion) */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}