/* ---------- FONTS ---------- */
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* ---------- PAGE WIDTH ---------- */
.main-container,
header,
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ---------- HEADER ---------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header h1 {
    font-weight: 300;
    margin: 0;
}

.header-left nav {
    display: flex;
    gap: 2rem;
}

.header-left nav a {
    text-decoration: none;
    color: #333;
    font-weight: 300;
    transition: color 0.3s, transform 0.3s;
}

.header-left nav a:hover {
    color: #000;
    transform: translateY(-2px);
}

.header-right .logo {
    max-height: 60px;
}

/* ---------- INDEX PAGE GALLERY LINKS ---------- */
.gallery-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.gallery-links a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #000;
    font-weight: 300;
}

.gallery-links a span {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.gallery-links a img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ---------- GALLERY PAGES ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 250px); /* fixed 4 columns */
    justify-content: start; /* left align */
    gap: 10px;
    margin: 20px 0 40px 0;
}

.gallery a img {
    width: 100%;
    height: 250px; /* square thumbnails */
    object-fit: cover;
    display: block;
}

/* ---------- HEADINGS ---------- */
h1, h2 {
    font-weight: 300;
    margin-bottom: 10px;
}

h2 {
    font-weight: 200;
    margin-top: 40px;
}

/* ---------- FOOTER ---------- */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    border-top: 1px solid #ccc;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/* ---------- PARAGRAPH WIDTH CLASSES ---------- */
.full-width-desc {
    width: 89%;
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.half-width-desc {
    width: 48%;
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 720px) {
    .half-width-desc {
        width: 100%;
        margin: 20px 0;
        display: block;
    }
	.full-width-desc {
        width: 100%;
        margin: 20px 0;
        display: block;
    }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-text p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.contact-links {
    margin-top: 3rem;
}

.contact-links h2 {
    margin-bottom: 0.75rem;
}

.contact-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-links li {
    margin-bottom: 0.5rem;
}

.contact-links a {
    text-decoration: none;
    font-weight: 300;
}

.contact-links a:hover {
    text-decoration: underline;
}
