/* General reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Calibri', Arial, sans-serif;
    background-color: #f9f9f9;
    overflow: hidden; /* Prevent scrolling */
}

/* Navigation Menu */
.navbar {
    background-color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-right: 20px;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ff9800;
}

/* Main Content */
.container {
    width: 100vw;
    height: 90vh; /* Leave space for disclaimer */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Ensure disclaimer fits well */
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

/* Title */
.title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 300px; /* Matches the size of images */
    height: 300px;
    margin: 0 auto;
}

.media-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slideshow Item */
.slideshow-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-item.active {
    opacity: 1;
    z-index: 1;
}

/* Image Styling */
.slideshow-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Disclaimer Section */
.disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
}
