/* Compiled site styles moved to public for direct linking */
:root {
    --rose-color: #e45858;
    --text-color: #2b2b2b;
}

/* Enable browser-level scroll when zoomed */
html {
    overflow: auto;
    height: auto;
}

/* Custom rose cursor for entire site */
* {
    cursor: url('/images/mouse_icon_cursor.png') 16 16, auto !important;
}

body,
html {
    cursor: url('/images/mouse_icon_cursor.png') 16 16, auto !important;
}

a,
button,
[role="button"] {
    cursor: url('/images/mouse_icon_cursor.png') 16 16, auto !important;
}

body.homepage {
    background: #fff;
    margin: 0;
    color: var(--text-color);

    overflow: hidden;
    min-height: 100vh;
}

.rose-hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.rose-bg {
    width: min(78vw, 700px);
    max-width: 100%;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
    margin: 0 auto
}

.site-title {
    position: absolute;
    inset: auto 0 auto 0;
    text-align: center;
    color: #2f2f2f;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: clamp(32px, 6vw, 84px);
    pointer-events: none
}

.mini-rose {
    width: 80px;
    height: 80px;
    display: block
}

.footer-note {
    position: fixed;
    right: 1.25rem;
    bottom: 1rem;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.3;
    color: #666;
    font-weight: 700;
    font-family: 'Source Code Pro', monospace;
}

#rose-img {
    cursor: pointer
}

.fancy-heading {
    font-family: "Times New Roman", Times, serif;
    letter-spacing: 1px
}

.menu-list-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.menu-list ul {
    margin: 0;
    padding: 0;
}



.menu-list .menu-link {
    color: #e74c3c;
    text-decoration: none;
    font-style: italic;
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: clamp(48px, 8vw, 92px);
    -webkit-text-stroke: 5px #000000;
    text-stroke: 5px #000000;
    paint-order: stroke fill;
}

.menu-list .menu-link:hover {
    color: var(--rose-color);
    text-decoration: underline
}

/* ============================================
   MOBILE RESPONSIVE - ONLY FOR MOBILE DEVICES
   ============================================ */
@media (max-width: 767px) {

    /* Home page - keep it exactly like desktop */
    body.homepage {
        overflow: hidden !important;
        height: 100vh !important;
    }

    .rose-hero {
        height: 100vh !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .rose-bg {
        width: min(85vw, 500px) !important;
        max-width: 100% !important;
    }

    /* Footer stays visible on mobile */
    .footer-note {
        position: fixed !important;
        font-size: 9px !important;
        padding: 0.3rem !important;
        right: 0.5rem !important;
        bottom: 0.5rem !important;
        max-width: 200px !important;
        z-index: 100 !important;
        line-height: 1.2 !important;
    }

    /* Other pages can scroll */
    body:not(.homepage) {
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto !important;
    }

    main:not(.rose-hero) {
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto !important;
    }

    /* Bigger touch target for rose icon */
    .mini-rose {
        width: 40px;
        height: 40px;
    }
}

/* Peek-style release slider */
.releases-page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Squadra page specific - fixed height, no scrolling */
body:has(.squadra-grid) .releases-page-wrapper {
    overflow: hidden;
    height: 100vh;
}

.releases-header {
    text-align: left;
    padding: 1rem 0 0 0;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

.release-peek-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex: 1;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    margin-top: -3rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.release-peek-wrapper::-webkit-scrollbar {
    display: none;
}

.release-peek-track {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 calc(50vw - 240px);
    min-width: min-content;
}

.release-peek-slide {
    flex: 0 0 34vw;
    max-width: 480px;
    position: relative;
    opacity: .35;
    transform: scale(.82);
    transition: transform .6s ease, opacity .6s ease;
    scroll-snap-align: center;
}

.release-peek-slide > img {
    width: 100%;
    height: 64vh;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, .35);
}

.release-peek-slide.active {
    opacity: 1;
    transform: scale(1);
}

.release-peek-slide.active > img,
.release-peek-slide.active .flip-card-front img {
    outline: 2px solid rgba(0, 0, 0, .15);
}

.peek-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -62px;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
    color: #222;
    opacity: 0;
    transition: opacity .4s ease;
}

.release-peek-slide.active .peek-caption {
    opacity: 1;
}

.release-details {
    text-align: center;
    margin-top: 1rem;
}

.release-details h2 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* Flip Card Styles for Releases */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 64vh;
    perspective: 1000px;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.35);
}

