@import url('https://fonts.googleapis.com/css2?family=Glass+Antiqua&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    
    background-image: linear-gradient(to bottom, #000000, #1a1a1a);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    font-family: 'Montserrat', sans-serif; /* mantengo Montserrat para el body */
    font-weight: 300; /* peso ligero */
    font-style: normal;
    color: white; /* texto blanco */
    font-size: 1rem;
    text-shadow: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.gallery-tattoo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 20px;
}

.zoom-wrapper {
    width: 100%;
    overflow: hidden;
}

.tattoo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tattoo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
}

/* Footer */
.footer {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a i {
    color: inherit;
    font-size: 1.5rem;
    margin-right: 8px;
    vertical-align: middle;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-tattoo {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-tattoo {
        grid-template-columns: 1fr;
    }
}
