/* VARIABLES & RESET */
:root {
    --bg: #121212;
    --surface: #2C2C2C;
    --accent: #C62828;
    --text-sec: #9E9E9E;
    --text-main: #EBEBEB;
    
    --font-heading: 'Cinzel', serif;
    --font-p: 'Crimson Text', serif;
    --font-ui: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 85px;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-p);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 85px;
}

body.no-scroll, html.no-scroll {
    overflow: hidden !important;
    touch-action: none;
}

/* LOADER */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100dvh;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-cube {
    position: absolute;
    top: 50%;
    height: 80%;
    width: auto;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.loader-cube-left {
    left: 0;
    transform: translate(-50%, -50%);
    animation: rotateLoaderCubeLeft 15s linear infinite;
}

.loader-cube-right {
    right: 0;
    transform: translate(50%, -50%);
    animation: rotateLoaderCubeRight 15s linear infinite;
}

@keyframes rotateLoaderCubeLeft {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateLoaderCubeRight {
    from { transform: translate(50%, -50%) rotate(0deg); }
    to { transform: translate(50%, -50%) rotate(-360deg); }
}

.loader-content {
    text-align: center;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.logo-loader {
    max-width: 200px;
    width: 80%;
    margin-bottom: 30px;
}

.progress-bar-container {
    width: 250px;
    height: 4px;
    background: var(--surface);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 1.5s ease;
}

/* TYPOGRAPHY */
h1, h2, h3, .nav-brand a, .section-title {
    font-family: var(--font-heading);
    color: var(--accent);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER & NAVIGATION */
header {
    position: fixed;
    top: 0; width: 100%;
    background: #171717;
    height: 85px;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-nav {
    height: 45px;
    width: auto;
}

.hidden-brand {
    opacity: 0;
    visibility: hidden;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-menu a:not(.active-lang):not(.logo-nav a)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--text-main);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-main);
}

.nav-menu a:not(.active-lang):hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.3rem;
}

.lang-switcher a {
    color: var(--accent) !important;
    text-decoration: none;
}

.lang-switcher a:not(.active-lang) {
    opacity: 0.4;
}

.lang-switcher a::after {
    display: none !important;
}

.lang-switcher span {
    color: var(--accent);
    user-select: none;
}

/* MOBILE MENU */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px; height: 3px;
    background: var(--accent);
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100dvh;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-menu li {
    margin: 3vh 0;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: min(1.8rem, 6vh);
    color: var(--accent);
}

.mobile-menu .lang-switcher {
    display: flex;
    justify-content: center;
}

.mobile-ds-logo {
    position: absolute;
    bottom: 30px;
}

.mobile-ds-logo img {
    width: 100px;
    filter: brightness(0) invert(1);
}

/* HERO SECTION */
#hero {
    height: calc(100dvh - 85px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('img/hero/hero1.webp') center/cover;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-hero {
    max-width: 180px;
    width: 50%;
    margin-bottom: 10px;
}

.hero-separator {
    width: 40px;
    height: 1px;
    background-color: var(--accent);
    border: none;
    margin: 15px auto;
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.hero-address {
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: var(--font-p);
    color: var(--text-main);
}

.hero-address i {
    color: var(--accent);
    margin-right: 5px;
}

/* SPLIT SECTIONS */
.split-section {
    display: flex;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-img {
    flex: 0 0 50vw;
    width: 50vw;
    height: 100%;
}

.split-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.split-text {
    flex: 0 0 50vw;
    width: 50vw;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    overflow-y: auto;
    position: relative;
    overflow: hidden;
}

.bg-mandala {
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    width: auto;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.split-text h2, .split-text p, .split-text a {
    position: relative;
    z-index: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.split-text p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--bg);
}

#about .horizontal-gallery img,
#collaboratori .horizontal-gallery img {
    height: 100%;
    width: 100%;
    min-width: 50vw;
    flex: 0 0 50vw;
    object-fit: cover;
    object-position: center !important;
    display: block;
    scroll-snap-align: center;
}

#about .horizontal-gallery img:nth-child(2),
#about .horizontal-gallery img:nth-child(3) {
    display: none;
}

#about .gallery-progress-bar-container {
    display: none;
}

/* WORKS & MARQUEE */
#works {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
}

.marquee-wrapper {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.marquee-container {
    position: absolute;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee span {
    font-family: var(--font-ui);
    color: rgba(235, 235, 235, 0.08);
    font-size: 1.8rem;
    font-weight: 700;
    padding-right: 30px;
}

.marquee-wrapper .section-title {
    position: relative;
    z-index: 2;
    font-size: 4rem;
    text-align: center;
}

.marquee-wrapper .section-title span {
    background: var(--bg);
    padding: 0 10px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* GALLERIES */
.works-galleries {
    width: 100vw;
}

.gallery-row {
    display: flex;
    height: 50vw;
    width: 100vw;
}

.gallery-row.reverse {
    flex-direction: row-reverse;
}

.gallery-title {
    flex: 0 0 50vw;
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121212;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.gallery-bg-cube {
    position: absolute;
    top: 50%;
    height: 80%;
    width: auto;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.gallery-bg-cube.left-cube {
    left: 0;
    transform: translate(-50%, -50%);
}

.gallery-bg-cube.right-cube {
    right: 0;
    transform: translate(50%, -50%);
}

.gallery-title h3 {
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--text-main);
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.gallery-description {
    font-family: var(--font-p);
    font-size: 1.3rem;
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.gallery-container {
    flex: 0 0 50vw;
    width: 50vw;
    overflow: hidden;
    position: relative;
}

.horizontal-gallery {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: pointer;
}

.horizontal-gallery::-webkit-scrollbar {
    display: none;
}

#works .horizontal-gallery img,
#works .horizontal-gallery video {
    height: 50vw;
    width: 50vw;
    min-width: 50vw;
    flex: 0 0 50vw;
    object-fit: cover;
    object-position: center;
    scroll-snap-align: center;
    pointer-events: none;
}

.gallery-row:nth-of-type(1) .horizontal-gallery video {
    display: none;
}

.gallery-progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10;
}

.gallery-progress-bar {
    width: 0%;
    height: 100%;
    background: #C62828;
    transition: width 0.1s linear;
}

/* MERCH SECTION */
#merch {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
}

.merch-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    padding: 0 20px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 50px 50px;
    margin: 0 auto;
}

.merch-item {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: 0.3s;
}

.merch-img-container {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
}

#merch .horizontal-gallery {
    height: 100%;
    width: 100%;
}

#merch .horizontal-gallery img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    scroll-snap-align: center;
    pointer-events: none;
}

.merch-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: var(--surface);
    border-radius: 8px;
    margin-top: 15px;
}

