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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --secondary: #f59e0b;
    --accent: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #334155;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge i {
    width: 18px;
    height: 18px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    opacity: 0.95;
    margin-bottom: 3rem;
    font-weight: 300;
}

.route-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.city {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.city.highlight {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.city:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.3);
}

.route-visual i {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* Overview Stats */
.overview {
    padding: 4rem 2rem;
    background: white;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.stat i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
    stroke-width: 1.5;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text);
    font-size: 1rem;
}

/* Timeline */
.timeline {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.day {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.day:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.day-num {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.day-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    flex: 1;
}

.distance {
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text);
}

.highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

.highlight-item i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Accommodations */
.accommodations {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.accommodations h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.hotels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.hotel-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.hotel-card .city-name {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.hotel-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hotel-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
}

.hotel-option .name {
    font-weight: 500;
}

.hotel-option .price {
    color: var(--primary);
    font-weight: 600;
}

/* Budget */
.budget {
    padding: 4rem 2rem;
    background: white;
}

.budget h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.budget-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.budget-item h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.budget-item .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.total-budget {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.total-budget h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.total-budget .amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.total-budget .per-person {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.download-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.download-btn i {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .route-visual {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .route-visual i {
        transform: rotate(90deg);
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Print Styles */
@media print {
    .hero {
        min-height: auto;
        padding: 2rem;
    }
    
    .download-btn {
        display: none;
    }
    
    body {
        background: white;
    }
}