/*package start*/

.cruise-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.package-card {
  background: rgba(255, 248, 220, 0.85); /* sand color */
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.25);
}

.package-card .package-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #5C2E00;
}

.package-card p {
  flex-grow: 1; /* makes all cards the same height */
  margin-bottom: 1rem;
}

.package-card ul {
  margin-bottom: 1rem;
  flex-grow: 1; /* keep footer aligned */
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.book-btn {
  color: #ffffff;
  background-color: rgb(231, 182, 48);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
}

.popular {
  background: linear-gradient(135deg, #FFF8DC, #FFE4B5);
  border: 2px solid #FFD700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.25);
  position: relative;
}

.popular .badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #5C2E00;
  padding: 0.25rem 0.75rem;
  font-weight: bold;
  border-radius: 9999px;
  font-size: 0.8rem;
  text-align: center;
}

/*package end*/

/*locations start*/
.destinations {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #75C8EE, #f4e1a0);
}

.destinations h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #5C2E00;
}

.subtitle {
  color: #5C2E00;
  opacity: 0.7;
  margin-bottom: 40px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.card {
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 5px;
    
}

.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card-img {
  transition: 0.3s;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 , .card p{
    margin: 0px;
    padding: 0px;
}




.card h3 {
  margin: 5px 0;
}

.series {
  font-size: 12px;
  opacity: 0.6;
}

.desc {
  font-size: 14px;
  margin: 10px 0;
}


.tags span {
  background: rgba(255,255,255,0.6);
  padding: 3px 8px;
  margin-right: 5px;
  border-radius: 6px;
  font-size: 12px;
}
/*locations end*/

/*workshop section start*/

.workshops {
  
  padding: 100px 20px;

  background: linear-gradient(
    to bottom,
    #f4e1a0 0%,
    #5C2E00 100%
  );

  color: white;
}


.workshops-container {
  
  margin: auto;
  position: relative;
  z-index: 2;
}


.workshops-header {
  text-align: center;
  margin-bottom: 60px;
}

.workshops-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.workshops-header p {
  opacity: 0.85;
}


.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}


.cards {
  display: flex;
  gap: 15px;

  background: rgba(216, 91, 91, 0.7);
  backdrop-filter: blur(10px);

  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);

  transition: 0.3s ease;
}

.cards:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-6px);
}


.icon {
  font-size: 32px;
}


.time {
  display: inline-block;
  margin: 5px 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
}

/*workshop section end*/