@font-face {
    font-family: 'Swiss 721';
    src: url('/Fuentes/swiss-721/Swiss721Black.ttf') format('woff2'),
         url('/Fuentes/swiss-721/Swiss721Bold.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('/Fuentes/instrument-serif/instrumentserif-regular.ttf') format('woff2'),
         url('/Fuentes/instrument-serif/instrumentserif-italic.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Instrument Serif', serif;
    background: #fffcf6;
    color: #000000;
    line-height: 1.6;
}

/* Headers Typography */
h1, h2, h3, h4, h5, h6,
header,
.logo,
.footer-logo,
nav,
.nav-link {
    font-family: 'Swiss 721', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fffcf6;
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    transition: opacity 0.3s ease;
    color: #000000;
    text-decoration: none;
    display: flex;          
    align-items: center;     
    gap: 0.75rem;            
}

.header-title {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-left: 2rem;
}

.logo:hover {
    opacity: 0.7;
}

.logo-image {                
    width: 32px;
    height: 32px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.3rem 0;
    transition: opacity 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #000000;
}

/* Main Content */
main {
    margin-top: 100px;
    padding: 2rem 2rem 4rem;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - 200px);
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/* Add this after the .photo-item styles */
.photo-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.photo-item:hover img {
    opacity: 0.9;
}

/* NEW - Photo description overlay */
.photo-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 1.25rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-description {
    transform: translateY(0);
}

.photo-description-title {
    font-family: 'Swiss 721', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.photo-description-text {
    font-family: 'Instrument Serif', serif;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.photo-item:hover .photo-description {
    transform: translateY(0);
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-item {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}

.contact-item a:hover {
    border-color: rgba(0, 0, 0, 0.8);
}

/* Placeholder styling */
.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
    background: #fffcf6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.footer-logo {
    opacity: 0.7;
}

.footer-logo-image {
    width: 120px;
    height: auto;
    object-fit: contain;
}


.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-link {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    opacity: 0.6;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        gap: 1.5rem;
    }

    main {
        padding: 1.5rem 1.5rem 3rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    footer {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .social-links {
        gap: 1.5rem;
    }
}
