/* ==========================================================================
   1. CORE PAGE SETTINGS (Fonts, Colors & Clean Headers)
   ========================================================================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 15px; /* Slightly reduced to help remove the scrollbar */
    color: #333;
}

header {
    text-align: center;
    margin-bottom: 10px;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: bold;
}

.copyright-text {
    font-size: 0.75rem;
    font-weight: bold;
    margin: 2px 0;
}

h1 {
    margin: 5px 0;
    font-size: 2rem;
}

h2 {
    margin: 0;
    font-size: 1.2rem;
}

hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ==========================================================================
   2. SIDEBAR NAVIGATION MENU (Clean & Compact Link List)
   ========================================================================== */
.nav-menu {
    font-size: 1.15rem;
    padding-top: 5px;
}

.nav-item {
    margin-bottom: 8px; /* Tighter vertical spacing to remove the scrollbar */
}

.nav-item img {
    vertical-align: middle;
    margin-right: 12px;
}

.nav-item a {
    text-decoration: none;
    color: #0066cc;
}

.nav-item a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   3. SUBPAGE MODULES (About, Gallery, Links, Docs)
   ========================================================================== */
/* About & Info Pages */
.about-content p {
    font-size: 1.5rem; 
    line-height: 1.6;  
    margin-bottom: 20px; 
    padding-left: 40px;  
    padding-right: 40px; 
}

.about-content strong {
    font-style: italic;
}

blockquote {
    margin-top: 0;      
    margin-left: 15px;  
    padding-top: 0;
}

blockquote p:first-child {
    margin-top: 5px;
}

/* Links Page */
.external-links {
    list-style-type: none; 
    padding-left: 0;
}

.external-links li {
    margin-bottom: 15px; 
    display: flex;
    align-items: center;
}

.external-links img {
    margin-right: 10px; 
}

/* Photo Gallery Slider Layout */
.gallery-container {
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
}
  
.gallery-title {
    font-size: 24px;
    font-weight: bold;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slides-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slides-container::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
}

.slide img {
    width: 100%;
    max-width: 900px; 
    height: 600px; 
    object-fit: contain; 
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

#slide-arrow-prev { left: 0; }
#slide-arrow-next { right: 0; }

