/* css/style.css */

body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

header .header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header .header-left a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

header .header-right .logo {
    width: 150px;
    height: auto;
}

main {
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Index page gallery links */
.gallery-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-links a {
    display: block;
    text-decoration: none;
    color: black;
}

.gallery-links a span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;
    color: black;
}

.gallery-links a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-links a:hover img {
    transform: scale(1.05);
}

/* Individual gallery pages */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery img {
    width: 100%;
    border-radius: 6px;
    display: block;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #666;
}
