* {
    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-color: #ff6f61;
    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%;
}


.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.transport-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.transport-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.transport-item h3 {
    color: #ff6f61;
    margin-bottom: 10px;
}

.transport-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.map-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #ff6f61;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}



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

.attraction-image-wrapper {
    position: relative;
    display: inline-block;
}

.label-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
}


.book-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.book-button:hover {
    background-color: #e0554c;
}



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