/* RubenRoams.com - Modern Travel Blog */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Travel-inspired color palette */
    --ocean-blue: #1a5f7a;
    --sunset-orange: #ff6b35;
    --mountain-green: #57886c;
    --desert-sand: #f4e5d3;
    --sunrise-gold: #ffcc5c;
    --deep-teal: #0e2954;
    --coral-pink: #ff8b94;
    --sage-green: #a4b8a3;
    
    /* Core colors */
    --primary-color: var(--ocean-blue);
    --primary-dark: var(--deep-teal);
    --accent-color: var(--sunset-orange);
    --secondary-color: var(--mountain-green);
    --warm-accent: var(--sunrise-gold);
    --soft-accent: var(--coral-pink);
    
    /* Text colors */
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-light: #8b9dc3;
    --text-muted: #b8c5d1;
    
    /* Background colors */
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;
    --bg-light: #f7f9fc;
    --bg-overlay: rgba(26, 95, 122, 0.05);
    
    /* Border and shadow */
    --border-light: #e8ecf1;
    --border-soft: #d4dce6;
    --shadow-soft: 0 2px 20px rgba(26, 95, 122, 0.08);
    --shadow-medium: 0 4px 30px rgba(26, 95, 122, 0.12);
    --shadow-strong: 0 8px 40px rgba(26, 95, 122, 0.16);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent-color);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--warm-accent), var(--secondary-color));
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo {
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 95, 122, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: var(--bg-overlay);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    position: relative;
}

/* Decorative Elements */
.main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--warm-accent) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
}

.main::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-accent) 0%, transparent 60%);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

/* Modern Travel Dashboard */
.ruben-status {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--space-xl) 0;
    position: relative;
}

.status-widget {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.status-widget:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

/* Header with location */
.status-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.status-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.location-display {
    position: relative;
    z-index: 2;
}

.city {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    background: linear-gradient(45deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.country {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: var(--space-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Dashboard Grid */
.status-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    height: 280px;
}

.status-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
    border-right: 1px solid #e2e8f0;
}

.info-item {
    display: flex;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-icon.time {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.info-icon.activity {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

/* Map Section */
.map-section {
    position: relative;
    background: #f1f5f9;
    overflow: hidden;
}

.mini-map {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-map:hover {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.mini-map:hover .map-overlay {
    opacity: 1;
}

.map-click-hint {
    text-align: center;
    color: white;
    font-weight: 600;
}

.map-click-hint span {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-xs);
    animation: pulse 2s infinite;
}

.map-click-hint small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Float animation for header background */
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.map-placeholder small {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Latest Post Section */
.latest-post {
    background: var(--bg-white);
    padding: var(--space-xxl) 0;
    position: relative;
}

.latest-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--warm-accent), var(--secondary-color), transparent);
}

.post-header {
    margin-bottom: var(--space-xl);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.post-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--warm-accent));
    border-radius: 2px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: var(--space-lg);
}

.post-meta span {
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--bg-light), var(--bg-overlay));
    border-radius: var(--radius-lg);
    font-weight: 500;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.post-meta span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.post-meta span:hover::before {
    left: 100%;
}

.post-meta span:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.post-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), transparent, var(--secondary-color));
    opacity: 0.3;
    border-radius: 1px;
}

.post-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.post-image {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    group: true;
}

.post-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.post-image:hover::before {
    opacity: 1;
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-image:hover img {
    transform: scale(1.05);
}

.post-image figcaption {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.9), rgba(247, 249, 252, 0.9));
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}

.post-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}


/* Enhanced Post Typography */
.post-text h1,
.post-text h2,
.post-text h3 {
    font-family: var(--font-heading);
    margin: var(--space-xl) 0 var(--space-md) 0;
    color: var(--text-dark);
    position: relative;
}

.post-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.post-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.post-text h2::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.post-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.post-text p {
    margin-bottom: var(--space-md);
    text-align: justify;
}

.post-text p:first-of-type {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.post-text ul,
.post-text ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.post-text li {
    margin-bottom: var(--space-sm);
    position: relative;
}

.post-text ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.post-text blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    font-size: 1.1rem;
}

.post-text blockquote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.post-text code {
    background: linear-gradient(135deg, var(--desert-sand), var(--bg-light));
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    border: 1px solid var(--border-soft);
}

.post-text pre {
    background: var(--text-dark);
    color: var(--bg-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-medium);
}

.post-text pre code {
    background: none;
    padding: 0;
    color: var(--bg-cream);
    border: none;
}

.post-text a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.post-text a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.post-text strong {
    font-weight: 600;
    color: var(--primary-color);
}

.post-text em {
    font-style: italic;
    color: var(--text-medium);
}

