/* Custom CSS for Luxe Lightscapes - Bootstrap Compatible */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* Dark Luxury Theme Variables */
:root {
  --gold: #ffc107;
  --gold-light: #ffca2c;
  --gold-dark: #e0a800;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --charcoal-dark: #0a0a0a;
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
}

/* Base Styles */
body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--charcoal-dark) !important;
  color: var(--text-light) !important;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* Text Gradient Effect */
.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow Effect */
.glow-effect {
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.glow-effect:hover {
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.5);
}

/* Card Hover Effect */
.card-hover {
  transition: all 0.5s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

/* Container Custom */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 1rem;
}

/* Badge Styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 193, 7, 0.4);
  background: rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

/* Hero Heading */
.hero-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* Hero Description */
.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(248, 249, 250, 0.8);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--charcoal-dark);
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--gold-light);
  transform: scale(1.05);
  color: var(--charcoal-dark);
  text-decoration: none;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(248, 249, 250, 0.3);
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(248, 249, 250, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4px;
}

.scroll-mouse::before {
  content: '';
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scroll 2s infinite;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Service Cards */
.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 193, 7, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  border-top: 1px solid rgba(255, 193, 7, 0.3);
  border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

/* Trust Section */
.trust-section {
  background: var(--charcoal);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}
