html {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: white;
    color: blue; /* adjusted from white for visibility on white bg */
    padding: 10px 0;
    text-align: center;
}

nav {
    background: #e1e1e1;
    display: flex;
    justify-content: center;
}

nav a {
    color: black;
    text-decoration: none;
    padding: 14px 20px;
    display: inline-block;
}

nav a:hover {
    background: #002050;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 8px;
    flex: 1;
}

footer {
    text-align: center;
    background: #004080;
    color: white;
    padding: 10px 0;
    margin-top: 40px;
}

h1, h2 {
    color: blue;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.package {
    flex: 1 1 300px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-sizing: border-box;
    padding-bottom: 160px; /* space equal to negative margin */
}

}


@media (max-width: 768px) {
    .packages {
        flex-direction: column;
    }
}

#tourimg {
    width: 280px;
    border-radius: 12px;
}

#logo {
    width: 10%;
    margin-right: 72.5%;
}

#slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1; /* keeps it behind all content */
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
