/* ==============================
   Retro Skin
   ============================== */

/* Retro skin with vintage aesthetic */
/* Warm colors, serif fonts, and retro styling elements */

:root {
    /* Retro color palette */
    --primary-color: #8B4513;
    --primary-hover: #A0522D;
    --primary-bg: #fdf6e3;
    --text-color: #2F2F2F;
    --text-light: #666666;
    --border-color: #D2691E;
    --accent-color: #FF8C00;
    
    /* Retro fonts */
    --font-base: 'Courier New', 'Courier', monospace;
    --font-alt: 'Georgia', 'Times New Roman', serif;
    --font-display: 'Palatino', 'Palatino Linotype', 'Palatino LT STD', 'Book Antiqua', Georgia, serif;
    
    /* Border radius - No rounded corners for retro feel */
    --border-radius-sm: 0;
    --border-radius-md: 0;
    --border-radius-lg: 0;
    --border-radius-xl: 0;
    --border-radius-full: 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
    
    /* Colors - Retro palette */
    --background-color: #f7fafc;
    --error-color: #e53e3e;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --info-color: #3182ce;
    --light-gray: #edf2f7;
    --dark-gray: #1a202c;
    
    /* Typography - Retro serif fonts */
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --line-height-base: 1.6;
    --line-height-tight: 1.3;
    --line-height-loose: 1.8;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Layout */
    --container-max-width: 1280px;
    --container-padding: var(--spacing-lg);
}

/* Retro skin specific overrides - DISPLAY ONLY */
body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-base);
    line-height: var(--line-height-base);
}

/* Trip header styling */
.trip-header h1 {
    font-family: var(--font-alt);
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.trip-description {
    font-style: italic;
    color: var(--text-light);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin-left: 0;
}

/* Sidebar styling */
.trip-sidebar {
    background-color: var(--primary-bg);
    border: 2px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow: visible;
}

.trip-sidebar .sidebar-content-box {
    background-color: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 12px;
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow: visible;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Force no border radius on sidebar elements */
.trip-sidebar,
.trip-sidebar .date-item,
.trip-sidebar .date-item.active,
.trip-sidebar .layover-item {
    border-radius: 0;
}

/* Date items - COLORS AND FONTS ONLY */
.trip-sidebar .date-item {
    color: #333;
    font-size: 0.9em;
    line-height: 1.2;
    border-radius: 0;
    background-color: transparent;
    border: none;
    white-space: normal;
}

.trip-sidebar .date-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    text-decoration: none;
}

.trip-sidebar .date-item.active {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
}

.trip-sidebar .date-item.active:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.trip-title {
    font-family: var(--font-alt);
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trip-title a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.trip-title a:hover {
    border-bottom-color: var(--primary-color);
}

/* Content box styling */
.content-box,
.gallery-box,
.map-box {
    background-color: var(--primary-bg) !important;
    border: 2px solid var(--border-color);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
}

/* Daily didactic styling */
.daily-didactic {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.daily-didactic h3 {
    font-family: var(--font-alt);
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.daily-didactic p {
    color: var(--text-color);
    font-family: var(--font-base);
    line-height: var(--line-height-base);
}

/* Day header styling */
.day-header h1 {
    font-family: var(--font-alt);
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.day-header h2 {
    font-family: var(--font-alt);
    color: var(--text-light);
    font-style: italic;
}

/* Gallery styling */
.gallery {
    border-radius: 0;
}

.gallery-item {
    border-radius: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.gallery-box,
.gallery-item {
    border-radius: 0;
}

.gallery-item:hover {
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    border-radius: 0;
}

.gallery-item:hover img {
    border-radius: 0;
}

/* Button styling */
.btn {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    font-family: var(--font-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* Navigation links */
.nav-link {
    color: var(--primary-color);
    font-family: var(--font-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: var(--primary-hover);
}

/* Footer styling */
.footer-box {
    background: var(--primary-bg);
    border-radius: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.footer-box a {
    color: var(--primary-color);
    font-family: var(--font-base);
    font-weight: 600;
}

.footer-box a:hover {
    color: var(--primary-hover);
}

/* Layover items */
.layover-item {
    border-radius: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.map-box,
.layover-item {
    border-radius: 0;
}

.layover-item:hover {
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.layover-link {
    color: var(--primary-color);
    font-family: var(--font-base);
}

.layover-content i {
    color: var(--accent-color);
}

/* Sidebar layover items */
.trip-sidebar .date-item.layover-item {
    border-left: 3px solid var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.trip-sidebar .date-item.layover-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.2);
    color: var(--primary-color);
}

.trip-sidebar .date-item.layover-item.active {
    background-color: var(--primary-color);
    color: white;
    border-left: 3px solid var(--primary-color);
}

.trip-sidebar .date-item.layover-item.active:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Key info styling */
.key-info {
    background: #f7fafc;
    border-radius: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.info-item {
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-base);
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Menu toggle styling */
.menu-toggle {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.menu-toggle:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Lightbox styling */
.lightbox {
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    border-radius: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

/* Mobile menu layover items */
#mobile-menu .mobile-day-menu a.layover-item {
    border-left: 3px solid var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 0;
}

#mobile-menu .mobile-day-menu a.layover-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.2);
    color: var(--primary-color);
}

#mobile-menu .mobile-day-menu a.layover-item.active {
    background-color: var(--primary-color);
    color: white;
    border-left: 3px solid var(--primary-color);
}

#mobile-menu .mobile-day-menu a.layover-item.active:hover {
    background-color: var(--primary-color);
    color: white;
} 







