/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.4;
}

/* Layout container */
.container {
    display: flex;
    min-height: 100vh;
}

/* Left navigation column - 1/4 of page width */
.nav-column {
    width: 25%;
    background-color: #ffffff;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    padding: 20px;
}

/* Right content area - 3/4 of page width */
.content-column {
    width: 75%;
    margin-left: 25%;
    padding: 40px 60px 40px 40px;
    background-color: #ffffff;
}

/* Navigation styles */
.site-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 30px;
    color: #ff0000;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.site-title a {
    color: #ff0000;
    text-decoration: none;
}

.site-title a:hover {
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    margin-bottom: 8px;
}

.nav-menu a {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-size: 14px;
    color: #ff0000;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    position: relative;
}

.nav-menu a::before {
    content: '→ ';
    margin-right: 5px;
    color: #ff0000;
}

.nav-menu a:hover {
    font-weight: 600;
}

.nav-menu a.active {
    font-weight: bold;
}

/* Content area styles */
.main-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 0 10px 0;
    object-fit: contain;
}

.image-caption {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #ff0000;
    font-style: italic;
    text-align: center;
    margin: 5px 0 20px 0;
}

/* Video embed styles */
.video-embed {
    width: 100%;
    max-width: 100%;
    height: 315px;
    margin: 20px 0 10px 0;
    border: none;
}

/* Grid layout for multiple images */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.image-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-grid img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 5px;
}

.image-grid .caption {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #ff0000;
    font-style: italic;
    text-align: center;
    margin-top: 5px;
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .nav-column {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .content-column {
        width: 100%;
        margin-left: 0;
        padding: 20px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .site-title {
        font-size: 20px;
        padding: 20px;
    }
}

/* Page content styles */
.page-content {
    max-width: 100%;
}

.page-title {
    display: none;
}

.page-description {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #ff0000;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-description a {
    color: #ff0000;
    text-decoration: none;
}

.page-description a:hover {
    text-decoration: underline;
}

