/* ===== GLOBAL THEME ===== */
:root {
  --gold: #f1c40f;
  --black: #050505;
  --green: #0b5f3c;
}

body {
  background: var(--black);
  color: #f1e5c0;
}

/* ===== STICKY NAV ===== */
#lux-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

.nav-logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--gold);
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f1e5c0;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ===== PAGE HEADERS ===== */
.page-header {
  display: none;
  height: 90vh;
  min-height: 520px;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('/wp-content/uploads/atlskyline.jpg') center/cover no-repeat;
  text-align: center;
  padding-top: 180px;
}

.page-header h1 {
  font-size: 46px;
  color: var(--gold);
}

.page-header p {
  font-size: 20px;
  max-width: 720px;
  margin: 20px auto;
  color: #e8dcae;
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header h1 { font-size: 32px; }
  .nav-links { display: none; }
}
/* Habellard Booking Page Styles - Add to WordPress Additional CSS */

.habellard-booking-section {
    background: #000;
    color: #f1e5c0;
    padding: 80px 20px;
    font-family: Georgia, serif;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(241, 196, 15, 0.15);
    border: 1px solid rgba(241, 196, 15, 0.3);
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #f1c40f;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.booking-title {
    font-size: 48px;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-subtitle {
    font-size: 18px;
    color: #f1e5c0;
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.7;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Package Selection */
.packages-section {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(241, 196, 15, 0.2);
}

.section-title {
    font-size: 28px;
    color: #f1c40f;
    margin-bottom: 25px;
    font-weight: 700;
}

.package-card {
    padding: 20px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid rgba(241, 196, 15, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
    border-color: #f1c40f;
}

.package-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(17, 17, 17, 0.95) 100%);
    border: 3px solid #d4af37;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.package-name {
    color: #f1c40f;
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.package-price {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 700;
    color: #f1e5c0;
}

.package-description {
    margin: 0;
    font-size: 14px;
    color: #b8b0a0;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.package-features li {
    padding: 5px 0;
    color: #b8b0a0;
    font-size: 13px;
}

.package-features li:before {
    content: "✓ ";
    color: #f1c40f;
    font-weight: bold;
    margin-right: 8px;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.08) 0%, rgba(17, 17, 17, 0.95) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #d4af37;
    box-shadow: 0 20px 60px rgba(241, 196, 15, 0.25);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(241, 196, 15, 0.3);
    border-radius: 8px;
    color: #f1e5c0;
    font-size: 14px;
    font-family: Georgia, serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f1c40f;
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f1c40f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(241, 196, 15, 0.5);
}

.form-note {
    margin-top: 15px;
    font-size: 12px;
    color: #b8b0a0;
    text-align: center;
    line-height: 1.6;
}

/* Service Categories */
.service-category {
    margin-bottom: 20px;
}

.category-title {
    font-size: 16px;
    color: #f1c40f;
    margin-bottom: 12px;
    font-weight: 600;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(241, 196, 15, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    background: rgba(241, 196, 15, 0.1);
    border-color: #f1c40f;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    color: #f1e5c0;
    font-size: 14px;
    cursor: pointer;
}

/* WordPress Form Plugin Overrides */
.form-section .wpforms-field-label,
.form-section .gfield_label,
.form-section label {
    color: #d4af37 !important;
    font-weight: 600 !important;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section select,
.form-section textarea {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 2px solid rgba(241, 196, 15, 0.3) !important;
    color: #f1e5c0 !important;
}

.form-section input[type="submit"],
.form-section button[type="submit"] {
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 18px !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
}

/* Responsive */
@media (max-width: 968px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-title {
        font-size: 36px;
    }
    
    .form-section {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .habellard-booking-section {
        padding: 40px 15px;
    }
    
    .booking-title {
        font-size: 28px;
    }
    
    .package-price {
        font-size: 24px;
    }
    
    .packages-section,
    .form-section {
        padding: 20px;
    }
}