@charset "UTF-8";
/* CSS Document */
/* Configuración Base */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

body {
    font-family: 'Helvetica', sans-serif;
    background-color: #ffffff;
    margin: 0;
    color: #333;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Grid de la Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Efecto Roll Over */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom suave */
}

.gallery-item:hover .overlay {
    opacity: 1; /* Aparece el texto */
}

.overlay span {
    font-weight: bold;
    border: 2px solid #333;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Estilos del Modal (Despliegue) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 800px;
    position: relative;
    border-radius: 8px;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

.modal-images img {
    width: 100%;
    margin-top: 20px;
}
/* Títulos de Proyectos en el Modal */
.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

/* Cuerpo de texto y descripciones */
.modal-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
}

/* Estilo para el Menú */
.main-nav ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #333;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #007bff; /* Color de acento al pasar el mouse */
}
