body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    position: relative;
    height: 250px; 
    width: 100%;
    background-color: #fdf3e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.evoshosting.com/personale/estambul.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.5);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header h1 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 4px 10px rgba(248, 248, 248, 0.5);
}

.navbar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.navbar li {
    margin: 0 10px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.navbar a:hover {
    background-color: #ff6f61;
    transform: scale(1.05);
}

.itinerary {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.itinerary-day {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.itinerary-day:hover {
    transform: translateY(-5px);
}

.itinerary-day h2 {
    color: #ff6f61;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.itinerary-day p {
    margin: 10px 0;
    line-height: 1.6;
}

.itinerary-day a {
    color: #ff6f61;
    text-decoration: none;
    font-weight: bold;
}

.itinerary-day a:hover {
    text-decoration: underline;
}
