/* Additional CSS for Enhanced Day Cards */

/* Tour Section Styling */
.tour-section {
    margin: 25px 0;
    padding: 20px;
    background: var(--light-sand);
    border-radius: 15px;
    border-left: 4px solid var(--rich-gold);
}

.tour-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-title::before {
    content: '🏛️';
    font-size: 1.1rem;
}

/* Site Highlight Styling */
.site-highlight {
    margin: 20px 0;
    padding: 18px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(197, 149, 91, 0.2);
    transition: all 0.3s ease;
}

.site-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(197, 149, 91, 0.15);
    border-color: var(--rich-gold);
}

.site-name {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-name::before {
    content: '🏛️';
    font-size: 1rem;
}

/* Optional Experience Styling */
.optional-experience {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff5e6 0%, #fff9f0 100%);
    border-radius: 15px;
    border: 2px dashed var(--rich-gold);
    position: relative;
    overflow: hidden;
}

.optional-experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--rich-gold);
    border-radius: 0 18px 0 100%;
    opacity: 0.1;
}

.optional-experience::after {
    content: 'OPTIONAL';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--rich-gold);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.optional-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.optional-title::before {
    content: '✨';
    font-size: 1rem;
}

/* Excursion Details List */
.excursion-details {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

.excursion-details li {
    padding: 8px 0 8px 25px;
    color: var(--charcoal-deep);
    position: relative;
    border-bottom: 1px solid rgba(197, 149, 91, 0.1);
}

.excursion-details li:last-child {
    border-bottom: none;
}

.excursion-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rich-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .tour-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .site-highlight {
        padding: 15px;
        margin: 15px 0;
    }
    
    .optional-experience {
        padding: 15px;
        margin: 20px 0;
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    .site-name {
        font-size: 1rem;
    }
    
    .optional-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tour-section,
    .site-highlight,
    .optional-experience {
        padding: 12px;
    }
    
    .excursion-details li {
        padding-left: 20px;
        font-size: 0.95rem;
    }
}

/* Summary sections styling */
.summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.summary-column {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #d4af37;
}

.summary-column h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.list-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-items li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.list-items li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .summary-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .summary-column {
        min-width: auto;
    }
}