@charset "UTF-8";
/* css/itinerary.css */

.itinerary-content-wrapper {
    background-color: #f9f9f9;
    padding: 64px 5%;
}

.itinerary-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 
   Hero specific tweaks (Slideshow handles the background)
*/
.itinerary-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 32px;
}

.meta-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-orange, #F37021);
    letter-spacing: 1px;
}

.meta-value {
    background: rgba(255,255,255,0.2);
    padding: 4px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    font-size: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    color: whitesmoke;
}

/* 
   Overview Section
*/
.overview-card {
    background: #ffffff;
    padding: 64px 48px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 64px;
    text-align: center;
}

.overview-card .eyebrow {
    color: var(--theme-orange, #F37021);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.overview-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #111;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.trip-highlights-box {
    background: #fafafa;
    border-left: 4px solid var(--theme-orange, #F37021);
    padding: 40px;
    border-radius: 0 8px 8px 0;
    text-align: left;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trip-highlights-box h3 {
    margin-top: 0;
    color: var(--theme-green);
    margin-bottom: 24px;
}

.trip-highlights-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.trip-highlights-box li {
    position: relative;
    padding-left: 25px;
    color: #111;
    line-height: 1.5;
}

.trip-highlights-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--theme-green, #2c3e20);
    font-weight: bold;
}

.overview-highlights {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background-color: var(--theme-orange, #F37021);
    color: #fff;
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d95e19;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243,112,33,0.3);
}

/* 
   Included / Excluded Grid
*/
.itinerary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}

.info-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border-top: 5px solid var(--theme-green, #2c3e20);
}

.info-card:nth-child(2) {
    border-top-color: #d9534f;
}

.info-card h2 {
    color: var(--theme-green);
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 29px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #111;
    position: relative;
    padding-left: 35px;
    line-height: 1.5;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card:nth-child(1) li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--theme-green, #2c3e20);
    font-weight: bold;
    font-size: 18px;
}

.info-card:nth-child(2) li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #d9534f;
    font-weight: bold;
    font-size: 18px;
}

/* 
   Accordion
*/
.itinerary-section-alt {
    margin-bottom: 80px;
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: 40px;
    color: var(--theme-green);
    margin: 0;
}

.section-heading .eyebrow {
    color: var(--theme-orange, #F37021);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.day-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 48px auto;
}

.day-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.day-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 29px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.day-toggle:hover {
    background: #fdfdfd;
}

.day-toggle__main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.day-badge {
    background: var(--theme-orange, #F37021);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.day-toggle__content strong {
    font-size: 20px;
    color: var(--theme-green);
    display: block;
}

.day-summary {
    display: none;
    color: #111;
    margin: 8px 0 0 0;
    font-size: 16px;
    line-height: 1.6;
}

.day-summary.is-visible {
    display: block;
}

.day-toggle__icon {
    font-size: 29px;
    font-weight: 300;
    color: var(--theme-orange, #F37021);
}

.day-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}

.day-panel.is-open {
    max-height: 2000px;
    padding: 40px;
    border-top: 1px solid #eaeaea;
}

.day-panel__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.day-panel__grid h3 {
    font-size: 18px;
    color: var(--theme-orange, #F37021);
    margin-top: 0;
    margin-bottom: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-panel__grid p {
    color: #111;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

.packages-section {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.packages-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--theme-green);
    margin-bottom: 48px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.itinerary-section-alt {
    text-align: center;
}

@media (max-width: 768px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
    }
    
    .day-toggle__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .overview-card, .info-card {
        padding: 32px 24px;
    }
    
    .day-toggle {
        padding: 16px 20px;
    }
}

/* Local Quill rich-text styling (replaces external CDN dependency) */
.ql-editor {
    box-sizing: border-box;
    line-height: 1.8;
    outline: none;
    padding: 0;
}
.ql-editor p {
    margin: 0 0 1em 0;
    line-height: 1.8;
}
.ql-editor ul, .ql-editor ol {
    padding-left: 1.5em;
    margin: 0 0 1em 0;
}
.ql-editor li {
    margin-bottom: 0.5em;
}
.ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4 {
    margin: 1em 0 0.5em 0;
    color: var(--theme-green, #2c3e20);
}

