/* Home Announcements - Modern Tour Cards */

.announcements {
  padding: 60px 20px;
  background: var(--paper);
  position: relative;
}

.announcements .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.announcements .h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  position: relative;
}

/* Removed underline decoration */

/* Modern Tours Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  position: relative;
}

/* Tour Card - Ultra Minimalist Design */
.tour-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;
}

.tour-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

/* Tour Card Image */
.tour-card__image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.02);
}

/* Tour Card Header - Simplified */
.tour-card__header {
  padding: 16px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.tour-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 9px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-card__badge i {
  width: 10px;
  height: 10px;
}

.tour-card__price-badge {
  display: flex;
  align-items: center;
}

.tour-card__price-badge .tour-card__price-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Price removed - no longer needed */

/* Tour Card Content - Streamlined */
.tour-card__content {
  padding: 0 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-card__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.1px;
}

.tour-card__description {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}


/* Tour Card Features - Compact & Clean */
.tour-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px;
  margin: 8px 0;
}

.tour-card__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.tour-card__feature:hover {
  background: rgba(255, 255, 255, 0.04);
}

.tour-card__feature i,
.tour-card__feature svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.tour-card__feature span {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  white-space: nowrap;
}

/* Tour Card Price Info */
.tour-card__price-info {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-align: center;
}

/* Tour Card Contact Info - Simplified */
.tour-card__contact-info {
  margin-bottom: 12px;
  text-align: center;
}

.tour-card__contact-text {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.3;
}

.tour-card__contact-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.tour-card__contact-text a:hover {
  color: #ffffff;
}

/* Tour Card Footer - Clean */
.tour-card__footer {
  padding: 0 16px 16px;
  margin-top: auto;
}

.tour-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.tour-card__cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.tour-card__cta i {
  width: 10px;
  height: 10px;
}

/* Spring Tour Specific */
.tour-card--spring {
  border-left: 3px solid var(--accent);
}

.tour-card--spring .tour-card__badge {
  background: var(--accent);
  color: #ffffff;
}

/* Winter Tour Specific - Blue Palette */
.tour-card--winter {
  border-left: 3px solid #3B82F6;
  opacity: 1;
}

.tour-card--winter .tour-card__badge {
  background: #3B82F6;
  color: #ffffff;
}

.tour-card--winter .tour-card__title {
  color: #ffffff;
}

.tour-card--winter .tour-card__description {
  color: rgba(255, 255, 255, 0.8);
}


.tour-card--winter .tour-card__feature {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.tour-card--winter .tour-card__feature span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.tour-card--winter .tour-card__feature i,
.tour-card--winter .tour-card__feature svg {
  color: rgba(59, 130, 246, 0.5);
  width: 16px;
  height: 16px;
}

/* Winter tour has no CTA button - adjust spacing */
.tour-card--winter .tour-card__features {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

/* Winter tour features - compact layout */
.tour-card--winter .tour-card__features {
  gap: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .announcements {
    padding: 40px 16px;
  }

  .announcements .h2 {
    margin-bottom: 32px;
    font-size: clamp(20px, 5vw, 28px);
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tour-card {
    min-height: auto;
  }

  .tour-card__image {
    height: 140px;
  }

  .tour-card__header {
    padding: 16px 16px 0;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }

  .tour-card__content {
    padding: 0 16px;
  }

  .tour-card__features {
    padding: 0 16px;
    gap: 4px;
  }

  .tour-card__feature {
    padding: 3px 6px;
  }

  .tour-card__footer {
    padding: 0 16px 16px;
  }

  .tour-card__title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .announcements {
    padding: 50px 16px;
  }

  .announcements .h2 {
    margin-bottom: 30px;
  }

  .tours-grid {
    gap: 20px;
  }

  .tour-card__image {
    height: 140px;
  }

  .tour-card__header {
    padding: 20px 20px 0;
  }

  .tour-card__content {
    padding: 0 20px;
  }

  .tour-card__features {
    padding: 0 20px;
  }

  .tour-card__footer {
    padding: 0 20px 20px;
  }

  .tour-card__cta {
    padding: 14px 20px;
    font-size: 13px;
  }
}

/* Animation for scroll reveal */
.tour-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for multiple cards */
.tour-card:nth-child(1) { transition-delay: 0.1s; }
.tour-card:nth-child(2) { transition-delay: 0.2s; }
.tour-card:nth-child(3) { transition-delay: 0.3s; }
.tour-card:nth-child(4) { transition-delay: 0.4s; }