@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary: #004e89;
  --accent: #ffd23f;
  --dark: #1a1a2e;
  --gray: #4a5568;
  --light-gray: #e2e8f0;
  --white: #ffffff;
  --text: #2d3748;
  --bg-light: #f7fafc;
  --transition: all 0.3s ease;
}
/* Trek Package Single Page Styles */

.trekking-package-single {
    background-color: var(--bg-light);
    min-height: 100vh;
  }
  
  /* Hero Section */
  .package-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
  }
  
  .package-hero .hero-image {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .package-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .package-hero .hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.3), rgba(26, 26, 46, 0.7));
  }
  
  .package-hero .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 5%;
    color: var(--white);
    z-index: 2;
  }
  
  .package-hero h1 {
    font-size: 7rem;
    font-family: "Amatic SC";
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .package-hero .package-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .package-hero .package-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
  }
  
  .package-hero .package-meta .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
  }
  
  .package-hero .package-meta .difficulty {
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
  }
  
  .package-hero .package-meta .duration {
    background-color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
  }
  
  /* Two Column Layout */
  .package-page {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
  }
  
  .package-page__left {
    min-width: 0;
  }
  
  .package-page__right {
    position: relative;
  }
  
  /* Section Styles */
  .package-page section {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  .package-page section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .package-page section h2 {
    font-size: 24px;
    color: var(--dark);
    margin: 0 0 1.5rem 0;
    padding-bottom: 6px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    /* font-family: "Amatic SC"; */
    text-transform: uppercase;
  }
  
  /* Overview Section */
  .overview-content {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.0625rem;
  }
  
  .overview-content p {
    margin-bottom: 1rem;
  }
  
  /* Details Grid */
  .details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .detail-item {
    padding: 1.25rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    /* border-left: 4px solid var(--primary); */
    transition: var(--transition);
  }
  
  .detail-item:hover {
    border-left-color: var(--secondary);
    transform: translateX(4px);
  }
  
  .detail-item strong {
    display: block;
    color: var(--secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* margin-bottom: 0.5rem; */
  }
  
  /* Itinerary Content */
  .itinerary-content {
    color: var(--text);
    line-height: 1.8;
  }
  
  .itinerary-content ul,
  .itinerary-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
  }
  
  .itinerary-content li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
  }
  
  /* Includes Content */
  .includes-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .includes-content li {
    padding: 1rem 1rem 1rem 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
  }
  
  .includes-content li:hover {
    background-color: #e8f4f8;
  }
  
  .includes-content li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  /* Gallery Grid */

  .package-gallery {
    width: 100%;
    padding: 0rem !important;
    background-color: unset !important;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: unset !important;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

   
  /* Gallery - Main Image */
  .gallery-main {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
  }

  .gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
  }

  /* Gallery - Thumbnails */
  .gallery-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .gallery-thumb {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
  }

  .gallery-thumb:hover {
    opacity: 1;
  }

  .gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
  }

  .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Hide scrollbar but keep functionality */
  .gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
  }

  .gallery-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }

  .gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #aaa;
  }
  
  
  /* Booking Section - Sticky */
  .package-booking {
    position: sticky;
    top: 2rem;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .package-booking h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0 0 1.5rem 0;
    text-align: center;
    border: none;
    display: block;
  }
  
  /* Booking Form */
  .trek-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Price Display */
  .booking-price {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .booking-price .price-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
  }
  
  .booking-price .price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  
  .booking-price .price-per {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
  }
  
  /* Booking Fields */
  .booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .booking-field label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9375rem;
  }
  
  .booking-field .required {
    color: var(--primary);
  }
  
  .booking-field select,
  .booking-field input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text);
  }
  
  .booking-field select:focus,
  .booking-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  }
  
  .booking-field select:hover,
  .booking-field input:hover {
    border-color: var(--gray);
  }
  
  /* No Departures Message */
  .no-departures {
    padding: 1rem;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    text-align: center;
    font-size: 0.9375rem;
  }
  
  /* Booking Total */
  .booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    margin-top: 0.5rem;
  }
  
  .booking-total .total-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .booking-total .total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  /* Book Now Button */
  .book-now-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  }
  
  .book-now-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  }
  
  .book-now-btn:active {
    transform: translateY(0);
  }
  
  .book-now-btn.contact-btn {
    background-color: var(--secondary);
  }
  
  .book-now-btn.contact-btn:hover {
    background-color: #003a6b;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .package-page {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .package-page__right {
      order: -1;
    }
  
    .package-booking {
      position: relative;
      top: 0;
    }
  
    .details-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .includes-content ul {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .package-hero {
      height: 400px;
    }
  
    .package-hero h1 {
      font-size: 4rem;
    }
  
    .package-hero .hero-content {
      padding: 2rem 1.5rem;
    }
  
    .package-hero .package-meta {
      gap: 1rem;

      @media (max-width: 480px) {
        flex-direction: row;
      }
    }
  
    .package-hero .package-meta .price {
      font-size: 1.5rem;
    }
  
    .package-page {
      padding: 0 1rem 2rem;
      gap: 1.5rem;
    }
  
    .package-page section {
      padding: 1.5rem;
    }
  
    .package-page section h2 {
      font-size: 1.5rem;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .booking-price .price-amount {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .package-hero {
      height: 300px;
    }
  
    .package-hero h1 {
      font-size: 4rem;
    }
  
    .package-hero .hero-content {
      padding: 1.5rem 1rem;
    }
  
    .package-page section {
      padding: 1.25rem;
    }
  }
  
  /* Print Styles */
  @media print {
    .package-booking,
    .book-now-btn {
      display: none;
    }
  
    .package-page {
      grid-template-columns: 1fr;
    }
  }
  