/* Clean minimalist design - white background, black text, blue links */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 1px solid #000;
}

.site-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 18px;
    color: #666;
}

.subtitle {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
}

/* Navigation */
.navigation {
    padding: 20px;
    border-bottom: 1px solid #000;
    position: static; /* No sticky header */
}

.nav-toggle {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    color: #0000ff;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
}

/* Gallery */
.gallery {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    background: #000;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-info {
    margin-top: 20px;
}

.gallery-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.gallery-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

.gallery-category {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    background: #000;
}

.modal-caption {
    margin-top: 20px;
    max-width: 600px;
    text-align: center;
}

.modal-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-caption p {
    font-size: 16px;
    color: #333;
}

/* Footer */
.footer {
    border-top: 1px solid #000;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .site-title {
        font-size: 32px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}