body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container to hold sidebar and main content */
.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 300px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

/* Main content area - ensures no overlap with sidebar */
.main-content {
    flex: 1;
    margin-left: 300px; /* Exactly matches sidebar width */
    min-height: 100vh;
    padding: 60px 80px; /* Increased padding for better spacing */
    width: calc(100vw - 300px); /* Ensures proper width calculation */
    box-sizing: border-box;
    display: flex;
    align-items: center; /* Center content vertically */
}

.text-body {
    width: 100%;
    max-width: 100%;
    line-height: 1.8; /* Increased line height for better readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Center all text */
}

.text-body h2 {
    font-size: 3.5em; /* Larger heading */
    margin-bottom: 40px; /* More space below heading */
    color: #ffffff;
    font-weight: 600;
    text-align: center; /* Explicitly center the h2 */
}

.text-body h3 {
    font-size: 2.2em; /* Larger subheadings */
    margin: 50px 0 25px 0; /* More spacing around subheadings */
    color: #ffffff;
    font-weight: 500;
    text-align: center; /* Center subheadings */
}

.text-body p {
    margin-bottom: 30px; /* More space between paragraphs */
    color: #cccccc;
    font-size: 1.4em; /* Much larger paragraph text */
    text-align: center; /* Center paragraphs */
    max-width: 900px; /* Limit line length for better readability */
    margin-left: auto;
    margin-right: auto;
}

.text-body ul {
    margin: 30px 0;
    padding: 0;
    list-style: none; /* Remove bullets for cleaner look */
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-body li {
    margin-bottom: 15px; /* More space between list items */
    color: #cccccc;
    font-size: 1.3em; /* Larger list items */
    padding: 10px 0; /* Add padding to list items */
}

.logo {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%; /* Remove this if you want square logo */
}

.logo h1 {
    font-size: 28px;
    max-width: 250px;
    margin: 0;
    line-height: 1.2;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 50px 0;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    text-align: center;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 15px;
}

.nav-links li a:hover {
    color: #cccccc;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: auto;
    list-style: none;
    padding: 0;
}

.social-icons li {
    list-style: none;
}

.social-icons li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
    padding: 10px 15px;
}

.social-icons li a:hover {
    color: #cccccc;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .sidebar {
        width: 250px;
    }

    .main-content {
        margin-left: 250px;
        width: calc(100vw - 250px);
        padding: 40px 60px;
    }

    .text-body h2 {
        font-size: 3em;
    }

    .text-body h3 {
        font-size: 2em;
    }

    .text-body p {
        font-size: 1.3em;
    }

    .text-body li {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        min-height: auto;
        position: relative;
        padding: 20px;
        z-index: 1;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 40px 30px;
        min-height: auto;
    }

    .text-body p {
        max-width: 100%;
    }

    .logo-image {
        width: 80px;
        height: 80px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .logo {
        gap: 15px;
        margin-bottom: 60px;
    }

    .text-body h2 {
        font-size: 2.5em;
    }

    .text-body h3 {
        font-size: 1.8em;
    }

    .text-body p {
        font-size: 1.2em;
    }

    .text-body li {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 60px;
        height: 60px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo {
        gap: 10px;
        margin-bottom: 40px;
    }

    .main-content {
        padding: 30px 20px;
    }

    .text-body h2 {
        font-size: 2em;
    }

    .text-body h3 {
        font-size: 1.5em;
    }

    .text-body p {
        font-size: 1.1em;
    }

    .text-body li {
        font-size: 1em;
    }
}

/* Rest of your existing CSS... */
.Head {
    background: #111111;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.Head h1 {
    margin: 0 0 15px 0;
    color: #ffffff;
}

.Navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.Navigation a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
}

.Navigation a:hover {
    color: #cccccc;
}

/* Album Grid Styles */
.albums-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.album {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.album:hover {
    transform: translateY(-4px);
}

.album img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.album-info {
    padding: 10px;
}

.album-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #ffffff;
}

.album-count {
    font-size: 14px;
    color: #cccccc;
}

/* Image Grid Styles - Fixed for proper sizing */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1800px;
    margin: 20px auto;
    padding: 0 20px;
}

.loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #cccccc;
}

.image-item {
    position: relative;
    width: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
}

.image-item:hover {
    transform: translateY(-4px);
}

.image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.album-header {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    color: #ffffff;
}

.back-button {
    padding: 12px 24px;
    background: #333333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

.back-button:hover {
    background: #555555;
}

.image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-item:hover .image-title {
    opacity: 1;
}

.error {
    color: #ff6b6b;
    text-align: center;
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .images-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1000px) {
    .images-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .albums-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .albums-container {
        grid-template-columns: 1fr;
    }
    .images-grid {
        grid-template-columns: 1fr;
    }
}
/* Simple Image Viewbox - Easy to customize */
.viewbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.viewbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.viewbox-close {
    position: absolute;
    top: -50px;
    right: -20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
}

.viewbox-prev,
.viewbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 60px;
    padding: 20px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.viewbox-prev {
    left: -80px;
}

.viewbox-next {
    right: -80px;
}

.viewbox-prev:hover,
.viewbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Make image items clickable */
.image-item {
    cursor: pointer;
    transition: transform 0.2s;
}

.image-item:hover {
    transform: scale(1.05);
}