/* General Styles */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
}

.menu {
    display: flex;
    gap: 15px;
}

    .menu a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }

        .menu a:hover {
            text-decoration: underline;
        }

/* Profile Icon */
.profile-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.profile-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: 15px;
    border: 2px solid white;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Profile Menu Dropdown */
.profile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    padding: 10px;
    min-width: 140px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}

    .profile-menu a {
        display: block;
        padding: 10px;
        color: white;
        text-decoration: none;
        font-size: 16px;
        border-radius: 4px;
        transition: background 0.3s ease;
    }

        .profile-menu a:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

.show {
    display: block;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    height: 80vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: black;
}

.slideshow-image {
    width: auto;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 1;
}

.prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

    .prev-button:hover, .next-button:hover {
        background: black;
    }

@media (max-width: 768px) {
    .slideshow-container {
        height: 60vh;
    }

    .slideshow-image {
        max-height: 60vh;
    }
}

/* Authentication Pages (Login & Register) */
.auth-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
}

    .auth-container h2 {
        font-size: 2em;
    }

    .auth-container form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .auth-container input {
        width: 80%;
        max-width: 300px;
        padding: 10px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
    }

    .auth-container button {
        background-color: white;
        color: black;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
    }

        .auth-container button:hover {
            background-color: gray;
        }

    .auth-container p {
        font-size: 14px;
    }

    .auth-container a {
        color: white;
        text-decoration: underline;
    }

/* Footer */
footer {
    margin-top: 50px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
}
