/* L&B Global Design Partners */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Questrial', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.02em;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    max-width: 1800px;
    margin: 0 auto;
}

.nav-centered {
    justify-content: center;
    gap: 3rem;
}

.nav-stacked {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 4rem;
}

.nav-stacked .nav-logo {
    margin-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-family: 'Cormorant Garamond', 'Didot', 'Times New Roman', serif;
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-link.active {
    font-weight: 400;
}

.nav-logo {
    font-family: 'Cormorant Garamond', 'Didot', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-decoration: none;
    color: #1a1a1a;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.7;
}

/* HOMEPAGE */
.home {
    justify-content: center;
    align-items: center;
}

.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 6rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.brand h1 {
    font-family: 'Cormorant Garamond', 'Didot', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 4rem;
    color: #666;
}

.tagline p {
    font-family: 'Cormorant Garamond', 'Didot', 'Times New Roman', serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.tagline p:last-child {
    margin-bottom: 0;
}

/* GALLERY */
.gallery-page {
    padding-top: 80px;
}

.gallery {
    flex: 1;
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.gallery-intro {
    font-family: 'Cormorant Garamond', 'Didot', 'Times New Roman', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    font-style: italic;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.image-container {
    width: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
}

.image-container.square {
    aspect-ratio: 1 / 1;
}

.image-container.horizontal {
    aspect-ratio: 4 / 3;
}

.image-container.vertical {
    aspect-ratio: 3 / 4;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.caption {
    font-size: 0.8125rem;
    font-weight: 300;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.no-content {
    grid-column: 1 / -1;
    text-align: center;
    font-style: italic;
    color: #999;
    padding: 4rem;
}

/* FOOTER */
footer {
    padding: 2rem 4rem;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    margin-top: auto;
}

footer p {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #999;
    text-transform: uppercase;
}

.footer-logo {
    font-family: 'Cormorant Garamond', 'Didot', 'Times New Roman', serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #999;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav { padding: 1.25rem 2rem; }
    .nav-centered { gap: 2rem; }
    .nav-link { font-size: 0.75rem; }
    .home-content { padding: 4rem 1.5rem; }
    .brand h1 { font-size: 0.75rem; margin-bottom: 3rem; }
    .tagline p { font-size: 1.5rem; }
    .gallery { padding: 2rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