.merch-name {
    color: var(--text-main);
    font-family: var(--font-p);
    font-size: 1.5rem;
    width: 100%;
}

.merch-price {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
    text-align: right;
    margin-top: 10px;
}

.instagram-banner {
    background: var(--surface);
    text-align: center;
    padding: 70px 20px;
}

.ig-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.ig-link span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
}

.ig-link span::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0%; height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.ig-link:hover span::after {
    width: 100%;
}

.ig-link i {
    font-size: 3.5rem;
    color: var(--accent);
}

/* REVIEWS SECTION */
#reviews {
    padding: 100px 50px;
}

.reviews-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 3rem;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.google-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--text-main);
    font-size: 1.8rem;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.review-card h3 {
    font-family: var(--font-ui);
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.review-card p {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--text-sec);
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

/* CONTACTS SECTION */
#contatti {
    padding: 100px 50px 50px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
}

.contact-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 50px;
    flex: 1;
}

.text-left {
    text-align: left;
    margin-bottom: 40px;
    font-size: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
}

.contact-info a i {
    color: var(--accent);
    margin-right: 20px;
    width: 35px;
    text-align: center;
    font-size: 1.8rem;
}

.contact-info a:hover {
    color: var(--accent);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 18px;
    background: var(--bg);
    border: 1px solid var(--text-sec);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-ui);
    font-size: 1.1rem;
    outline: none;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--text-sec);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent);
}

#form-status {
    margin-top: 10px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
}

/* LOCATION SECTION */
#location {
    padding: 50px;
}

.location-title {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.location-wrapper {
    display: flex;
    gap: 40px;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
}

.location-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-address {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 20px;
}

.big-address i {
    font-size: 3rem;
    color: var(--accent);
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* FOOTER */
footer {
    background: #171717;
    padding: 50px 20px;
    text-align: center;
    font-family: var(--font-ui);
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-contacts a {
    color: var(--text-main);
    font-size: 1.8rem;
    transition: 0.3s;
}

.footer-contacts a:hover {
    color: var(--accent);
}

.piva {
    color: var(--text-sec);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.footer-credit img {
    width: 140px;
    filter: brightness(0) invert(1);
}

/* BACK TO TOP */
#btt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

#btt.visible {
    opacity: 1;
    visibility: visible;
}

#btt.hidden-forced {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

#btt img {
    width: 60px;
    margin-bottom: 5px;
}

#btt span {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-main);
}

/* UTILITIES & ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* PRIVACY BANNER & BLUR */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(23, 23, 23, 0.98);
    padding: 30px 20px;
    z-index: 10000;
    border-top: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: bottom 0.5s ease;
}

#cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
}

.cookie-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--accent);
    font-family: var(--font-heading);
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.blur-active {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.4s ease;
}

/* PRIVACY PAGE STYLES */
.privacy-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
}

/* MEDIA QUERIES */
@media(max-height: 700px) and (max-width: 992px) {
    .mobile-menu li {
        margin: 15px 0;
    }
    .mobile-menu a {
        font-size: min(1.5rem, 5vh);
    }
    .mobile-menu .lang-switcher {
        font-size: 1.2rem;
    }
    .mobile-ds-logo {
        bottom: 15px;
    }
}

