/* Budapest Page Specific Styles */

/* City Hero Section */
.city-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: white;
    padding: 80px 2rem 2rem;
}

.city-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.city-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.city-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.city-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

/* Day Sections */
.day-section {
    padding: 5rem 0;
    background: white;
}

.day-section.alt-bg {
    background: #f8f9ff;
}

.day-header {
    text-align: center;
    margin-bottom: 3rem;
}

.day-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.day-subtitle {
    font-size: 1.2rem;
    color: #c0392b;
    font-weight: 600;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.time {
    width: 100px;
    font-weight: 600;
    color: #c0392b;
    font-size: 1.1rem;
    margin-right: 2rem;
    text-align: right;
    padding-top: 1rem;
}

.activity {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-left: 2rem;
    transition: transform 0.3s ease;
}

.activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.activity h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity h3 i {
    color: #d4af37;
    font-size: 1.2rem;
}

/* Activity Content */
.activity-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.activity-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.activity-info {
    color: #555;
    line-height: 1.6;
}

.activity-info p {
    margin-bottom: 0.8rem;
}

.activity-info strong {
    color: #2c3e50;
}

/* Tags */
.restaurant-tags,
.attraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-tags .tag {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.attraction-tags .tag {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .city-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 1rem 2rem;
    }
    
    .city-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .city-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .city-stats span {
        font-size: 0.8rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .time {
        width: auto;
        text-align: left;
        margin-bottom: 1rem;
        margin-right: 0;
        padding-left: 50px;
        padding-top: 0;
    }
    
    .activity {
        margin-left: 50px;
    }
    
    .activity-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .activity-content img {
        max-width: 300px;
        justify-self: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .city-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .day-header h2 {
        font-size: 2rem;
    }
    
    .day-subtitle {
        font-size: 1rem;
    }
    
    .activity {
        padding: 1.5rem;
        margin-left: 30px;
    }
    
    .time {
        padding-left: 40px;
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 10px;
        width: 16px;
        height: 16px;
    }
}

/* Attractions Map Section */
.attractions-overview {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e1e8ff;
}

.day-legend {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.day-marker {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.day-marker.day-1 { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.day-marker.day-2 { background: linear-gradient(135deg, #3498db, #2980b9); }
.day-marker.day-3 { background: linear-gradient(135deg, #27ae60, #229954); }
.day-marker.day-4 { background: linear-gradient(135deg, #f39c12, #e67e22); }
.day-marker.day-5 { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

/* Pécs Day Markers (Days 6-10) */
.day-marker.day-6 { background: linear-gradient(135deg, #e67e22, #d35400); }
.day-marker.day-7 { background: linear-gradient(135deg, #16a085, #138d75); }
.day-marker.day-8 { background: linear-gradient(135deg, #8e44ad, #7d3c98); }
.day-marker.day-9 { background: linear-gradient(135deg, #2980b9, #21618c); }
.day-marker.day-10 { background: linear-gradient(135deg, #c0392b, #a93226); }

/* Balaton Day Markers (Days 11-15) */
.day-marker.day-11 { background: linear-gradient(135deg, #3498db, #2874a6); }
.day-marker.day-12 { background: linear-gradient(135deg, #27ae60, #1e8449); }
.day-marker.day-13 { background: linear-gradient(135deg, #f39c12, #d68910); }
.day-marker.day-14 { background: linear-gradient(135deg, #e74c3c, #cb4335); }
.day-marker.day-15 { background: linear-gradient(135deg, #9b59b6, #884ea0); }

.map-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.map-button {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    justify-content: center;
}

.map-button.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.map-button.primary:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.map-button.secondary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.map-button.secondary:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Mobile Responsiveness for Map Section */
@media (max-width: 768px) {
    .attractions-overview {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .legend-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .day-marker {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .map-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .map-button {
        padding: 0.8rem 1.5rem;
        min-width: auto;
        width: 100%;
    }
}

/* Map Legend Styles */
.map-legend {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid #e3e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-legend h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

/* Mobile responsive for map legend */
@media (max-width: 768px) {
    .map-legend {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .legend-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .legend-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .map-legend h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
} 