/* Accommodation and Food Pages CSS */

/* Overall layout styling */
.rules-section {
  padding: 2.5rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.rules-section:nth-child(even) {
  background-color: var(--neutral-light);
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: var(--primary-dark);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--primary);
}

/* Hotel Tabs Styling */
.hotel-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--neutral-light, #e9ecef);
}

.hotel-tab {
  background: none;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-dark, #6c757d);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.hotel-tab:hover {
  color: var(--primary-orange, #ff6900);
  background-color: rgba(255, 105, 0, 0.05);
}

.hotel-tab.active {
  color: var(--primary-orange, #ff6900);
  border-bottom-color: var(--primary-orange, #ff6900);
  background-color: rgba(255, 105, 0, 0.08);
}

/* Hotel Content Styling */
.hotel-content {
  display: none;
}

.hotel-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hotel and Dining Container Styling */
.hotel-container,
.menu-container,
.dining-container,
.rates-container,
.pricing-container {
  margin-top: 2rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Hotel Details Section */
.hotel-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Hotel Main Content Layout */
.hotel-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
  align-items: start;
}

.hotel-image-container {
  position: relative;
}

.main-hotel-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.main-hotel-image:hover {
  transform: translateY(-5px);
}



.hotel-details-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-card {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  font-size: 1.8rem;
  color: var(--primary-orange, #ff6900);
  margin-top: 0.2rem;
}

.detail-content h4 {
  color: var(--primary-orange, #ff6900);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.detail-content p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item.large .gallery-image {
  height: 300px;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Room Rates Section */
.rate-category {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.rate-category.premium {
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.05), rgba(255, 193, 7, 0.05));
  border: 2px solid rgba(255, 105, 0, 0.2);
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.category-icon {
  font-size: 2.5rem;
  color: var(--primary-orange, #ff6900);
  margin-bottom: 1rem;
}

.category-header h3 {
  color: var(--primary-orange, #ff6900);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-header p {
  color: var(--neutral-dark, #343a40);
  font-size: 0.95rem;
  opacity: 0.8;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.rate-card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(255, 105, 0, 0.1);
  transition: all 0.3s ease;
}

.rate-card.premium {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 105, 0, 0.1));
  border-color: rgba(255, 105, 0, 0.3);
}

.rate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 105, 0, 0.2);
}

.rate-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-dark, #343a40);
  margin-bottom: 0.3rem;
}

.rate-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--neutral-dark, #6c757d);
  margin-bottom: 0.8rem;
  font-style: italic;
}

.rate-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-orange, #ff6900);
  margin-bottom: 0.3rem;
}

.currency {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.7;
}

.rate-period {
  font-size: 0.9rem;
  color: var(--neutral-dark, #343a40);
  opacity: 0.6;
}

.pricing-note {
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--accent-yellow, #ffc107);
}

.note-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.note-content i {
  color: var(--accent-yellow, #ffc107);
  font-size: 1.2rem;
}

/* Dining Options */
.dining-option {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.option-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.option-icon {
  font-size: 2.5rem;
  color: var(--primary-orange, #ff6900);
  margin-bottom: 1rem;
}

.option-header h3 {
  color: var(--primary-orange, #ff6900);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.option-header p {
  color: var(--neutral-dark, #343a40);
  font-size: 0.95rem;
  opacity: 0.8;
}

.option-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(255, 105, 0, 0.05);
  border-radius: 8px;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-orange, #ff6900);
  margin-top: 0.2rem;
}

.feature-item h4 {
  color: var(--primary-orange, #ff6900);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

/* Restaurant List */
.restaurant-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.restaurant-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: rgba(255, 105, 0, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--primary-orange, #ff6900);
}

.restaurant-info h4 {
  color: var(--primary-orange, #ff6900);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.restaurant-info p {
  font-size: 0.85rem;
  color: var(--neutral-dark, #343a40);
  opacity: 0.7;
}

.restaurant-distance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-orange, #ff6900);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Dietary Options Grid */
.dietary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.dietary-item {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 105, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.dietary-item:hover {
  transform: translateY(-3px);
}

.dietary-item i {
  font-size: 2rem;
  color: var(--primary-orange, #ff6900);
  margin-bottom: 1rem;
}

.dietary-item h4 {
  color: var(--primary-orange, #ff6900);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.dietary-item p {
  font-size: 0.9rem;
  color: var(--neutral-dark, #343a40);
  opacity: 0.8;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hotel-main-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .rate-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .option-features {
    grid-template-columns: 1fr;
  }
  
  .restaurant-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .dietary-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-buttons .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hotel-container,
  .menu-container,
  .dining-container,
  .rates-container {
    padding: 0 1rem;
  }
  
  .rate-category,
  .dining-option {
    padding: 1.5rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .gallery-item.large .gallery-image {
    height: 220px;
  }
  
  .rate-price {
    font-size: 1.5rem;
  }
}

/* Menu Main Content Layout */
.menu-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  align-items: start;
}

/* Left Column Layout */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-image-container {
  position: relative;
  margin-bottom: 0;
}

.main-menu-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Section with Large Gap */
.whatsapp-section {
  margin-top: 4rem;
}

.contact-subtitle {
  color: var(--primary-orange, #ff6900);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Updated WhatsApp Card for Column Layout */
.whatsapp-section .whatsapp-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  width: 100%;
  margin: 0;
}

.whatsapp-section .whatsapp-content h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.whatsapp-section .whatsapp-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

/* Compact Daily Menu Styling */
.daily-menu-compact {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.menu-day-compact {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
}

.menu-day-compact:not(:last-child) {
  border-bottom: 1px solid var(--neutral-light, #f5f5f5);
}

.menu-date-compact {
  color: var(--primary-orange, #ff6900);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.meal-compact {
  margin: 0.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.meal-type-compact {
  color: var(--primary-dark, #2c3e50);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.meal-description-compact {
  color: var(--text-secondary, #666);
  font-size: 0.85rem;
  line-height: 1.3;
  margin-left: 0.5rem;
}

.menu-note {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--primary-orange, #ff6900);
  text-align: center;
}

.menu-note p {
  font-weight: 600;
  color: var(--primary-dark, #2c3e50);
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

/* WhatsApp Button Styling */

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

.whatsapp-note {
  font-size: 0.85rem;
  margin-top: 1rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Rate Content Styling */
.rate-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.rate-content.active {
  display: block;
}

/* Amenities List Styling */
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-light, #e9ecef);
  position: relative;
  padding-left: 1.5rem;
}

.amenities-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-orange, #ff6900);
  font-weight: bold;
}

.amenities-list li:last-child {
  border-bottom: none;
}

/* Reservation CTA styling */
.reservation-cta {
  font-weight: bold;
  color: var(--primary-orange, #ff6900);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Mobile responsiveness for hotel tabs and accommodation */
@media (max-width: 768px) {
  .hotel-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hotel-tab {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border-bottom: none;
    border: 2px solid transparent;
  }
  
  .hotel-tab.active {
    border-color: var(--primary-orange, #ff6900);
    background-color: rgba(255, 105, 0, 0.1);
  }
  
  .hotel-main-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hotel-details-right {
    gap: 1rem;
  }
  
  .detail-card {
    padding: 1rem;
  }
  
  .detail-content h4 {
    font-size: 1.1rem;
  }
  
  .detail-content p {
    font-size: 0.85rem;
  }
  
  .rate-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile responsiveness for menu */
@media (max-width: 768px) {
  .menu-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .left-column {
    order: 1;
  }
  
  .daily-menu-compact {
    padding: 1rem;
    order: 0;
  }
  
  .whatsapp-section {
    margin-top: 2rem;
  }
  
  .menu-date-compact {
    font-size: 0.9rem;
  }
  
  .meal-type-compact {
    font-size: 0.8rem;
  }
  
  .meal-description-compact {
    font-size: 0.8rem;
  }
  
  .whatsapp-section .whatsapp-card {
    padding: 1.5rem;
  }
  
  .whatsapp-section .whatsapp-content h4 {
    font-size: 1.1rem;
  }
  
  .btn-whatsapp {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
  
  .contact-subtitle {
    font-size: 1.2rem;
  }
}