body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgba(245, 203, 203, 0.7);
    background-size: cover;
    color: white;
    text-align: center;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* Center everything horizontally */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap; /* Allow items to wrap on small screens */
}

.navbar-logo {
    max-width: 150px; /* Adjust size as needed */
    margin-right: 20px; /* Space between logo and text */
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allow items to wrap */
}

.navbar ul li {
    margin: 0 10px; /* Reduced margin for small screens */
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    display: block;
    padding: 10px;
}

.container {
    padding: 20px;
    margin-top: 70px; /* Adjust based on navbar height */
}

.coming-soon {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1000px;
}

.coming-soon h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 1.5em;
}

.tour-section {
    margin: 40px 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.tour {
    background: rgba(0, 0, 0, 0.6);
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.tour-info {
    padding: 15px;
}

.tour-info h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.tour-info p {
    font-size: 1.2em;
    line-height: 1.5;
}

.tour-image {
    width: 100%;
    height: auto;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack items vertically */
    }

    .navbar-logo {
        margin: 10px 0; /* Center logo with spacing */
    }

    .navbar ul {
        flex-direction: column; /* Stack links vertically */
    }

    .navbar ul li {
        margin: 10px 0; /* Space out menu items */
    }

    .navbar ul li a {
        font-size: 1em; /* Adjust font size */
        padding: 15px; /* Increase padding for touch devices */
    }

    .coming-soon {
        padding: 15px;
    }

    .coming-soon h1 {
        font-size: 2.5em;
    }

    .coming-soon p {
        font-size: 1.2em;
    }

    .tour-section h2 {
        font-size: 1.5em;
    }

    .tour-info h3 {
        font-size: 1.5em;
    }

    .tour-info p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        max-width: 120px; /* Further reduce logo size for small screens */
    }

    .navbar ul li {
        margin: 5px 0; /* Reduce margin for very small screens */
    }

    .navbar ul li a {
        font-size: 0.9em; /* Smaller font size for very small screens */
    }
}
