/* VIP Monaco F1 Grand Prix 2026 - Custom Styles */

/* ===== CSS Variables ===== */
:root {
  --gold: #D4AF37;
  --gold-dark: #B8941F;
  --gold-light: #F4E5B0;
  --gold-shadow: rgba(212, 175, 55, 0.4);
  --duration-luxury: 0.3s;
}

/* ===== Global Styles ===== */
body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ===== Premium Button Styles ===== */
.btn-premium {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  border: none;
  padding: 12px 40px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--gold-shadow);
  transition: all var(--duration-luxury) ease;
  text-decoration: none;
  display: inline-block;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  color: white;
}

.btn-premium:active {
  transform: translateY(0);
}

.btn-premium-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 12px 40px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all var(--duration-luxury) ease;
  text-decoration: none;
  display: inline-block;
}

.btn-premium-outline:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-shadow);
}

/* ===== Card Styles ===== */
.shadow-luxury {
  box-shadow: 0 10px 40px var(--gold-shadow);
}

.card {
  transition: all var(--duration-luxury) ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px var(--gold-shadow);
}

.card-img-top {
  height: 280px;
  object-fit: cover;
}

/* ===== Text & Colors ===== */
.text-gold {
  color: var(--gold) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.border-gold {
  border-color: var(--gold) !important;
  border-width: 2px !important;
}

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

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

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

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* ===== Package Cards ===== */
.package-card {
  position: relative;
  height: 100%;
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.package-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== FAQ Accordion ===== */
.accordion-button:not(.collapsed) {
  color: var(--gold);
  background-color: rgba(212, 175, 55, 0.1);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  border-color: var(--gold);
}

/* ===== Footer ===== */
footer {
  background: #1a1a1a;
  color: white;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--duration-luxury) ease;
}

footer a:hover {
  color: var(--gold);
}

/* ===== Forms ===== */
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* ===== Trust Section Icons ===== */
.trust-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--duration-luxury) ease;
}

.trust-icon-wrapper:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.trust-icon {
  font-size: 36px;
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
  }

  .card-img-top {
    height: 220px;
  }

  .btn-premium,
  .btn-premium-outline {
    width: 100%;
    margin-bottom: 12px;
  }
}

/* ===== Modal ===== */
.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.vip-modal-content {
  border-radius: 16px;
  overflow: hidden;
}

.modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-header .btn-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

/* VIP Request Form Styling */
.vip-request-form .form-label {
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

.vip-request-form .form-control,
.vip-request-form .form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.vip-request-form .form-control:focus,
.vip-request-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.vip-request-form .form-control-lg,
.vip-request-form .form-select-lg {
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
}

/* ===== Flash Messages ===== */
.alert {
  border-radius: 8px;
  border: none;
}

.alert-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.alert-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
}

/* ===== Smooth Scroll ===== */
html {
  scroll-behavior: smooth;
}

/* ===== Contact Section ===== */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== Badge Styles ===== */
.badge {
  font-weight: 600;
  padding: 8px 16px;
  font-size: 14px;
}

/* ===== Section Spacing ===== */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}