.post-footer {
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--space-xl);
    border-top: 2px solid transparent;
    background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
                linear-gradient(90deg, var(--accent-color), var(--warm-accent), var(--secondary-color)) border-box;
    border-image: linear-gradient(90deg, var(--accent-color), var(--warm-accent), var(--secondary-color)) 1;
}

.post-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: var(--space-lg);
}

.post-stats span {
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    border-radius: var(--radius-xl);
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.post-stats span:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, var(--warm-accent), var(--accent-color));
    color: white;
    box-shadow: var(--shadow-medium);
}

.post-stats span:first-child::before {
    content: '📖';
    margin-right: var(--space-xs);
}

.post-stats span:nth-child(2)::before {
    content: '✍️';
    margin-right: var(--space-xs);
}

.post-stats span:last-child::before {
    content: '🗓️';
    margin-right: var(--space-xs);
}

/* Post Navigation */
.post-navigation {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    color: var(--text-dark);
    max-width: 400px;
    flex: 1;
    min-width: 300px;
}

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

.nav-previous:hover,
.nav-next:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--accent-color), var(--warm-accent));
    color: white;
    border-color: var(--accent-color);
}

.nav-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-previous:hover .nav-label,
.nav-next:hover .nav-label {
    color: rgba(255, 255, 255, 0.9);
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.nav-previous:hover .nav-title,
.nav-next:hover .nav-title {
    color: white;
}

.nav-date {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
}

.nav-previous:hover .nav-date,
.nav-next:hover .nav-date {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive navigation */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .nav-previous,
    .nav-next {
        max-width: none;
        min-width: unset;
    }
    
    .nav-next {
        text-align: left;
    }
}

/* No Posts State */
.no-posts {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    padding: var(--space-xxl) 0;
    position: relative;
}

.no-posts::before {
    content: '🗺️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    opacity: 0.05;
    z-index: 1;
}

.empty-state {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.empty-state h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.empty-state h1::after {
    content: ' 🌟';
    display: inline-block;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.empty-state p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Journey Stats Section */
.journey-stats {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--desert-sand) 50%, var(--bg-light) 100%);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.journey-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(87, 136, 108, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 204, 92, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff6b35" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 1;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-xxl);
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


@keyframes fly {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--warm-accent), var(--secondary-color), var(--ocean-blue));
    background-size: 300% 300%;
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.stat-card:nth-child(1) .stat-number::after { content: '🚀'; }
.stat-card:nth-child(2) .stat-number::after { content: '⏰'; }
.stat-card:nth-child(3) .stat-number::after { content: '🌍'; }
.stat-card:nth-child(4) .stat-number::after { content: '🏙️'; }
.stat-card:nth-child(5) .stat-number::after { content: '📝'; }
.stat-card:nth-child(6) .stat-number::after { content: '💭'; }

.stat-card .stat-number::after {
    display: block;
    font-size: 1.5rem;
    margin-top: var(--space-xs);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--text-dark) 50%, var(--ocean-blue) 100%);
    color: white;
    padding: var(--space-xxl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 92, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--warm-accent), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--warm-accent));
    border-radius: 1px;
}

.footer-section:nth-child(1) h3::before { content: '🎯 '; }
.footer-section:nth-child(2) h3::before { content: '📅 '; }
.footer-section:nth-child(3) h3::before { content: '🌟 '; }

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-md);
    transition: color 0.3s ease;
}