@media(max-width: 992px) {
    html {
        scroll-padding-top: 75px;
    }
    
    body {
        padding-top: 75px;
    }
    
    header {
        height: 75px;
        padding: 0 30px;
    }
    
    #hero {
        height: calc(100dvh - 75px);
    }

    .loader-cube {
        height: 45%;
    }

    .mobile-menu a {
        font-size: min(1.5rem, 5vh);
    }

    .nav-menu { display: none; }
    .hamburger { display: flex; }
    
    .logo-nav { height: 35px; }
    
    .split-section { height: auto; flex-direction: column-reverse; }
    .split-section.reverse { flex-direction: column-reverse; }
    .split-img, .split-text { width: 100%; flex: 0 0 auto; height: auto; }
    .split-img { height: 50vh; }
    
    .split-text { 
        padding: 40px 20px; 
        text-align: center; 
        align-items: center; 
    }
    
    .split-text h2, .split-text p { text-align: center; }

    #about .horizontal-gallery img:nth-child(2),
    #about .horizontal-gallery img:nth-child(3) {
        display: block;
    }

    #about .gallery-progress-bar-container {
        display: block;
    }

    .gallery-row { flex-direction: column; height: auto; }
    .gallery-row.reverse { flex-direction: column; }
    
    .gallery-title { 
        width: 100vw; 
        height: 100vw; 
        flex: 0 0 100vw; 
    }
    
    .gallery-bg-cube {
        height: 100%;
    }
    
    .gallery-container { 
        width: 100vw; 
        height: 100vw;
        flex: 0 0 100vw; 
    }

    #works .horizontal-gallery img,
    #works .horizontal-gallery video,
    #about .horizontal-gallery img,
    #collaboratori .horizontal-gallery img {
        width: 100vw;
        height: 100vw;
        flex: 0 0 100vw;
        min-width: 100vw;
    }

    #about .horizontal-gallery img,
    #collaboratori .horizontal-gallery img {
        height: 50vh;
    }

    .gallery-row:nth-of-type(1) .horizontal-gallery video {
        display: block;
    }

    .merch-grid { 
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    
    .merch-grid::-webkit-scrollbar { display: none; }
    
    .merch-item {
        flex: 0 0 auto;
        width: 100%;
    }

    .merch-item .gallery-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        flex: none !important;
    }

    .merch-item .horizontal-gallery img {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .reviews-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        scrollbar-width: none;
        padding-bottom: 20px;
    }
    
    .reviews-container::-webkit-scrollbar { display: none; }
    
    .review-card {
        flex: 0 0 85%;
        aspect-ratio: 1 / 1;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    .review-card p {
        flex: 1;
        overflow-y: auto;
        padding-right: 5px;
    }
    
    .contact-wrapper, .location-wrapper {
        flex-direction: column;
    }
    
    .contact-card, .location-info {
        text-align: center;
        align-items: center;
    }
    
    .contact-card.left-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
    }
    
    .text-left { text-align: center; width: 100%; }
    
    .big-address i { font-size: 1.5rem; }
    
    .location-map {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .location-map iframe {
        max-width: 600px;
    }
    
    #btt img { width: 40px; margin-bottom: 2px; }
    #btt span { font-size: 0.7rem; }

    .privacy-wrapper { padding: 100px 20px 40px 20px; }
    .privacy-wrapper h1 { font-size: 2rem; }
    .privacy-wrapper h2 { font-size: 1.5rem; }

    .btn-primary:hover {
        background: transparent !important;
        color: var(--accent) !important;
    }
    .contact-info a:hover {
        color: var(--text-main) !important;
    }
    .footer-contacts a:hover {
        color: var(--text-main) !important;
    }
    .ig-link:hover span::after {
        width: 0% !important;
    }
}

@media(max-width: 600px) {
    html {
        scroll-padding-top: 65px;
    }
    
    body {
        padding-top: 65px;
    }
    
    header {
        height: 65px;
        padding: 0 20px;
    }
    
    #hero {
        height: calc(100dvh - 65px);
    }
    
    .logo-hero { width: 60%; max-width: 150px; }
    .hero-subtitle { font-size: 1.2rem; }
    #contatti, #location, #reviews { padding: 50px 20px; }
    .contact-card { padding: 30px 20px; }
    .marquee-wrapper .section-title { font-size: 2.5rem; }
    .text-left { font-size: 2.2rem; }
    .big-address { font-size: 1.3rem; flex-direction: column; text-align: center; }
    .ig-link { flex-direction: column; }
    .ig-link span { font-size: 1.5rem; text-align: center; }
    
    .merch-item {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .mobile-menu li {
        margin: 15px 0;
    }
    .mobile-menu a {
        font-size: 1.2rem;
    }
}