/* GOLDEN NEVA INC - Custom Styles */

/* Gold Gradient Backgrounds */
.gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #b8941d 50%, #d4af37 100%);
}

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

/* Card Hover Effects */
.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #d4af37;
  transform: translateY(-2px);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Smooth Scrolling */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Navigation Scrolled State */
.nav-scrolled {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Mobile Menu Animation */
@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    max-height: 85vh;
  }
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .modal,
  nav,
  footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}