.footer-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.footer-section li:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section strong {
    color: var(--warm-accent);
    font-weight: 600;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: var(--space-md);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .post-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav-container {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
        padding: var(--space-md) 0;
    }
    
    .nav-links {
        gap: var(--space-sm);
        flex-wrap: wrap;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .status-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .location-details {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Travel Dashboard - Tablet */
    .status-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .status-info {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: var(--space-lg);
    }
    
    .map-section {
        height: 240px;
    }
    
    .city {
        font-size: 2.8rem;
    }
    
    .country {
        font-size: 1rem;
    }
    
    .info-item {
        padding: var(--space-sm) 0;
    }
    
    .status-title {
        font-size: 2rem;
    }
    
    .post-title {
        font-size: 2.2rem;
    }
    
    
    .post-text h2::before {
        display: none;
    }
    
    .post-meta {
        gap: var(--space-sm);
        justify-content: center;
    }
    
    .post-images {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .post-stats {
        gap: var(--space-sm);
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: var(--space-md);
    }
    
    .stat-card {
        padding: var(--space-lg);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .empty-state h1 {
        font-size: 2.2rem;
    }
    
    .no-posts::before {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .city {
        font-size: 2rem;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-card {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Travel Dashboard - Mobile */
    .status-widget {
        border-radius: 16px;
        margin: 0 var(--space-sm);
    }
    
    .status-header {
        padding: var(--space-lg);
    }
    
    .city {
        font-size: 2.5rem;
    }
    
    .country {
        font-size: 0.9rem;
    }
    
    .status-info {
        padding: var(--space-md);
    }
    
    .info-item {
        padding: var(--space-sm) 0;
    }
    
    .info-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-right: var(--space-sm);
    }
    
    .info-label {
        font-size: 0.7rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .map-section {
        height: 200px;
    }
    
    .nav-links a {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.9rem;
    }
}

/* Performance Optimizations */
.post-image img,
.mini-map {
    will-change: transform;
}

/* Travel Map Styles */
#travel-map {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    z-index: 10;
    position: relative;
}

/* Custom Travel Marker */
.travel-marker {
    background: transparent !important;
    border: none !important;
}

.marker-pin {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon {
    font-size: 24px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-ring 2s ease-out infinite;
}

.marker-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite 0.5s;
}

@keyframes pulse-ring {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.1);
    }
    80% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Map Popup Styling */
.leaflet-popup-content-wrapper {
    background: var(--bg-white) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-strong) !important;
    border: 1px solid var(--border-light) !important;
}

.leaflet-popup-tip {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-light) !important;
    border-top: none !important;
    border-left: none !important;
}

.map-popup {
    padding: var(--space-sm);
    text-align: center;
    min-width: 140px;
}

.map-popup h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.map-popup p {
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
    font-weight: 600;
}

.map-popup small {
    color: var(--text-medium);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Override Leaflet default styles */
.leaflet-container {
    background: transparent !important;
}

.leaflet-control-container {
    display: none;
}

/* Mini Map Hover Overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 20;
}

.mini-map:hover .map-overlay {
    opacity: 1;
}

.map-click-hint {
    text-align: center;
    color: white;
    font-weight: 600;
}

.map-click-hint span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.map-click-hint small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Full Screen Map Modal */
.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.map-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
    width: 90vw;
    height: 80vh;
    max-width: 1000px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: scale(0.8) translateY(-20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.map-modal-header {
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--ocean-blue));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.map-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.map-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.map-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#full-travel-map {
    flex: 1;
    width: 100%;
    background: var(--bg-light);
}

.map-modal-footer {
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    border-top: 1px solid var(--border-light);
}

.map-modal-footer .location-info {
    text-align: center;
}

.map-modal-footer h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.map-modal-footer p {
    color: var(--text-medium);
    margin-bottom: var(--space-xs);
}

.map-modal-footer small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Full Screen Map Marker */
.travel-marker-full {
    background: transparent !important;
    border: none !important;
}

.marker-pin-full {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon-full {
    font-size: 32px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

.marker-pulse-full {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-ring-full 3s ease-out infinite;
}

.marker-pulse-full::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse-ring-full 3s ease-out infinite 1s;
}

.marker-pulse-full::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--warm-accent);
    border-radius: 50%;
    animation: pulse-ring-full 3s ease-out infinite 2s;
}

@keyframes pulse-ring-full {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.1);
    }
    70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Full Screen Map Popup */
.map-popup-full {
    padding: var(--space-md);
    text-align: center;
    min-width: 200px;
}

.map-popup-full h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.map-popup-full p {
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.map-popup-full strong {
    font-weight: 600;
    color: var(--accent-color);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .map-modal-content {
        width: 95vw;
        height: 85vh;
        margin: var(--space-md);
    }
    
    .map-modal-header {
        padding: var(--space-md) var(--space-lg);
    }
    
    .map-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .map-modal-footer {
        padding: var(--space-md) var(--space-lg);
    }
}

/* Placeholder Pages Styling */
.placeholder-page {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 50%, var(--bg-light) 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* About Page Styles */
.about-intro,
.about-section,
.about-cta {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-intro p,
.about-section p,
.about-cta p {
    margin-bottom: var(--space-md);
    text-align: justify;
}

/* About Page Profile Image */
.about-image-container {
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
}

.about-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-white);
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-profile-image:hover {
    transform: scale(1.05);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--accent-color), var(--warm-accent), var(--secondary-color));
    border-radius: 50%;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

.about-image-container::after {
    content: '✈️';
    position: absolute;
    top: -5px;
    right: 10px;
    font-size: 2rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.placeholder-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 95, 122, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(87, 136, 108, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.placeholder-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-xxl);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: var(--space-lg);
    animation: float 3s ease-in-out infinite;
}

.placeholder-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.placeholder-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.placeholder-details {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.placeholder-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.placeholder-features li {
    padding: var(--space-sm) 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: var(--space-lg);
    transition: all 0.3s ease;
}

.placeholder-features li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.placeholder-features li:last-child {
    border-bottom: none;
}

.placeholder-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--space-xl);
    background: var(--bg-overlay);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.back-home-btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--ocean-blue));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, var(--ocean-blue), var(--primary-color));
}

