/* Reset specifico SOLO per la homepage */
.home .page-main-container {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
}
.home .page-content-side {
    margin: 0;
    padding: 0;
    width: 10%;
}
.home .page-content-area {
    margin: 0;
    padding: 0;
    width: 80%;
}

    /* Navigation - già gestita dall'header del tema */

@media (min-width: 769px) {
    /* Hero Split */
    .hero-split {
        padding: 0 40px 120px;
        margin-top: 80px;
        height: calc(100vh - 80px);
        display: grid;
        grid-template-columns: 50% 50%; /* Sostituito 1fr 1fr */
    }

    .hero-left {
        background: #000;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px;
    }

    .hero-left-content {
        max-width: 500px;
    }

    .hero-left h1 {
        font-size: 64px;
        font-weight: 200;
        letter-spacing: 6px;
        line-height: 1.1;
        margin-bottom: 40px;
    }

    .hero-left p {
        font-size: 16px;
        line-height: 1.8;
        font-weight: 300;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .hero-cta {
        display: inline-flex;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-bottom: 1px solid #fff;
        padding-bottom: 5px;
        transition: opacity 0.3s;
    }
    
    /* Sostituzione gap con margin per hero-cta */
    .hero-cta > * {
        margin-left: 10px;
    }
    .hero-cta > *:first-child {
        margin-left: 0;
    }

    .hero-cta:hover {
        opacity: 0.6;
    }

    .hero-right {
        background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
        position: relative;
        overflow: hidden;
    }

    .hero-right::before {
        content: 'VSR';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-5deg);
        font-size: 240px;
        font-weight: 100;
        opacity: 0.05;
        letter-spacing: 20px;
    }

    /* Intro Statement */
    .intro-statement {
        padding: 120px 40px;
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

    .intro-statement h2 {
        font-size: 42px;
        font-weight: 200;
        letter-spacing: 3px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .intro-statement p {
        font-size: 16px;
        line-height: 1.8;
        font-weight: 300;
        opacity: 0.8;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Asymmetric Grid - Featured Content */
    .featured-grid {
        padding: 0 40px 120px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 50% 25% 25%;
        grid-auto-rows: 300px;
    }
    
    /* Usando nth-child per posizionare le righe */
    .grid-item {
        background: #f5f5f5;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s;
        margin: 10px; /* Sostituisce gap: 20px */
    }

    .grid-item:hover {
        transform: scale(0.98);
    }

    .grid-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        background: #000;
        color: #fff;
    }

    .grid-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .grid-item-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .grid-item-4 {
        grid-column: 2 / 4;
        grid-row: 2 / 3;
        background: #000;
        color: #fff;
    }

    .grid-item-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .grid-item-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .grid-item-7 {
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }

    .grid-content {
        padding: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .grid-label {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.6;
        margin-bottom: 15px;
    }

    .grid-title {
        font-size: 28px;
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .grid-description {
        font-size: 14px;
        font-weight: 300;
        opacity: 0.8;
        line-height: 1.6;
    }

    /* Services Strip */
    .services-strip {
        background: #000;
        color: #fff;
        padding: 80px 40px;
    }

    .services-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        /* Sostituito repeat(4, 1fr) */
        grid-template-columns: 25% 25% 25% 25%;
        background: #333;
    }
    
    /* Sostituito gap con margin */
    .service-item {
        background: #000;
        padding: 50px 35px;
        text-align: center;
        margin: 0px 0.5px; /* Sostituisce gap: 1px */
    }

    /* Rimuovi margine sinistro dal primo */
    .service-item:first-child {
        margin-left: 0;
    }
    
    /* Rimuovi margine destro dall'ultimo */
    .service-item:last-child {
        margin-right: 0;
    }
    
    .service-number {
        font-size: 14px;
        letter-spacing: 2px;
        opacity: 0.4;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 20px;
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .service-description {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.7;
        opacity: 0.7;
    }

    /* Latest Releases */
    .releases-section {
        padding: 120px 40px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .releases-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
        padding: 0px 70px;
    }

    .releases-header h2 {
        font-size: 36px;
        font-weight: 200;
        letter-spacing: 2px;
    }

    .view-all {
        color: #000;
        text-decoration: none;
        font-size: 13px;
        letter-spacing: 1px;
        border-bottom: 1px solid #000;
        transition: opacity 0.3s;
    }

    .view-all:hover {
        opacity: 0.5;
    }

    .release-item:hover {
        opacity: 0.8;
    }

    .release-item a {
        text-decoration: none;
        color: inherit;
    }

    .release-cover {
        aspect-ratio: 1;
        background: #f5f5f5;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .release-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .release-artist {
        font-size: 12px;
        opacity: 0.6;
        margin-bottom: 5px;
    }

    .release-name {
        font-size: 14px;
        font-weight: 300;
    }

    /* Carousel Wrapper */
    .carousel-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }
    
    /* Sostituito gap con margin */
    .carousel-wrapper > * {
        margin-left: 20px;
    }
    .carousel-wrapper > *:first-child {
        margin-left: 0;
    }

    .releases-carousel-container {
        flex: 1;
        overflow: hidden;
    }

    .releases-carousel {
        display: flex;
        transition: transform 0.4s ease;
    }
    
    /* NO margin qui - lo gestiamo diversamente */

    .release-item {
        width: calc((100% - 80px) / 5); /* width invece di max-width */
        min-width: calc((100% - 80px) / 5); /* aggiungi anche min-width */
        flex-shrink: 0;
        cursor: pointer;
        transition: opacity 0.3s;
        margin-right: 20px; /* margine solo a destra */
    }
    
    .release-item:last-child {
        margin-right: 0; /* rimuovi margine dall'ultimo */
    }

    /* Frecce */
    .carousel-arrow {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    .carousel-arrow:hover {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    .carousel-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .carousel-arrow:disabled:hover {
        background: #fff;
        color: #000;
        border-color: #ddd;
    }
    
    .carousel-arrows-mobile {
        display: none; /* Nascondi frecce mobile */
    }
    
    .carousel-arrow-desktop {
        display: flex; /* Mostra frecce desktop */
    }

    /* Dots indicator */
    .carousel-dots {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    
    /* Sostituito gap con margin */
    .carousel-dots > * {
        margin-left: 10px;
    }
    .carousel-dots > *:first-child {
        margin-left: 0;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s;
    }

    .carousel-dot.active {
        background: #000;
        width: 24px;
        border-radius: 4px;
    }

    /* Artists Section - Our Roster */
    .artists-view-all{
        max-width: 1400px;
        text-align: right;
        margin: 0 auto 20px;
    }
    
    .view-all-artists {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        letter-spacing: 1px;
        border-bottom: 1px solid #fff;
        transition: opacity 0.3s;
        text-align: right;
        margin: 0px 15px;
    }
    .view-all-artists:hover {
        opacity: 0.5;
    }
    .artists-section {
        background: #000;
        color: #fff;
        padding: 120px 40px;
    }

    .artists-intro {
        max-width: 1400px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .artists-intro h2 {
        font-size: 42px;
        font-weight: 200;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .artists-intro p {
        font-size: 16px;
        font-weight: 300;
        opacity: 0.7;
    }

    .artists-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        /* Sostituito repeat(4, 1fr) */
        grid-template-columns: 25% 25% 25% 25%;
    }
    
    /* Sostituito gap con margin */
    .artists-grid > * {
        margin: 15px;
    }

    .artist-card {
        background: rgba(255, 255, 255, 0.03);
        padding: 40px 30px;
        text-align: center;
        transition: background 0.3s;
        cursor: pointer;
    }

    .artist-card:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .artist-card a {
        color: inherit;
        text-decoration: none;
    }

    .artist-card-name {
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .artist-card-genre {
        font-size: 12px;
        opacity: 0.5;
        letter-spacing: 1px;
    }

    /* Newsletter */
    .newsletter {
        padding: 120px 40px;
        background: #f9f9f9;
    }

    .newsletter-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .newsletter-content h2 {
        font-size: 36px;
        font-weight: 200;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .newsletter-content p {
        font-size: 16px;
        font-weight: 300;
        opacity: 0.7;
        margin-bottom: 40px;
    }

    .newsletter-form {
        display: flex;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Sostituito gap con margin */
    .newsletter-form > * {
        margin-left: 10px;
    }
    .newsletter-form > *:first-child {
        margin-left: 0;
    }

    .newsletter-input {
        flex: 1;
        padding: 15px 20px;
        border: 1px solid #ddd;
        font-size: 14px;
        font-family: inherit;
    }

    .newsletter-button {
        padding: 15px 35px;
        background: #000;
        color: #fff;
        border: none;
        font-size: 13px;
        letter-spacing: 1px;
        cursor: pointer;
        transition: background 0.3s;
        font-family: inherit;
    }

    .newsletter-button:hover {
        background: #333;
    }
    }
    
    /* ========================================
       RESPONSIVE - MOBILE
       ======================================== */
    @media (max-width: 768px) {
        /* Hero Split */
        .hero-split {
            padding: 0px 0px 0px;
            margin-top: 20px;
            height: auto;
            display: block;
        }

        .hero-left {
            background: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2em 1em;
            box-sizing: border-box;
            max-width: 100%;
            min-height: 50vh;
        }

        .hero-left-content {
            max-width: 100%;
        }

        .hero-left h1 {
            font-size: 32px;
            font-weight: 200;
            letter-spacing: 4px;
            line-height: 1.1;
            box-sizing: border-box;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .hero-left p {
            font-size: 16px;
            line-height: 1.8;
            font-weight: 300;
            margin-top: 10px;
            margin-bottom: 30px;
            opacity: 0.9;
            box-sizing: border-box;
            max-width: 100%;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-bottom: 1px solid #fff;
            padding-bottom: 5px;
            transition: opacity 0.3s;
        }
        
        .hero-cta > * {
            margin-left: 10px;
        }
        .hero-cta > *:first-child {
            margin-left: 0;
        }

        .hero-cta:hover {
            opacity: 0.6;
        }
        
        .hero-right {
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            position: relative;
            overflow: hidden;
            min-height: 45vh;
        }

        .hero-right::before {
            content: 'VSR';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-5deg);
            font-size: 120px;
            font-weight: 100;
            opacity: 0.05;
            letter-spacing: 15px;
        }

        /* Intro Statement */
        .intro-statement {
            padding: 2em 1em;
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
        }

        .intro-statement h2 {
            font-size: 28px;
            font-weight: 200;
            letter-spacing: 2px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .intro-statement p {
            font-size: 16px;
            line-height: 1.8;
            font-weight: 300;
            opacity: 0.8;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Asymmetric Grid - Featured Content */
        .featured-grid {
            max-width: 100%;
            margin: 0;
            padding: 20px;
        }

        .grid-container {
            display: grid;
            grid-template-columns: 100%;
            grid-auto-rows: 180px;
        }

        .grid-item {
            grid-column: auto;
            grid-row: auto;
            margin: 5px 0;
        }

        .grid-item:hover {
            transform: scale(0.98);
        }

        .grid-item:nth-child(odd) {
            background: #000;
            color: #fff;
        }

        .grid-item:nth-child(even) {
            background: #f5f5f5;
            color: #000;
        }

        .grid-content {
            padding: 30px 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .grid-label {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 10px;
        }

        .grid-title {
            font-size: 22px;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .grid-description {
            font-size: 13px;
            font-weight: 300;
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Services Strip */
        .services-strip {
            max-width: 100%;
            width: 100%;
            background: #000;
            color: #fff;
            padding: 40px 20px;
        }

        .services-container {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            /* Sostituito 1fr 1fr */
            grid-template-columns: 50% 50%;
            background: #333;
        }
        
        /* Sostituito gap con margin */
        .service-item {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            background: #000;
            padding: 30px 15px;
            text-align: center;
        }
        
        .service-item.service-item1 {
            margin: 0px 1px 1px 0px;
        }
        .service-item.service-item2 {
            margin: 0px 0px 1px 1px;
        }
        .service-item.service-item3 {
            margin: 1px 1px 0px 0px;
        }
        .service-item.service-item4 {
            margin: 1px 0px 0px 1px;
        }
        
        .service-number {
            font-size: 12px;
            letter-spacing: 2px;
            opacity: 0.4;
            margin-bottom: 15px;
        }

        .service-title {
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .service-description {
            font-size: 13px;
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.7;
        }

        /* Latest Releases */
        .releases-section {
            display: block;
            padding: 40px 20px;
            max-width: 100%;
            width: 100%;
            margin: 20px 0;
        }

        .releases-header {
            display: block;
            margin-bottom: 40px;
        }

        .releases-header h2 {
            font-size: 28px;
            font-weight: 200;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-align: center;
        }

        .view-all {
            color: #000;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 1px;
            transition: opacity 0.3s;
            text-align: right;
            display: block;
            padding: 0px 20px;
        }

        .view-all:hover {
            opacity: 0.5;
        }

        /* Carousel Wrapper */
        .carousel-wrapper {
            position: relative;
            display: block;
        }

       .releases-carousel-container {
            order: 1;
            overflow: hidden; /* IMPORTANTE */
            width: 100%;
            margin-bottom: 20px;
            position: relative;
        }
    
        .releases-carousel {
            display: flex;
            flex-direction: column;
            transition: transform 0.4s ease;
        }
        
        .release-item {
            width: 100%;
            flex-shrink: 0;
            padding: 0 20px;
            box-sizing: border-box;
            cursor: pointer;
            transition: opacity 0.3s;
            margin-bottom: 30px;
        }
        
        /* Rimuovi margin dall'ultimo elemento di ogni gruppo di 5 */
        .release-item:nth-child(5n) {
            margin-bottom: 30px; /* Mantieni il margine per separare i gruppi */
        }
        
        /* Solo l'ultimo elemento assoluto senza margine */
        .release-item:last-child {
            margin-bottom: 0;
        }
        
        .release-item:hover {
            opacity: 0.8;
        }
    
        .release-item a {
            text-decoration: none;
            color: inherit;
        }
    
        .release-cover {
            aspect-ratio: 1;
            background: #f5f5f5;
            margin-bottom: 15px;
            overflow: hidden;
        }
    
        .release-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    
        .release-artist {
            font-size: 12px;
            opacity: 0.6;
            margin-bottom: 5px;
        }
    
        .release-name {
            font-size: 14px;
            font-weight: 300;
        }
        
        /* Frecce - DOPO IL CONTAINER E CON STILE DESKTOP */
        .carousel-arrows-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        
        .carousel-arrows-container > * {
            margin-left: 15px;
        }
        .carousel-arrows-container > *:first-child {
            margin-left: 0;
        }
        
        .carousel-arrow {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .carousel-arrow:hover {
            background: #000;
            color: #fff;
            border-color: #000;
        }

        .carousel-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-arrow:disabled:hover {
            background: #fff;
            color: #000;
            border-color: #ddd;
        }

        .carousel-arrow-desktop {
            display: none; /* Nascondi frecce desktop */
        }
        
        .carousel-arrows-mobile {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-arrows-mobile > * {
            margin-left: 15px;
        }
        .carousel-arrows-mobile > *:first-child {
            margin-left: 0;
        }
    
        /* Dots indicator */
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-dots > * {
            margin-left: 8px;
        }
        .carousel-dots > *:first-child {
            margin-left: 0;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: #000;
            width: 24px;
            border-radius: 4px;
        }

        /* Artists Section - OUR ROSTER - GRIGLIA 2x2 */
        .artists-section {
            background: #000;
            color: #fff;
            padding: 60px 20px;
        }

        .artists-intro {
            max-width: 100%;
            margin: 0 auto 40px;
            text-align: center;
        }

        .artists-intro h2 {
            font-size: 28px;
            font-weight: 200;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .artists-intro p {
            font-size: 14px;
            font-weight: 300;
            opacity: 0.7;
            line-height: 1.6;
        }

        .view-all-artists {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 1px;
            transition: opacity 0.3s;
            text-align: center;
            display: block;
            margin-bottom: 30px;
        }
        
        .view-all-artists:hover {
            opacity: 0.5;
        }

        /* GRIGLIA 2x2 per roster mobile */
        .artists-grid {
            max-width: 100%;
            margin: 0 auto;
            display: grid;
            /* Sostituito 1fr 1fr */
            grid-template-columns: 50% 50%;
        }
        
        /* Sostituito gap con margin */
        .artists-grid > * {
            margin: 5px;
        }

        .artist-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 25px 15px;
            text-align: center;
            transition: background 0.3s;
            cursor: pointer;
        }

        .artist-card:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .artist-card a {
            color: inherit;
            text-decoration: none;
        }

        .artist-card-name {
            font-size: 15px;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .artist-card-genre {
            font-size: 11px;
            opacity: 0.5;
            letter-spacing: 1px;
        }

        /* Newsletter */
        .newsletter {
            padding: 60px 20px;
            background: #f9f9f9;
        }

        .newsletter-content {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-content h2 {
            font-size: 28px;
            font-weight: 200;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .newsletter-content p {
            font-size: 14px;
            font-weight: 300;
            opacity: 0.7;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .newsletter-form > * {
            margin-top: 10px;
        }
        .newsletter-form > *:first-child {
            margin-top: 0;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #ddd;
            font-size: 14px;
            font-family: inherit;
            box-sizing: border-box;
        }

        .newsletter-button {
            width: 100%;
            padding: 15px 35px;
            background: #000;
            color: #fff;
            border: none;
            font-size: 13px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.3s;
            font-family: inherit;
            box-sizing: border-box;
        }

        .newsletter-button:hover {
            background: #333;
        }
    }