/* Import Google Fonts - Futura PT */
@import url('https://fonts.googleapis.com/css2?family=Futura+PT:wght@300;400;500;600;700&display=swap');

/* Plantin MT Pro Font Faces */
@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProRg.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProRgIt.TTF') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProLight.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProLightIt.TTF') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProSmBd.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProSemiBdIt.TTF') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProBold.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Plantin MT Pro';
    src: url('../fonts/PlantinMTProBoldIt.TTF') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* CSS Variables */
:root {
    --bg-color: #F5F5F7;
    --header-bg: #F5F5F7;
    --text-color: #1d1d1f;
    --overlay-bg: rgba(0, 0, 0, 0.6);
    --font-serif: 'Plantin MT Pro', serif;
    --font-sans: 'Futura PT', 'Futura', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: var(--header-bg);
    padding: 0;
    position: relative;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 65px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.nav-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 35px;
    position: absolute;
    left: 60px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    position: relative;
    transition: opacity 0.2s;
}

.nav-link:hover {
}

.nav-link.active {
    font-weight: 400;
}

.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    height: 100px;
    width: auto;
    display: block;
}

.social-links {
    display: flex;
    gap: 20px;
    position: absolute;
    right: 60px;
}

.social-icon {
    color: var(--text-color);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-icon:hover {
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Header Intro Styles */
.header-intro,
.album-description {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    background-color: var(--header-bg);
}

.header-intro h1,
.album-description h1 {
    color: #012B55;
    font-family: yszk;
    font-size: 55px;
    font-style: normal;
    font-weight: 300;
    line-height: 60px;
    margin-bottom: 10px;
    margin-top: 0px;
    text-align: center;
    text-transform: none;
}

.header-intro p,
.album-description p {
    color: #546E87;
    font-family: ftnk;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    text-transform: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-prompt {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.5;
    margin-top: 20px;
}

.masthead-arrow-container {
    margin-bottom: 45px;
    margin-top: 25px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.masthead-arrow-container:hover {
    transform: translateY(3px);
}

.masthead-arrow {
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #282828;
    border-right: 2px solid #282828;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -6px;
}

/* Gallery Styles */
.gallery-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px;
    background-color: #FFFFFF;
}

.gallery-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
}

.gallery-item:hover {
    transform: scale(0.98);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 16px;
    text-align: center;
    padding: 20px;
    font-weight: 400;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Contact Form Styles */
.contact-container {
    max-width: 600px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #CCCCCC;
    font-family: var(--font-sans);
    font-size: 16px;
    background-color: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #999999;
}

.submit-btn {
    padding: 15px 40px;
    background-color: var(--text-color);
    color: #FFFFFF;
    border: none;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    align-self: flex-start;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-container {
        padding: 40px 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .header-intro {
        padding: 30px 30px 50px;
    }

    .header-intro h1 {
        font-size: 40px;
    }

    .header-intro p {
        font-size: 16px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        padding: 30px 20px;
    }

    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .header-intro {
        padding: 30px 20px 40px;
    }

    .header-intro h1 {
        font-size: 32px;
    }

    .header-intro p {
        font-size: 16px;
    }

    .contact-container {
        margin: 50px auto;
        padding: 0 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }
}
