.main-partner-hotels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/partner-hotels-bg.jpg") no-repeat center center/cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  z-index: -1;
}

.partner-hotels-section {
  position: relative;
  min-height: calc(100vh - 200px);
  max-width: 1400px;
  margin: 20px auto;
  padding: 2rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.hotels-intro {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--main-gray);
}

.main-venue-reminder {
  background-color: var(--lighter-blue);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--primary-blue);
}

.main-venue-reminder h3 {
  color: var(--primary-blue);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.main-venue-reminder p {
  margin: 0;
  color: var(--main-gray);
  line-height: 1.6;
}

.main-venue-reminder a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.main-venue-reminder a:hover {
  text-decoration: underline;
  color: var(--primary-blue);
}

.pricing-note {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-note h3 {
  color: var(--primary-blue);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pricing-note p {
  margin: 0 0 1rem 0;
  color: var(--main-gray);
  line-height: 1.6;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.hotel-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hotel-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.hotel-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Updated hotel image styles */
.hotel-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.hotel-image:hover img {
  transform: scale(1.05);
}

.photo-gallery-link {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.photo-gallery-link:hover {
  background-color: var(--orange);
  transform: translateY(-2px);
}

/* Fallback for missing images */
.hotel-image-placeholder {
  height: 200px;
  background-color: var(--lighter-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-gray);
  font-style: italic;
}

.hotel-info {
  padding: 1.5rem;
}

.hotel-location {
  margin-bottom: 1.5rem;
}

.hotel-location h4 {
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.hotel-location p {
  margin: 0 0 0.5rem 0;
  color: var(--main-gray);
  line-height: 1.4;
}

.hotel-location a {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.hotel-location a:hover {
  text-decoration: underline;
  color: var(--primary-blue);
}

.hotel-pricing {
  margin-bottom: 1.5rem;
}

.hotel-pricing h4 {
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.rate-period {
  margin-bottom: 1rem;
}

.period-label {
  display: block;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.room-rates {
  background-color: var(--lighter-gray);
  border-radius: 6px;
  padding: 1rem;
}

.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rate-item:last-child {
  border-bottom: none;
}

.room-type {
  font-weight: 600;
  color: var(--main-gray);
  flex: 1;
  min-width: 120px;
}

.price-cop {
  font-weight: bold;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.price-usd {
  color: var(--main-gray);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.occupancy {
  background-color: var(--yellow);
  color: var(--main-gray);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.booking-info h4 {
  color: var(--primary-blue);
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.booking-info p {
  margin: 0 0 1rem 0;
  color: var(--main-gray);
  line-height: 1.5;
  font-size: 0.95rem;
}

.contact-methods {
  background-color: var(--lighter-blue);
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.contact-methods p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
}

.contact-methods p:last-child {
  margin-bottom: 0;
}

.booking-button {
  display: inline-block;
  background-color: var(--orange);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: center;
}

.booking-button:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

.booking-guidelines {
  margin-bottom: 3rem;
}

.booking-guidelines h2 {
  color: var(--primary-blue);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
}

.guideline-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--green);
}

.guideline-card h3 {
  color: var(--primary-blue);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.guideline-card p {
  margin: 0 0 1rem 0;
  color: var(--main-gray);
  line-height: 1.6;
}

.guideline-card p:last-child {
  margin-bottom: 0;
}

.guideline-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.guideline-card a:hover {
  text-decoration: underline;
  color: var(--orange);
}

.return-navigation {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--lighter-gray);
}

.return-navigation a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.return-navigation a:hover {
  background-color: var(--lighter-blue);
  color: var(--orange);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .partner-hotels-section {
    margin: 10px;
    padding: 1rem;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hotel-card {
    margin-bottom: 1rem;
  }

  .hotel-header h2 {
    font-size: 1.2rem;
  }

  .hotel-info {
    padding: 1rem;
  }

  .hotel-image {
    height: 180px;
  }

  .rate-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .room-type {
    min-width: auto;
    width: 100%;
  }

  .price-cop,
  .price-usd {
    align-self: flex-end;
  }

  .occupancy {
    align-self: flex-start;
  }

  .booking-button {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .contact-methods {
    font-size: 0.85rem;
  }

  .main-venue-reminder,
  .pricing-note,
  .guideline-card {
    padding: 1rem;
  }

  .photo-gallery-link {
    position: static;
    display: block;
    margin-top: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hotels-intro {
    font-size: 1rem;
  }

  .hotel-header {
    padding: 1rem;
  }

  .hotel-header h2 {
    font-size: 1.1rem;
  }

  .hotel-image {
    height: 150px;
  }

  .pricing-note h3,
  .guideline-card h3 {
    font-size: 1.1rem;
  }

  .rate-item {
    padding: 0.5rem 0;
  }

  .room-rates {
    padding: 0.75rem;
  }

  .booking-guidelines h2 {
    font-size: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .main-partner-hotels {
    display: none;
  }

  .partner-hotels-section {
    background-color: white;
    box-shadow: none;
    margin: 0;
    padding: 1rem;
  }

  .hotel-card {
    break-inside: avoid;
    margin-bottom: 2rem;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .hotel-card:hover {
    transform: none;
  }

  .booking-button,
  .photo-gallery-link {
    display: none;
  }

  .hotel-image img {
    filter: grayscale(100%);
  }
}
