* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #2c3e50;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #f4f4f4;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e67e22;
}

.user-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5px;
}

.user-actions button {
    margin-left: 10px;
    padding: 5px 12px;
    border: none;
    background-color: #27ae60;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.user-actions button:hover {
    background-color: #2ecc71;
}

.user-actions input {
    padding: 5px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.banner {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.banner-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.banner-text button {
    padding: 10px 20px;
    background-color: #e67e22;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.banner-text button:hover {
    background-color: #d35400;
}


.tours {
    padding: 40px 50px;
    background-color: #f9f9f9;
}

.tours h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.tour-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-card {
    border: 1px solid #ddd;
    padding: 10px;
    width: 250px;
    text-align: center;
    border-radius: 8px;
    background-color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tour-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.tour-card h3 {
    margin: 10px 0;
    color: #e67e22;
}

.tour-card p {
    margin-bottom: 10px;
}

.tour-card button {
    padding: 8px 15px;
    background-color: #27ae60;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tour-card button:hover {
    background-color: #2ecc71;
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    margin-top: 50px;
}

footer a {
    color: #f1c40f;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}


@media (max-width: 992px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .user-actions {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 16px;
    }

    .tour-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .tour-card {
        width: 100%;
    }

    .banner-text h1 {
        font-size: 22px;
    }

    .banner-text p {
        font-size: 14px;
    }

    .user-actions input {
        margin-left: 5px;
        margin-top: 5px;
    }
}