/* Container Font & Base Overrides */
.content {
    padding: 30px;
    color: #1a2a3a;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Availability Banner Styling */
.availability-banner {
    background-color: #0d2c54;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 4px solid #ffcc00;
    box-shadow: 0 4px 10px rgba(13, 44, 84, 0.15);
}

.availability-banner strong {
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Section Headings - Zante Fun Train Style Blue & Yellow Accent */
.section-title {
    font-size: 1.5rem;
    color: #0d2c54;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 35px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 45px;
    height: 4px;
    background-color: #ffcc00;
    margin-top: 6px;
    border-radius: 2px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-tag {
    background-color: #f4f7f6;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0d2c54;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tag-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Promo Text */
.promo-description {
    font-size: 1.1rem;
    color: #4a5568;
    background: linear-gradient(to right, #f7fafc, #edf2f7);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #0d2c54;
    margin-bottom: 35px;
}

/* Timeline/Itinerary Styling */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

@media (max-width: 600px) {
    .timeline-item {
        flex-direction: column;
    }
}

.time-badge {
    background-color: #ffcc00;
    color: #0d2c54;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(255,204,0,0.3);
}

.time-badge.blue {
    background-color: #0d2c54;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(13,44,84,0.2);
}

.time-badge.yellow {
    background-color: #ff9f1c;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(255,159,28,0.2);
}

.timeline-body {
    font-size: 1rem;
    color: #2d3748;
    padding-top: 3px;
}

/* Menu Display Card */
.menu-display-card {
    background-color: #ffffff;
    border: 2px solid #edf2f7;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 35px;
}

.menu-row {
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f4f8;
}

.menu-row:nth-last-child(2) {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-label {
    display: block;
    font-weight: 700;
    color: #0d2c54;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.menu-text {
    margin: 0;
    color: #4a5568;
    font-size: 1rem;
}

.veg-notice {
    font-style: italic;
    color: #e28743;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 4px;
}

.menu-footer-note {
    margin-top: 20px;
    background-color: #fffaf0;
    border: 1px dashed #feebc8;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #c05621;
}

/* Pricing Cards Grid */
.pricing-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

@media (max-width: 500px) {
    .pricing-cards-container {
        flex-direction: column;
    }
}

.price-box {
    flex: 1;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-box:hover {
    transform: translateY(-3px);
}

.feature-adult {
    border-color: #0d2c54;
    background-color: #f0f4f8;
    box-shadow: 0 4px 12px rgba(13,44,84,0.05);
}

.feature-child {
    border-color: #ffcc00;
    background-color: #fffdf5;
    box-shadow: 0 4px 12px rgba(255,204,0,0.05);
}

.price-type {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d2c54;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d2c54;
    line-height: 1;
    margin-bottom: 2px;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    margin-left: 2px;
}

.price-basis {
    font-size: 0.85rem;
    color: #718096;
    text-transform: lowercase;
}

/* Base Styles for Desktop Layout */
.table-container {
    width: 100%;
    margin-top: 25px;
}

.responsive-price-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

.responsive-price-table thead tr {
    background-color: #0d2c54;
    color: #ffffff;
    text-align: left;
}

.responsive-price-table th {
    padding: 12px 15px;
    font-weight: 700;
}

.responsive-price-table th:first-child { border-top-left-radius: 8px; }
.responsive-price-table th:last-child { border-top-right-radius: 8px; }

.responsive-price-table td {
    padding: 14px 15px;
    color: #4a5568;
    border-bottom: 1px solid #e1e8ed;
}

.responsive-price-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.responsive-price-table .resort-name {
    font-weight: 700;
    color: #0d2c54;
}

.responsive-price-table .price-adult {
    font-weight: 700;
    color: #0d2c54;
}

.responsive-price-table .price-child {
    font-weight: 700;
    color: #ff9f1c;
}

.text-right {
    text-align: right;
}

/* --- Mobile Responsive Magic --- */
@media screen and (max-width: 600px) {
    /* Hide table headers entirely */
    .responsive-price-table thead {
        display: none;
    }

    /* Force the table, rows, and cells to behave like block cards */
    .responsive-price-table, 
    .responsive-price-table tbody, 
    .responsive-price-table tr, 
    .responsive-price-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* Style each row like a separate tourism card block */
    .responsive-price-table tr {
        background-color: #ffffff !important;
        border: 2px solid #edf2f7;
        border-radius: 12px;
        margin-bottom: 15px;
        padding: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    /* Format rows into a clean left-right dynamic line */
    .responsive-price-table td {
        text-align: right;
        padding: 8px 12px;
        border-bottom: 1px dashed #edf2f7;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .responsive-price-table td:last-child {
        border-bottom: none;
    }

    /* Inject the label name on the left side */
    .responsive-price-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #718096;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left;
    }

    /* Specific row alignments on mobile elements */
    .responsive-price-table .resort-name {
        font-size: 1.1rem;
        border-bottom: 2px solid #0d2c54;
        padding-bottom: 6px;
        margin-bottom: 4px;
        color: #0d2c54;
    }

    .responsive-price-table .price-adult,
    .responsive-price-table .price-child {
        font-size: 1.1rem;
    }
}