@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    background-color: #111;
    font-family: "Cinzel", sans-serif;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.landing {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info {
    font-family: "Raleway", sans-serif;
    background-color: #222;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid #3498db;
    gap: 2rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    backdrop-filter: blur(5px);
    transition: background 0.3s;
    z-index: 1000;
    height: 50px;
}

.logo img {
    max-width: 6rem;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000000;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 60%;
    left: -200px;
    list-style: none;
    background: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    display: none;
    padding: 10px 0;
    border-radius: 8px;
}

.dropdown:hover .dropdown-menu,
.menu:hover+.dropdown-menu,
.dropdown-menu:hover,
.menu:hover~.dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: white;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #3498db;
}

.content-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    flex-wrap: wrap;
    text-align: left;
}

.description {
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    margin-bottom: 1rem;
    flex: 1 1 100%;
    text-align: center;
}

.everestpics img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
    padding: 10px;
}

.everestpics img:hover {
    transform: scale(1.05);
}

.descriptionBox {
    width: 300px;
    height: auto;
    padding: 1.5rem;
    border: 2px solid white;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

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

.explore {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.menu img {
    max-width: 2rem;
    transition: transform 0.3s;
    margin-left: -60px;
}

.menu img:hover {
    transform: rotate(90deg);
}

.everest-video {
    position: fixed;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

footer {
    background: #000;
    color: #bbb;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .info {
        padding: 2rem;
    }

    .content-row {
        flex-direction: column;
        text-align: center;
    }

    .descriptionBox {
        width: 90%;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        height: 50px;
        padding: 5px 10px;
    }

    .logo {
        order: 1;
    }

    .nav-links {
        order: 2;
        flex-direction: row;
        padding: 0;
    }

    .dropdown-menu {
        transform: none;
    }

    .everestpics img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}
