/* Index Page Styles */

body {
    background: var(--bg-gradient-light);
    min-height: 100vh;
    padding: 20px;
}

/* Navigation and Header are now handled by design-system.css */



/* Header and Seal are now handled by design-system.css */



/* Gallery */
.gallery {
    column-count: 3;
    column-gap: 16px;
    padding: 20px;
    max-width: var(--max-width-content);
    margin: 0 auto;
}

.photo {
    break-inside: avoid;
    margin-bottom: 20px;
    border: 3px double var(--border-color);
    padding: 10px;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-slow);
}

.photo:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.photo img {
    width: 100%;
    height: auto;
    cursor: zoom-in;
    display: block;
    border-radius: 2px;
}

.title {
    font-family: var(--font-serif);
    font-weight: 600;
    margin-top: 12px;
    color: var(--primary);
    font-size: var(--text-base);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
}

.caption {
    font-size: 0.9em;
    color: var(--text-medium);
    font-style: italic;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: zoom-out;
}

.modal img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 5px;
}

/* Responsive handled by design-system.css */