*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Hero Section - Same as Tattoos Page */
.hero {
    height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background-image: 
    linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(45, 45, 45, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
      ),
        url('../assets/img/colageHero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    margin: 0 auto;
    width: 100%;
}

.artistas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    linear-gradient(135deg, rgba(12, 40, 61, 0) 0%, rgba(41, 215, 215, 0.082) 50%, rgba(3, 18, 34, 0.548) 100%),
        url('../assets/img/colagehero2.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        transform: scale(1.1);
        filter: brightness(0.7) contrast(0.8) saturate(0.8) sepia(0.2);
  }


.hero .hero-content-all {
    width: 100%;
    height:auto;
    text-align: center;
    color: var(--nav-text);
    z-index: 2;
    position: relative;
    margin-top: 100px;
}

.space {
    letter-spacing: -1px;
}

.size-h1 {
    font-size: 4rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content-all p {
    font-family: 'Oswald', sans-serif;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 100;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}



/* Responsive para hero section */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .hero .hero-content-all h1 {
        font-size: 3rem;
    }
    
    .hero .hero-content-all p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    
    .hero .hero-content-all h1 {
        font-size: 2.5rem;
    }
    
    
}

/* Artist Title Section */

.background-dark {
    width: 100%;
    height: auto;
    background-color: var(--dark-color);
    padding: 20px 0;
}

.artist-title-section {
    max-width: 800px;
    line-height: 1.1;
    margin-top: 60px;
}

/* SELECCION DE TATUADORES */
.artist-selection-section {
    width: 100%;
    height: auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    background-color: var(--light-color);
}

.dark-section {
    background-color: var(--dark-color);
}

.artist-selection-content-resident,
.artist-selection-content-collaborator {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-selection-item {
    width: 100%;
    max-width: 400px;
    height: 500px;
    flex: 1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.artist-selection-item:hover {
    transform: translateY(-5px);
}

.artist-selection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(0.7) sepia(0.2) saturate(1) brightness(0.8);
    transition: filter 0.3s ease;
}

.artist-selection-item:hover img {
    filter: contrast(1) sepia(0) saturate(1) brightness(1);
}

.artist-selection-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--light-color);
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    padding: 40px 20px 20px;
    margin: 0;
    text-align: center;
    width: 100%;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Artist Profile Section */
.artist-profile-section {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding:  50px 0;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.p-title-artistas {
    font-weight: 100;
    color: var(--dark-color);
    margin-top: 30px;
    max-width: 600px;
    line-height: 1.8;
    
}
.p-title-artistas-light {
    font-size: 1.1rem;
    font-weight: 100;
    color: var(--light-color);
    margin-top: 30px;
    max-width: 600px;
    
}

.artist-profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column - Artist Information */
.artist-info {
    padding-right: 40px;
}

.artist-name h2 {
    width: 100%;
    
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 100;
    color: var(--light-color);
    margin: 0;
    line-height: 0.9;
    letter-spacing: -2px;
    max-width: 400px;
    align-items:start;
}

.artist-title {
    margin: 20px 0 40px 0;
}

.artist-title p {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.artist-description {
    margin-bottom: 50px;
}

.artist-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.artist-features li {
    color: var(--light-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.artist-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}



.artist-social {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Right Column - Artist Portrait */
.artist-portrait {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.portrait-container {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:contrast(0.7) sepia(0.2) saturate(1) brightness(0.8);
    transition: all 0.5s ease;
    display: block;
}

.portrait-container:hover .artist-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Gallery Preview Section */
.artist-gallery-preview {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.artist-gallery-preview .section-title h2 {
    color: var(--light-color);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5px;
    margin: 60px 0;
}

.gallery-item a{
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artist-profile-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 0 20px;
    }
    
    .artist-info {
        padding-right: 0;
        order: 2;
    }
    
    .artist-portrait {
        order: 1;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .portrait-container {
        height: 500px;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .artist-selection-content-resident,
    .artist-selection-content-collaborator {
        gap: 30px;
        padding: 0 15px;
    }
    
    .artist-selection-item {
        max-width: 350px;
        height: 450px;
    }
    
    .artist-selection-item h3 {
        font-size: 1.9rem;
        padding: 35px 15px 15px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .hero .hero-content-all {
        font-size: 2rem;
        margin-top: 50px;
    }
    
    .hero p {
        margin-top: 5px;
        font-size: 1.5rem;
        max-width: 300px;
        font-weight: 100;
    }

    .artist-title-section {
        padding: 20px 0 0 0;
        margin-bottom: 0;
    }
    
    
    .artist-title-section p span{
        font-size: 4rem;
    }
    
    .p-title-artistas {
        margin-top: 20px;
        max-width: 100%;
        line-height: 1.8;
    }
    
    .artist-profile-section {
        padding: 60px 0;
    }
    
    .artist-profile-content {
        padding: 0 15px;
        gap: 40px;
    }
    
    .artist-portrait {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .artist-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .portrait-container {
        height: 400px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        box-sizing: border-box;        
        border-radius: 0;

    }

    .artist-selection-section {
        padding: 40px 0;
    }
    
    .artist-selection-content-resident,
    .artist-selection-content-collaborator {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .artist-selection-item img{
        max-width: 100%;
        height: 450px;
    }
    
    .artist-selection-item h3 {
        font-size: 2.2rem;
        padding: 30px 15px 15px;
    }
    
    .artist-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: 100%;
    }

    .artist-actions {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .artist-social {
        display: flex;
        align-items: center;
        justify-content: center;
    }   
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-item {
        padding: 30px;
    }
    
    .gallery-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap:10px;
    }
    
    .gallery-item {
        height: 450px;
    }

    .artist-gallery-preview {
        padding-top: 0;
    }

    .gallery-cta {
        margin-top: -80px;
    }
}


/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-down-indicator:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: scale(1.1);
}

/* Animation for artist info */
.artist-info {
    animation: slideInLeft 0.8s ease-out;
}

.artist-portrait {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.9);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--primary-color);
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: transparent;
    transform: scale(1.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.lightbox-prev {
    margin-left: -85px;
}

.lightbox-next {
    margin-right: -85px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--dark-color);
    color: var(--primary-color);
    transform: scale(1.1);
    border: 1px solid var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Gallery Link Styles */
.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.category-name {
    color: var(--light-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .category-name {
    transform: scale(1);
}

/* Responsive Lightbox */
@media (max-width: 1024px) {
    .lightbox-prev {
        margin-left: -50px;
    }
    
    .lightbox-next {
        margin-right: -50px;
    }
}

@media (max-width: 768px) {

    .artistas-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
        linear-gradient(135deg, rgba(12, 40, 61, 0) 0%, rgba(41, 215, 215, 0.082) 50%, rgba(3, 18, 34, 0.548) 100%),
            url('../assets/img/colagehero2.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            transform: scale(1.1);
      }


    .lightbox-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .lightbox-content img {
        height: 700px;
        object-fit: cover;
    }

    .lightbox-close {
        top: -80px;
        right: 0;
        font-size: 60px;
        width: 80px;
        height: 80px;
        background: transparent;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 80px;
        height: 80px;
        font-size: 40px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0;
        background: transparent;
    }
    
    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: transparent;
        border: none;
    }
    
    .lightbox-prev {
        margin-left: 10px;
    }
    
    .lightbox-next {
        margin-right: 10px;
    }
}