/* Grand Prairie Christmas Lights - Custom Styles */
:root {
  --primary-green: #0f4c3a;
  --accent-red: #b91c1c;
  --gold: #d4af37;
  --dark: #111827;
  --light: #f8fafc;
}

body {
  font-family: 'Inter', system_ui, sans-serif;
}

/* Festive touches */
.christmas-header {
  background: linear-gradient(135deg, #0f4c3a 0%, #1a3a2f 100%);
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-header {
  position: relative;
  display: inline-block;
}

.section-header:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #b91c1c, #d4af37);
  border-radius: 3px;
}

/* Card styles */
.benefit-card, .step-card, .testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover, .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Button styles */
.btn-primary {
  background-color: #b91c1c;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #991b1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(185 28 28 / 0.3);
}

.btn-secondary {
  background-color: white;
  color: #0f4c3a;
  border: 2px solid #0f4c3a;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #0f4c3a;
  color: white;
}

/* Nav */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Mobile menu */
.mobile-menu {
  animation: slideDown 0.3s ease forwards;
}

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

/* Gallery */
.gallery-img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

/* Form */
.form-input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: #0f4c3a;
  box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.1);
  outline: none;
}

/* Modal */
.modal {
  animation: modalPop 0.3s ease forwards;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Lightbox */
.lightbox {
  animation: fadeIn 0.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Pricing highlight */
.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #d4af37;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Max badge */
.max-badge {
  background: linear-gradient(90deg, #b91c1c, #991b1b);
  color: white;
  box-shadow: 0 4px 6px -1px rgb(185 28 28 / 0.2);
}

/* Footer */
.footer {
  background-color: #0f4c3a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
  }
}