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

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; 
    color: #333;
}

.header {
    position: relative;
    height: 270px;
    width: 100%; 
    overflow: hidden; 
    background-color: #f4f4f4; 
}

.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(2px); 
    z-index: 1; 
}

.header-content {
    position: relative;
    z-index: 2; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header-content h1 {
    font-size: 50px;
    color: #fff;
    z-index: 2;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.highlights {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.highlights h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}


.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 20px;
}

.attraction-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.attraction-item:hover {
    transform: translateY(-5px);
}

.attraction-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-info {
    padding: 20px;
    text-align: left;
}

.attraction-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.attraction-info p {
    font-size: 16px;
    color: #555;
}

.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);
}

.travel-info {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.intro {
    margin-bottom: 50px;
}

.intro h2 {
    font-size: 36px;
    color: #ff6f61;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    line-height: 1.8;
}


.other {
    margin-bottom: 50px;
}

.other h2 {
    font-size: 36px;
    color: #ff6f61;
    margin-bottom: 20px;
}

.other p {
    font-size: 18px;
    line-height: 1.8;
}