.flip-card-front {
    background-color: #fff;
    color: black;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.flip-card-back {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.social-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    max-width: 90%;
}

.social-icon-link {
    color: #fff;
    font-size: 3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    min-width: 60px;
    min-height: 60px;
}

.social-icon-link:hover {
    color: var(--rose-color);
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon-link i {
    display: block;
}

.release-link {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.release-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.peek-nav {
    background: none;
    border: 0;
    color: #222;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    padding: 12px 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s ease, transform .3s ease;
}

.peek-nav:hover {
    color: var(--rose-color);
    transform: scale(1.1);
}

.peek-nav.prev {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.peek-nav.next {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:767px) {
    .release-peek-track {
        gap: 32px;
        padding: 0 18vw;
    }

    .release-peek-slide {
        flex: 0 0 58vw;
    }

    .release-peek-slide img {
        height: 56vh;
    }

    .peek-caption {
        bottom: -54px;
        font-size: 12px;
    }
}

/* About page styling */
.about-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.about-title {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    margin: 0;
    color: #1a1a1a;
}

.about-rose {
    width: clamp(60px, 10vw, 100px);
    height: auto;
    opacity: 0.9;
}

.about-bio {
    text-align: left;
}

.bio-text {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(11px, 1.4vw, 14px);
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.bio-credit {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(10px, 1.2vw, 12px);
    line-height: 1.4;
    color: #666;
    margin-top: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-page {
        padding: 0 1.5rem 2rem;
    }

    .about-header {
        margin-bottom: 2rem;
        margin-top: -1rem;
    }
}

/* About details page - remove top margin */
.row.g-4 {
    margin-top: 0 !important;
}

.row.g-4 .col-12:first-child {
    padding-top: 0;
    margin-top: 0;
}

.row.g-4 .fancy-heading {
    margin-top: 0;
    padding-top: 0;
}

/* Make lead text bolder */
.lead {
    font-weight: 600;
}

/* About typography page */
.about-typography-page {
    padding: 2rem 0;
    max-width: 100%;
}

.about-type-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-type-title {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    margin: 0;
    color: #e74c3c;
    line-height: 1;
    -webkit-text-stroke: 5px #000000;
    text-stroke: 5px #000000;
    paint-order: stroke fill;
}

/* Live Sets page full-height layout */
/* Live Sets redesigned layout */
/* Live Sets Page */
.live-sets-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
    overflow: hidden;
}

.live-sets-header {
    text-align: left;
    padding: 1rem 0 0 0;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
}

/* Carousel Wrapper */
.live-carousel-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
}

.live-carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: visible;
}

.live-carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.live-carousel-item:hover {
    transform: scale(1.05);
}

.live-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.live-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.live-play-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: opacity 0.3s ease;
}

.live-carousel-item:hover .live-play-overlay,
.live-set-slide:hover .live-play-overlay {
    opacity: 1;
}

.live-item-title {
    margin-top: 0.75rem;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
}

/* Video Modal/Popup */
.live-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.live-video-modal.active {
    display: flex;
}

.live-video-modal-content {
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.live-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-modal-close:hover {
    color: #ccc;
}

.live-video-modal .ratio {
    flex-shrink: 0;
}

.live-video-modal iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.live-video-info {
    padding: 1.5rem 2rem;
    background: white;
    flex-shrink: 0;
}

.live-video-info h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
}

.live-video-info p {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .live-carousel {
        gap: 1.5rem;
    }

    .live-carousel-item {
        flex: 0 0 250px;
    }

    .live-video-modal {
        padding: 1rem;
    }

    .live-modal-close {
        top: -35px;
        font-size: 32px;
    }
}

.about-type-subtitle {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(14px, 2vw, 20px);
    font-style: italic;
    font-weight: 600;
    color: #999;
    margin: 0;
    align-self: flex-end;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

.typography-samples {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    text-align: center;
}

/* About description styling */
.about-description {
    max-width: 1150px;
    margin: auto;
    margin-top: -1.5rem;
    font-family: 'Helvetica', sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.6;
    color: #ffd700;
    -webkit-text-stroke: 5px #000000;
    text-stroke: 5px #000000;
    paint-order: stroke fill;
}

.type-sample {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.sample-inline {
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
}

.type-sample-1 {
    margin-bottom: 1rem;
}

.sample-label {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(12px, 1.8vw, 18px);
    font-weight: 400;
    color: #e74c3c;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sample-note {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(11px, 1.5vw, 16px);
    font-style: italic;
    font-weight: 600;
    color: #666;
    margin-left: 1rem;
}

.type-sample-2 {
    margin-bottom: 2rem;
}

.sample-main {
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 2px;
    color: #000;
    line-height: 1;
}

.sample-detail {
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: clamp(11px, 1.6vw, 18px);
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 0.25rem;
}

.type-sample-3 {
    margin-top: 1rem;
}

.sample-specs {
    font-family: "Oswald", system-ui, sans-serif;
    font-size: clamp(13px, 1.8vw, 20px);
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

.sample-meta {
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(10px, 1.4vw, 15px);
    font-style: italic;
    color: #999;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {

    /* About & Contact Pages */
    .about-typography-page {
        padding: 0 !important;
        min-height: 100vh !important;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        overflow-y: auto !important;
    }

    .about-type-header {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
        width: 100%;
        text-align: left !important;
        padding: 1rem 0 0 1rem !important;
        flex-shrink: 0;
    }

    .about-type-title {
        font-size: clamp(36px, 11vw, 55px) !important;
    }

    .typography-samples {
        gap: 0.5rem !important;
        padding: 1rem 1.5rem !important;
        margin: auto !important;
        width: 100%;
        max-width: 100%;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        flex: 1 !important;
    }

    .typography-samples p {
        font-size: clamp(16px, 4vw, 22px) !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }

    /* About description mobile */
    .about-description {
        font-size: 18px !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin-top: 0 !important;
    }

    .contact-section-title {
        font-size: 17px !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        display: block !important;
    }

    .contact-email {
        font-size: 15px !important;
        word-break: break-all;
        line-height: 1.3 !important;
        display: block !important;
        margin-bottom: 1rem !important;
    }

    .type-sample {
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
    }

    .social-links-section {
        margin-top: 0.5rem !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .social-icons {
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .social-icon {
        font-size: 26px !important;
        margin: 0 8px !important;
        padding: 0 !important;
        display: inline-block !important;
    }

    .type-sample.sample-inline {
        margin-top: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    /* Releases Page */
    .releases-page-wrapper {
        height: auto;
        min-height: 100vh;
    }

    .releases-header {
        padding: 70px 1rem 0 1rem;
    }

    .release-peek-wrapper {
        margin-top: 1rem;
        padding: 1rem 0;
    }

    .release-peek-track {
        padding: 0 5vw;
        gap: 10px;
    }

    .release-peek-slide {
        flex: 0 0 70vw;
        max-width: 300px;
    }

    .release-peek-slide.is-active {
        transform: scale(1);
        opacity: 1;
    }

    .release-details h2 {
        font-size: 20px !important;
    }

    .release-details p {
        font-size: 12px !important;
    }

    /* Flip card mobile styles */
    .flip-card {
        height: 50vh;
    }

    .social-icons-container {
        gap: 1rem;
        max-width: 95%;
    }

    .social-icon-link {
        font-size: 2rem;
        padding: 0.8rem;
        min-width: 50px;
        min-height: 50px;
    }

    /* Squadra Page */
    .releases-page-wrapper .releases-header {
        padding: 1rem 0 0 1rem !important;
        margin-bottom: 3rem !important;
        flex-shrink: 0;
    }

    .squadra-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
    }

    .squadra-member {
        width: 100% !important;
        max-width: 400px !important;
        text-align: center !important;
    }

    .squadra-member img {
        height: auto !important;
        max-height: 250px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .squadra-caption h5 {
        margin-top: 0.5rem !important;
        font-size: 16px !important;
    }

    .squadra-role {
        font-size: 14px !important;
        margin: 0 !important;
    }

    /* Rose Menu Page */
    .menu-list-wrapper {
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .menu-list {
        width: 100%;
        padding: 1rem;
    }

    .menu-list ul {
        margin: 0 !important;
        padding: 0 !important;
    }



    .menu-list .menu-link {
        font-size: clamp(28px, 7vw, 36px) !important;
        line-height: 1.3 !important;
    }

    /* Live Sets Page */
    .live-sets-wrapper {
        height: auto !important;
        min-height: 100vh;
    }

    .live-sets-wrapper .about-type-header {
        padding: 70px 1rem 0 1rem;
        margin-bottom: 1rem !important;
    }

    .live-sets-content-row {
        flex-direction: column !important;
        height: auto !important;
    }

    .live-main-player {
        max-height: 50vh;
        width: 100% !important;
    }

    .live-list-column {
        width: 100% !important;
        max-height: none !important;
        padding: 1rem !important;
    }

    .live-set-item {
        padding: 0.75rem !important;
    }

    .live-set-item h3 {
        font-size: 14px !important;
    }

    .live-set-item .live-meta {
        font-size: 11px !important;
    }
}

/* Galleria marquee animation */
.galleria-page-wrapper {
    padding: 2rem 0;
    width: 100%;
    overflow: hidden;
    background-color: white;
}

.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    background-color: white;
}

.marquee-content {
    display: flex;
    gap: 10px;
    animation: scroll-left linear infinite;
    width: max-content;
    will-change: transform;
    background-color: white;
}

.marquee-slide {
    flex-shrink: 0;
    width: clamp(320px, 40vw, 500px);
    height: clamp(260px, 35vw, 430px);
}

.marquee-slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .galleria-page-wrapper {
        display: flex !important;
        flex-direction: column !important;
        height: 100vh !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .galleria-page-wrapper .about-type-title {
        flex-shrink: 0 !important;
        padding: 1rem 0 0 1rem !important;
        margin-bottom: 0 !important;
        font-size: clamp(36px, 11vw, 55px) !important;
        text-align: left !important;
    }

    .marquee-wrapper {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        margin-top: 0 !important;
    }

    .marquee-content {
        gap: 10px !important;
        animation-duration: 30s !important;
    }

    .marquee-slide {
        width: 280px !important;
        height: 200px !important;
    }

    .marquee-slide img {
        object-fit: cover !important;
    }
}

/* Squadra clickable images */
.squadra-img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.squadra-img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

#imageModal .modal-dialog {
    max-width: 90vw;
}

#imageModal .modal-backdrop {
    background-color: rgba(255, 255, 255, 0.95);
}

#imageModal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

#imageModal .modal-body img {
    max-height: 90vh;
    object-fit: contain;
    width: auto;
    max-width: 100%;
    display: block;
}

.image-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* Squadra carousel */
.squadra-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    row-gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
    margin-top: -1.8rem;
    overflow: hidden;
    flex: 1;
    height: 100%;
    max-width: 100%;
}

/* Flip card container */
.squadra-flip-card {
    flex: 0 0 450px;
    width: 450px;
    height: 450px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
}

/* Larger screens - scale up cards and keep side by side */




.squadra-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.squadra-flip-card:hover .squadra-flip-inner {
    transform: rotateY(180deg);
}

.squadra-flip-front,
.squadra-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.squadra-flip-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: rotateY(0deg);
}

.squadra-flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.squadra-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    text-align: center;
}

.squadra-caption h5 {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

.squadra-role {
    font-size: clamp(12px, 2vw, 14px);
    color: #666;
    margin: 0.25rem 0 0 0;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

/* Back side of flip card */
.squadra-flip-back {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    z-index: 1;
}

.squadra-back-content {
    text-align: center;
    width: 100%;
    overflow-wrap: anywhere;
}

.squadra-back-name {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

.squadra-back-bio {
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

.squadra-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.squadra-social-icon {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.squadra-social-icon:hover {
    color: #f0f0f0;
    transform: scale(1.2);
}

/* Large screen vertical centering for squadra */
@media (min-width: 1400px) {
    .squadra-grid {
        flex: 1;
        align-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {

    /* Squadra flip-cards responsive tweaks */
    .squadra-flip-card {
        width: 90vw;
        max-width: 360px;
        min-height: 380px;
        height: auto;
    }

    .squadra-flip-inner {
        min-height: 380px;
    }

    .squadra-flip-back {
        padding: 1.25rem;
        align-items: flex-start;
        overflow-y: auto;
    }

    .squadra-back-content {
        text-align: center;
    }

    .squadra-back-bio {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Make squadra page scrollable on mobile */
    body:has(.squadra-grid) .releases-page-wrapper {
        height: auto !important;
        min-height: 100vh;
        overflow-y: visible !important;
    }

    .squadra-carousel-wrapper {
        height: auto;
        overflow: visible;
        padding-bottom: 3rem;
    }

    .squadra-carousel {
        max-width: 100%;
        height: auto;
    }

    .squadra-slide-row {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        height: auto;
    }

    .squadra-member {
        flex: 1 1 auto;
        margin-bottom: 1rem;
    }

    .squadra-member img {
        width: 100%;
        height: auto;
    }

    .carousel-inner {
        height: auto !important;
        min-height: auto !important;
    }

    .carousel-item {
        height: auto !important;
    }
}

/* Contact page styling */
.contact-section-title {
    font-family: 'Helvetica', sans-serif;
    font-size: clamp(18px, 3vw, 36px);
    font-weight: 700;
    font-style: normal;
    color: #e74c3c;
    letter-spacing: 2px;
    line-height: 1;
}

.contact-section-title.press-title {
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.contact-section-title.subscribe-title {
    font-weight: 700;
    color: #e74c3c;
    paint-order: stroke fill;
}

.contact-email {
    font-family: 'Times New Roman', serif;
    font-size: clamp(20px, 3.5vw, 40px);
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #e74c3c;
}

/* Subscribe form styling */
.subscribe-form {
    display: flex;
    gap: 15px;
    align-items: stretch;
    max-width: 600px;
    margin: 10px 10px;
}

.subscribe-input {
    flex: 1;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 400;
    color: #1a1a1a;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #1a1a1a;
    padding: 8px 0;
    outline: none;
    letter-spacing: 0.5px;
    transition: border-color 0.3s ease;
}

.subscribe-input::placeholder {
    color: #999;
    font-style: italic;
}

.subscribe-input:focus {
    border-bottom-color: #e74c3c;
}

.subscribe-button {
    font-family: 'Helvetica', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000000;
    background-color: #e74c3c;
    border: none;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.subscribe-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.subscribe-button:active {
    transform: translateY(0);
}

/* Social links section */
.social-links-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #e74c3c;
    transform: translateY(-3px);
}

.social-icon i {
    display: block;
}

/* Large screen vertical centering for all pages */
@media (min-width: 1400px) {
    .menu-list-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }

    .menu-list ul {
        margin: 0;
        padding: 0;
    }



    .menu-list .menu-link {
        font-size: clamp(76px, 6vw, 32px);
        letter-spacing: 2px;
    }

    /* About page */
    .about-typography-page {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .about-type-header {
        flex-shrink: 0;
        margin-bottom: 0;
        padding: 1rem 0 0 0;
    }

    .typography-samples {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Live Sets page */
    .live-sets-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .live-sets-wrapper .about-type-header {
        flex-shrink: 0;
        padding: 1rem 0;
    }

    .live-sets-wrapper>.row {
        flex: 1;
        display: flex;
        align-content: center;
    }

    /* Galleria page */
    .galleria-page-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .galleria-page-wrapper .about-type-title {
        flex-shrink: 0;
        padding: 1rem 0 0 0;
        margin-bottom: 0;
    }

    .marquee-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        margin-top: 0;
    }
}

/* Ultra large screen (3300px+) - bigger text and icons */
@media (min-width: 3300px) {


    /* Footer text much larger */
    .footer-note {
        font-size: 40px !important;
        max-width: 800px !important;
        line-height: 1.5 !important;
    }

    /* Header rose icon much larger */
    .mini-rose {
        width: 180px !important;
        height: 180px !important;
    }

    /* Menu items much larger */


    .menu-list .menu-link {
        font-size: clamp(100px, 7vw, 120px) !important;
        letter-spacing: 3px !important;
    }


    .about-type-title {
        font-size: clamp(100px, 12vw, 180px) !important;
    }



    /* About description ultra large screen */
    .about-description {
        font-size: 55px !important;
        line-height: 1.5 !important;
    }

    .typography-samples {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .typography-samples {
        margin-top: 0 !important;
    }

    /* Galleria slides much larger for ultra-wide screens */
    .galleria-page-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .marquee-slide {
        width: 1100px !important;
        height: 800px !important;
    }

    .marquee-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }


    .contact-section-title {
        font-family: 'Helvetica', sans-serif;
        font-size: clamp(18px, 3vw, 50px);
        font-weight: 700;
        font-style: italic;
        letter-spacing: 2px;
        line-height: 1;

    }

    .contact-email {
        font-family: 'Times New Roman', serif;
        font-size: clamp(20px, 3.5vw, 50px);
        font-weight: 700;
        font-style: italic;
        color: #1a1a1a;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }
}

/* Laptop screen vertical centering (like releases page) */
@media (min-width: 1024px) and (max-width: 1399px) {

    /* About page */
    .about-typography-page {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .about-type-header {
        flex-shrink: 0;
        padding: 1rem 0 0 0;
        margin-bottom: 0;
    }

    .typography-samples {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* About description laptop screen */
    .about-description {
        font-size: 36px;
        line-height: 1.7;
        max-width: 1200px;
    }

    /* Contact page (uses about-typography-page class) */

    /* Galleria page */
    .galleria-page-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .galleria-page-wrapper .about-type-title {
        flex-shrink: 0;
        padding: 1rem 0 0 0;
        margin-bottom: 0 !important;
    }

    .marquee-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    /* Live Sets page */
    .live-sets-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .live-sets-wrapper .about-type-header {
        flex-shrink: 0;
        padding: 1rem 0;
    }

    .live-sets-wrapper>.row {
        flex: 1;
        display: flex;
        align-content: center;
    }

    /* Squadra page (uses releases-page-wrapper) already works */
}