/* Hotel & Menu Page Styles */

/* Custom color variables */
:root {
  --primary-forest-green: #2E7D32; /* Muted Forest Green */
  --primary-burgundy: #9C4646; /* Softer burgundy red */
  --primary-soft-pink: #F8BBD9; /* Soft Pink */
  --primary-peach: #FFCC80; /* Soft Peach */
  --accent-sage: #81C784; /* Sage Green */
  --accent-rose: #F48FB1; /* Rose Pink */
  --accent-coral: #FFAB91; /* Soft Coral */
  --accent-lavender: #CE93D8; /* Soft Lavender */
  --neutral-dark: #3a4750; /* Less harsh than black */
  --neutral-light: #f8f9fa; /* Light background */
  --neutral-gray: #6c757d;
}

/* Streamlined Header Styling */
.streamlined-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 4rem 2rem 3.5rem;
  margin-top: 65px; /* Reduced space for shorter fixed header */
  position: relative;
  overflow: hidden;
}

.streamlined-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.streamlined-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-forest-green) 0%, var(--primary-soft-pink) 50%, var(--accent-coral) 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.streamlined-header-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.header-icon {
  font-size: 3.5rem;
  color: #F39C12; /* Golden orange */
  margin-bottom: 1.5rem;
}

.streamlined-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  animation: slideInUp 0.8s ease-out;
}

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

.streamlined-title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-forest-green);
  border-radius: 2px;
}

.streamlined-subtitle {
  font-size: 1.3rem;
  color: var(--neutral-gray);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2);
  border-color: #F8BBD9;
  background: rgba(248, 187, 217, 0.1);
}

.stat-item:nth-child(1) i {
  color: #F39C12; /* Golden orange */
}

.stat-item:nth-child(2) i {
  color: #E91E63; /* Pink */
}

.stat-item:nth-child(3) i {
  color: #FF5722; /* Red-orange */
}

/* Page Structure */
.page-content {
    padding: 3rem 0;
}

.toc-container {
    margin-bottom: 2rem;
}

.toc {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.toc h3 {
    display: flex;
    align-items: center;
    margin-top: 0;
    color: #2e7d32;
    font-size: 1.3rem;
}

.toc h3 i {
    margin-right: 10px;
}

.toc ul {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 0;
}

.toc li {
    margin: 10px 0;
}

.toc a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.toc a:hover {
    background-color: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    transform: translateX(5px);
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.section-title {
    color: #2e7d32;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Hotel Section */
.hotel-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hotel-image-container {
    flex: 1;
    min-width: 300px;
}

.hotel-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hotel-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hotel-details {
    flex: 2;
}

.hotel-details h3 {
    color: #333;
    margin-top: 0;
}

.hotel-details h4 {
    color: #2e7d32;
    margin: 1.5rem 0 0.75rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.feature-list li {
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    color: #2e7d32;
}

/* Tariffs Table */
.tariffs-container {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.tariffs-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tariffs-table th,
.tariffs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.tariffs-table th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: 600;
}

.tariffs-table tr:last-child td {
    border-bottom: none;
}

.tariffs-table tbody tr:hover {
    background-color: rgba(46, 125, 50, 0.05);
}

.booking-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.booking-info h4 {
    margin-top: 0;
}

.booking-info a {
    color: #2e7d32;
    text-decoration: none;
}

.booking-info a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Menu Section */
.menu-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-image-container {
    flex: 1;
    min-width: 300px;
}

.menu-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.menu-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.menu-details {
    flex: 2;
}

.menu-details h3 {
    color: #333;
    margin-top: 0;
}

/* Menu Price Section */
.menu-price {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #2e7d32;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-tag i {
    font-size: 1.1rem;
}

.includes-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
}

.menu-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.whatsapp-link,
.download-menu {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: #f5f5f5;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.whatsapp-link {
    background-color: #25D366;
    color: white;
}

.whatsapp-link:hover {
    background-color: #1ea952;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.download-menu {
    background-color: #2e7d32;
    color: white;
}

.download-menu:hover {
    background-color: #1b5e20;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.whatsapp-inline {
    color: #25D366;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-inline:hover {
    text-decoration: underline;
}

/* Menu Tabs */
.menu-days {
    margin-top: 2rem;
}

.day-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.day-tab {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.day-tab:hover {
    background-color: #e0e0e0;
}

.day-tab.active {
    background-color: #2e7d32;
    color: white;
}

.day-content {
    display: none;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.day-content h4 {
    margin-top: 0;
    color: #2e7d32;
    font-size: 1.2rem;
}

.meal {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.meal:last-child {
    margin-bottom: 0;
}

.meal h5 {
    display: flex;
    align-items: center;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.meal h5 i {
    margin-right: 10px;
    color: #2e7d32;
}

.meal ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.meal ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.meal ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2e7d32;
}

.menu-notes {
    margin-top: 2rem;
    background-color: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}

.menu-notes h4 {
    margin-top: 0;
    color: #e65100;
}

.menu-notes ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.menu-notes li {
    margin-bottom: 8px;
}

.menu-notes li:last-child {
    margin-bottom: 0;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
}

#modalImage {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

#modalCaption {
    margin: 15px auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: white;
    padding: 10px 0;
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hotel-info,
    .menu-info {
        flex-direction: row;
    }
    
    .hotel-image-container,
    .menu-image-container {
        max-width: 40%;
    }
}

@media (max-width: 767px) {
    .day-tabs {
        flex-direction: column;
    }
    
    .tariffs-container {
        overflow-x: auto;
    }
    
    .modal-content {
        width: 95%;
    }
    
    #modalCaption {
        width: 95%;
    }

    .hotel-selection {
        flex-direction: column;
    }
}

/* Hotel Selection Tabs */
.hotel-selection {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hotel-tab {
    padding: 1rem 2rem;
    background-color: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #555;
    transition: all 0.3s ease;
}

.hotel-tab:hover {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.hotel-tab.active {
    background-color: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

.hotel-container {
    display: none;
}

.hotel-container.active {
    display: block;
}

/* Simple Tariff Style */
.highlight-tariff {
    background-color: #e8f5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.simple-tariff {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tariff-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2e7d32;
}

.tariff-detail {
    font-size: 1.1rem;
    color: #555;
}
