/* ============================================================================
   ITINERARY PAGE STYLES - Minimalist Design
   ============================================================================ */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: clamp(14px, 0.95vw, 18px);
}

h1 { font-size: clamp(28px, 4.2vw, 68px); line-height: 1.12; }
h2 { font-size: clamp(24px, 3vw, 46px); line-height: 1.18; }
h3 { font-size: clamp(20px, 2.1vw, 34px); line-height: 1.24; }
h4 { font-size: clamp(17px, 1.4vw, 26px); line-height: 1.3; }

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

/* Navigation - inherits from styles.css */

/* Hero Section */
.itinerary-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 60px 40px;
    max-width: 900px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 32px 0;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-price {
    font-size: 24px;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Titles */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 0 0 60px 0;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b35;
}

/* Quick Facts Section */
.quick-facts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.fact-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.fact-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 12px;
}

.fact-value {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
}

.fact-value.price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Oswald', sans-serif;
}

.contact-info-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.contact-info-item strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Itinerary Section */
.itinerary-section {
    padding: 80px 0;
    background-color: #fff;
    counter-reset: itineraryDay;
}

.day-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    counter-increment: itineraryDay;
}

.day-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.day-card:has(.day-image) {
    grid-template-columns: 1fr minmax(220px, 30vw);
}

.day-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    line-height: 1;
    padding-top: 8px;
    display: none !important;
}

.day-content {
    flex: 1;
}

.day-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.day-title::before {
    content: counter(itineraryDay, decimal-leading-zero) " - ";
    color: #ff6b35;
    font-weight: 700;
}

.day-activities {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.day-activities li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.day-activities li:last-child {
    border-bottom: none;
}

.day-activities li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 18px;
}

.day-note {
    margin-top: 20px;
    padding: 16px 20px;
    background-color: #fff;
    border-left: 3px solid #ff6b35;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.day-image {
    border-radius: 8px;
    overflow: hidden;
    min-height: clamp(220px, 30vw, 460px);
    height: auto;
}

.day-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.expedition-header {
    text-align: center;
    margin: 80px 0 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 8px;
}

.expedition-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Inclusions Section */
.inclusions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.inclusions-card,
.exclusions-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.inclusions-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2ecc71;
    padding-bottom: 16px;
    border-bottom: 3px solid #2ecc71;
}

.exclusions-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e74c3c;
    padding-bottom: 16px;
    border-bottom: 3px solid #e74c3c;
}

.inclusions-list,
.exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li,
.exclusions-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.inclusions-list li:last-child,
.exclusions-list li:last-child {
    border-bottom: none;
}

.inclusions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 20px;
}

.exclusions-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

/* Packing Section */
.packing-section {
    padding: 80px 0;
    background-color: #fff;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.packing-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packing-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.packing-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.packing-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

.packing-text small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin-top: 4px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-details {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-detail-item {
    padding: 20px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

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

.contact-detail-item strong {
    font-weight: 600;
    color: #1a1a1a;
    display: inline-block;
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .day-card:has(.day-image) {
        grid-template-columns: 1fr;
    }
    
    .day-image {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(24px, 7vw, 32px); }
    h2 { font-size: clamp(21px, 6.1vw, 28px); }
    h3 { font-size: clamp(18px, 5.3vw, 24px); }

    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .quick-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .day-card {
        display: block;
        padding: 20px 16px;
    }

    .day-card::after {
        content: "";
        display: block;
        clear: both;
    }
    
    .day-number {
        display: none !important;
    }
    
    .day-title {
        font-size: 21px;
    }

    .day-content {
        display: contents;
    }

    .day-image {
        float: right;
        width: min(38vw, 210px);
        min-height: 0;
        margin: 0 0 10px 12px;
        aspect-ratio: 4 / 3;
    }

    .day-image img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }

    .day-activities li {
        font-size: 14px;
        line-height: 1.45;
        padding-top: 7px;
        padding-bottom: 7px;
        padding-left: 20px;
    }

    .day-note {
        font-size: 13px;
        line-height: 1.45;
        clear: none;
        width: 100%;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    
    .packing-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .contact-details {
        padding: 30px 20px;
    }
    
    .contact-detail-item {
        font-size: 16px;
    }
    
    .contact-detail-item strong {
        display: block;
        margin-bottom: 8px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-price {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .day-card {
        padding: 20px;
    }
    
    .day-number {
        display: none !important;
    }
    
    .day-title {
        font-size: 20px;
    }

    .day-image {
        width: min(40vw, 170px);
        min-height: 140px;
        margin-left: 10px;
    }

    .day-activities li {
        font-size: 13px;
        line-height: 1.4;
        padding-top: 6px;
        padding-bottom: 6px;
        padding-left: 18px;
    }

    .day-note {
        font-size: 12.5px;
        line-height: 1.4;
        padding: 12px 14px;
    }
    
    .packing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expedition-title {
        font-size: 24px;
    }
}

