/* Ramayan Circuit Package Styles */
:root {
  --primary-color: #FF9933;  
  --secondary-color: #138808; 
  --accent-color: #800080;   
  --text-color: #333;
  --light-bg: #f9f9f9;
}

.package-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('../images/ramayan-circuit-hero.jpg') center/cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.package-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.package-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
}

.package-highlights {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.package-highlights span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.package-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.package-overview {
  margin-bottom: 4rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.overview-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.overview-card:hover {
  transform: translateY(-5px);
}

.overview-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-color);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  position: relative;
}

.timeline-item:nth-child(odd) .content {
  margin-left: auto;
  padding-left: 2rem;
}

.timeline-item:nth-child(even) .content {
  margin-right: auto;
  padding-right: 2rem;
  text-align: right;
}

.day {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.content {
  width: 45%;
}

.content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.inclusion-item {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.inclusion-item:hover {
  transform: translateY(-5px);
}

.inclusion-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.package-price {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 4rem 0;
}

.price-card {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-amount {
  font-size: 3rem;
  margin: 2rem 0;
}

.currency {
  font-size: 2rem;
  vertical-align: super;
}

.per-person {
  font-size: 1rem;
  opacity: 0.8;
}

.price-features {
  margin: 2rem 0;
}

.price-features p {
  margin: 0.5rem 0;
}

.book-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.book-now-btn:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .package-hero-content h1 {
    font-size: 2.5rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-item .content {
    width: 100%;
    padding-left: 2rem !important;
    text-align: left !important;
  }

  .day {
    left: 0;
    transform: translateX(-50%);
  }
} 