/* ==========================================
   1. LUXURY EVENT MANAGEMENT - GLOBAL RESET
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0f172a; /* Rich dark luxury background */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==========================================
   2. VIP HEADER & BRANDING
   ========================================== */
.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 24px;
  background: rgba(11, 17, 32, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   3. VIP ANIMATED HERO SLIDER (NEW)
   ========================================== */
.premium-hero {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 5s ease;
  transform: scale(1.05);
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 17, 32, 0.5), rgba(11, 17, 32, 0.8)); 
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}

.gold-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #d4af37, #aa7c11);
  color: #0f172a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border: 1px solid transparent;
  text-transform: uppercase;
}

.gold-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

/* ==========================================
   4. LUXURY SERVICES SECTION
   ========================================== */
.services-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 50px;
}

.section-title span {
  color: #d4af37;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  background: rgba(30, 41, 59, 0.9);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 25px;
}

.card-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-btn:hover {
  background: #d4af37;
  color: #0f172a;
}

/* ==========================================
   5. PREMIUM BOOKING FORM
   ========================================== */
.booking-section {
  background: linear-gradient(180deg, #0b1120, #1e293b);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.booking-container {
  background: #1e293b;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 50px;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #d4af37;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d4af37, #aa7c11);
  color: #0f172a;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* ==========================================
   6. LUXURY WELCOME POPUP
   ========================================== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 17, 32, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(8px);
}

.popup-box {
  background: #ffffff; /* Elegant White */
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border: 2px solid #d4af37;
  animation: popupFadeIn 0.5s ease-out;
}

@keyframes popupFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: 300;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s;
}

.close-popup:hover {
  color: #d4af37;
}

.popup-box input, 
.popup-box select {
  width: 100%;
  padding: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #f8fafc;
  color: #0f172a;
}

.popup-box input:focus, 
.popup-box select:focus {
  border-color: #d4af37;
}

.popup-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #d4af37, #aa7c11);
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.popup-btn:hover {
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   7. APP-STYLE BOTTOM NAVIGATION (MOBILE)
   ========================================== */
.upfooter-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: rgba(11, 17, 32, 0.98);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  display: none; /* Hide on Desktop, show on Mobile */
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.upfooter-item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding-top: 6px;
  transition: all 0.3s ease;
}

.upfooter-item span {
  display: block;
  font-size: 20px;
  margin-bottom: 3px;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.upfooter-item.active {
  color: #d4af37 !important;
}

.upfooter-item.active span {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

/* ==========================================
   8. MOBILE RESPONSIVENESS (PERFECT VIEW)
   ========================================== */
@media (max-width: 991px) {
  .nav-links {
    display: none; /* Hide desktop nav on small screens */
  }
  .upfooter-nav {
    display: flex; /* Show App-style footer */
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem !important; /* Smaller text for mobile */
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 1rem !important;
    padding: 0 10px;
  }
  
  .gold-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .booking-container {
    padding: 30px 20px;
  }

  .popup-box {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem !important;
  }
  
  .event-logo span:first-child {
    font-size: 22px !important; /* Adjust logo size */
  }
  
  .event-logo div span:first-child {
    font-size: 18px !important;
  }

  .services-section {
    padding: 50px 15px;
  }
  
  .booking-section {
    padding: 50px 15px;
  }
}