/* Responsive Placeholder Pages */
@media (max-width: 768px) {
    .placeholder-content {
        padding: var(--space-xl);
    }
    
    .placeholder-icon {
        font-size: 4rem;
    }
    
    .placeholder-title {
        font-size: 2rem;
    }
    
    .placeholder-message {
        font-size: 1.1rem;
    }
    
    .placeholder-features {
        max-width: 100%;
    }
    
    .about-profile-image {
        width: 150px;
        height: 150px;
    }
    
    .about-image-container::after {
        font-size: 1.5rem;
        top: -2px;
        right: 5px;
    }
}

/* Posts Archive Page */
.posts-archive {
    padding: var(--space-xxl) 0;
    min-height: 70vh;
}

.posts-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.posts-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: var(--space-md);
    font-weight: 400;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

.post-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.post-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg) var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    border-bottom: 1px solid var(--border-light);
}

.post-date {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.post-date .date {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.post-date .time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.post-mood {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.post-card-content {
    padding: var(--space-lg);
}

.post-card-title {
    margin: 0 0 var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.post-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--accent-color);
}

.post-card-location {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.post-card-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.post-card-footer {
    padding: var(--space-sm) var(--space-lg) var(--space-lg) var(--space-lg);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.no-posts {
    text-align: center;
    padding: var(--space-xxl);
    color: var(--text-medium);
}

.no-posts-icon {
    font-size: 5rem;
    margin-bottom: var(--space-lg);
    opacity: 0.7;
}

.no-posts h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.no-posts p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

/* Posts Archive Mobile */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .post-card {
        margin: 0 var(--space-sm);
    }
    
    .posts-header {
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-md);
    }
    
    .post-card-header {
        padding: var(--space-md);
    }
    
    .post-card-content {
        padding: var(--space-md);
    }
    
    .post-card-footer {
        padding: var(--space-sm) var(--space-md) var(--space-md) var(--space-md);
    }
    
    .post-card-title {
        font-size: 1.2rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating,
    .bounce,
    .map-pin {
        animation: none;
    }
}

/* Utility Classes & Animations */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll Reveal Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading States */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading {
    background: linear-gradient(90deg, var(--bg-light) 25%, var(--border-light) 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Floating Elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Parallax Scroll Effect */
@keyframes parallax-bg {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Gradient Text Utility */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
}

/* Travel Icons with CSS */
.travel-icon {
    position: relative;
    display: inline-block;
}

.travel-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--accent-color);
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
    text-shadow: none;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .ruben-status,
    .journey-stats {
        display: none;
    }
    
    .post-content {
        max-width: none;
        margin: 0;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #e2e8f0;
        --text-medium: #a0aec0;
        --text-light: #718096;
        --bg-white: #1a202c;
        --bg-light: #2d3748;
        --bg-cream: #2d3748;
    }
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--bg-light);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: var(--space-sm) 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: var(--space-md) var(--space-sm);
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Logo adjustments */
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    /* Main content adjustments */
    .container {
        padding: 0 var(--space-sm);
    }

    /* Hero section */
    .ruben-status {
        padding: var(--space-md) 0;
    }

    .status-card {
        padding: var(--space-md);
    }

    .status-title {
        font-size: 1.5rem;
    }

    .status-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    .status-info {
        width: 100%;
    }

    .map-section {
        width: 100%;
    }

    /* Blog post content */
    .post-header {
        padding: var(--space-md) 0;
    }

    .post-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .post-meta {
        flex-wrap: wrap;
        gap: var(--space-xs);
        font-size: 0.85rem;
    }

    .post-content {
        padding: 0 var(--space-sm);
        font-size: 16px;
    }

    .post-content h1 {
        font-size: 1.8rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .post-content p {
        margin-bottom: var(--space-md);
    }

    .post-content img {
        margin: var(--space-md) -var(--space-sm);
        width: calc(100% + 2 * var(--space-sm));
        max-width: none;
    }

    .image-gallery {
        margin: var(--space-md) -var(--space-sm);
        width: calc(100% + 2 * var(--space-sm));
    }

    .gallery-single img,
    .gallery-grid img {
        border-radius: 0;
    }

    /* Post navigation */
    .post-navigation {
        flex-direction: column;
        gap: var(--space-md);
    }

    .post-navigation .nav-links {
        position: static;
        width: 100%;
        height: auto;
        background: none;
        flex-direction: column;
        padding: 0;
        box-shadow: none;
    }

    .nav-previous,
    .nav-next {
        width: 100%;
    }

    /* Journey stats */
    .journey-stats {
        padding: var(--space-lg) 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .stat-card {
        padding: var(--space-sm);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: var(--space-lg) 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .social-links {
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .post-content {
        padding: 0 var(--space-xs);
    }

    .post-content img {
        margin: var(--space-sm) -var(--space-xs);
        width: calc(100% + 2 * var(--space-xs));
    }
}

/* Version: 1.1.2 */