<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
----------------------------------------------------------------------
  Custom CSS â€“ Header &amp; Navigation
  Theme  : Tiziano Theme
  Purpose: Styles for logo, desktop menu, mobile burger &amp; fullâ€‘screen nav
  Colors : Gold #cca332 | Grey #1d1d1b | White #fdfdfc
  Author : Gioaken
----------------------------------------------------------------------*/

/* ========== 1. CSS VARIABLES (easy theming) ========== */
:root {
    --color-gold: #cca332;
    --color-grey: #1d1d1b;
    --color-white: #fdfdfc;
    /* soft white background */
}


/* ========== 2. GLOBAL RESET / BASE TYPOGRAPHY ========== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
  

body {
    margin: 0;
    font-family: "Montserrat", sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-grey);
    background: var(--color-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Work Sans", sans-serif;
    font-weight: 200;
  }

a {
    font-family: "Montserrat", sans-serif;
    color: inherit;
    text-decoration: none;
    transition: color .3s;
}

a:hover {
    color: var(--color-gold);
}

/* ========== 3. LAYOUT HELPERS ========== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================================== */
/*  4.  SITE HEADER                                       */
/* ===================================================== */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo image constrained automatically by WP; just limit maxâ€‘height */
.site-branding img {
    height: auto;
    /* maintain aspect ratio */
    width: auto;
    max-height: 50px;
    /* as declared in theme support */
    max-width: 200px;
    /* prevents ultrawide logos */
    object-fit: contain;
    /* ensures full logo visible within box */
}

.site-title {
    font-weight: 600;
    font-size: 1.125rem;
}

/* ===================================================== */
/*  5.  DESKTOP NAVIGATION                                */
/* ===================================================== */
.primary-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu&gt;li&gt;a {
    position: relative;
    padding: .25rem 0;
}

/* underline hover animation */
.primary-menu&gt;li&gt;a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width .3s ease;
}

.primary-menu&gt;li&gt;a:hover::after,
.primary-menu&gt;li&gt;a:focus::after {
    width: 100%;
}

/* ===================================================== */
/*  6.  BURGER BUTTON (visible &lt; 768px)                   */
/* ===================================================== */
.burger {
    display: none;
    /* default hidden on desktop */
    background: none;
    border: 0;
    cursor: pointer;
    padding: .5rem;
}

.burger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-grey);
    margin: 6px 0;
    transition: transform .3s ease, opacity .3s ease;
}

/* ===================================================== */
/*  7.  MOBILE NAV OVERLAY                                */
/* ===================================================== */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    z-index: 998;
    /* below header so header stays clickable */
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-menu-list li {
    margin: 1.2rem 0;
}

.mobile-menu-list a {
    font-size: 1.75rem;
}

/* === 7.1 OPEN STATE (toggled via JS by adding .menu-open on &lt;body&gt;) === */
body.menu-open .mobile-nav {
    transform: translateY(0);
}

body.menu-open {
    overflow: hidden;
}

/* prevent body scroll when menu open */

/* Burger to X animation */
body.menu-open .line1 {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .line2 {
    opacity: 0;
}

body.menu-open .line3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===================================================== */
/*  8.  RESPONSIVE BREAKPOINTS                            */
/* ===================================================== */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .burger {
        display: inline-block;
    }
}

/* ===================================================== */
/*  9.  ACCESSIBILITY FOCUS STYLES                        */
/* ===================================================== */
:focus-visible {
    outline: 2px dashed var(--color-gold);
    outline-offset: 2px;
}

/* --- layer order --------------------------------------------------- */
.burger {
    z-index: 1001;
}

/* sempre sopra lâ€™overlay         */
.mobile-nav {
    z-index: 1000;
}

/* overlay fullâ€‘screen            */

/* --- stato menu aperto --------------------------------------------- */
body.menu-open .mobile-nav {
    transform: translateY(0);
    /* overlay visibile               */
}

body.menu-open .burger {
    position: fixed;
    /* lo spostiamo fuori dal flow    */
    top: 1rem;
    /* in alto a destra               */
    right: 1rem;
}

/* linee che diventano X (câ€™erano giÃ&nbsp;) + cambio colore in oro -------- */
body.menu-open .burger-line {
    background: var(--color-gold);
}

body.menu-open .line1 {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .line2 {
    opacity: 0;
}

body.menu-open .line3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* ------------ language switcher (desktop) -------------- */
.desktop-lang .lang-menu {
    display: flex;
    gap: .75rem;
    margin: 0 0 0 2rem;
    /* spaziatura dopo il menu principale */
}

.lang-menu a {
    display: block;
    width: 24px;
    height: 16px;
}

.flag-it {
    background: url('../images/flags/it.png') no-repeat center/cover;
    color: #1d1d1b00;
}

.flag-en {
    background: url('../images/flags/en.png') no-repeat center/cover;
    color: #1d1d1b00;
}

.flag-de {
    background: url('../images/flags/de.png') no-repeat center/cover;
    color: #1d1d1b00;
}

.flag-es {
    background: url('../images/flags/es.png') no-repeat center/cover;
    color: #1d1d1b00;
}

/* ------------ language switcher (mobile) --------------- */
.mobile-extra {
    margin-top: 2rem;
    text-align: center;
}

.mobile-lang a {
    width: 32px;
    height: 20px;
    margin: 0 .5rem;
}

.close-nav {
    margin-top: 1.5rem;
    background: none;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-grey);
}

/* posiziona burger solo per apertura; closeâ€‘nav sopra lâ€™overlay */
.close-nav {
    position: relative;
    z-index: 1001;
}


/* â‰¡ Dropdown language in desktop primary menu â‰¡ */
.primary-menu .lang-switcher {
    position: relative;
}

.primary-menu .lang-switcher .lang-toggle {
    border: none;
    cursor: pointer;
    font: inherit;
    display: flex;
    align-items: center;
    gap: .25rem;
    width: 30px;
    height: 25px;
}

.primary-menu .lang-switcher .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: -5px;
    background: var(--color-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    padding: .5rem;
    list-style: none;
    margin: 0;
}

.primary-menu .lang-switcher:hover .sub-menu,
.primary-menu .lang-switcher:focus-within .sub-menu {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.lang-menu li {
    margin: 0;
    list-style-type: none;
}

.lang-menu a {
    display: block;
    width: 26px;
    height: 22px;
    color: #1d1d1b00;
}

/* nascondi il languageâ€‘switcher desktop su mobile */
@media (max-width: 768px) {

    .desktop-lang,
    /* se esisteva */
    .lang-switcher {
        /* e anche il dropdown legacy */
        display: none !important;
    }

    .lang-menu {
        padding: 0;
    }
}

/* posiziona mobileâ€‘extra few px above bottom */
.mobile-extra {
    position: absolute;
    bottom: 1.5rem;
    /* regola a piacere */
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
}

.mobile-lang {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* di base il toggle ha la classe flag-xx ma non mostriamo la bandiera su desktop */
@media (min-width: 769px) {
    .lang-toggle[class*="flag-"] {
        text-indent: 0;
        width: auto;
        height: auto;
    }
}

/* bandiere solo su mobile */
@media (max-width: 768px) {
    .lang-toggle.flag-it {
        background: url('../images/flags/it.png') no-repeat center/cover;
    }

    .lang-toggle.flag-en {
        background: url('../images/flags/en.png') no-repeat center/cover;
    }

    .lang-toggle.flag-de {
        background: url('../images/flags/de.png') no-repeat center/cover;
    }

    .lang-toggle.flag-es {
        background: url('../images/flags/es.png') no-repeat center/cover;
    }

    .lang-toggle {
        text-indent: -9999px;
        /* nasconde il testo â€œitâ€ ecc. */
        width: 26px;
        height: 22px;
        display: inline-block;
    }
}


/* ------------------------------------- */
/* Mobile: sottolinea la voce corrente   */
/* ------------------------------------- */
@media (max-width: 768px) {
    .mobile-lang .actived a {
        border-bottom: 2px solid var(--color-gold);
        padding-bottom: 2px;
    }
}

/* Footer */
.site-footer {
    background: var(--color-white);
    color: var(--color-grey);
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-title a {
    color: var(--color-grey);
    font-size: 1.25rem;
    font-weight: 600;
}

.social-icons a {
    margin-left: 1rem;
    font-size: 1.25rem;
    transition: color .3s;
}

.social-icons a:hover,
.social-icons a:focus {
    color: var(--color-gold);
}

.footer-separator {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--color-grey);
    text-decoration: underline;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: var(--color-gold);
}

.social-icons a {
    display: inline-block;
    transition: transform .2s ease-out, color .2s ease-out;
  }
  .social-icons a:hover,
  .social-icons a:focus {
    transform: scale(1.2);
    color: var(--color-gold);
  }
  @media (prefers-reduced-motion: reduce) {
    .social-icons a,
    .footer-separator,
    .footer-inner,
    .footer-bottom p {
      transition: none !important;
    }
  }
    

  /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Hero Section                                                     */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center 50%;   /* punto iniziale */
    display: flex;
    align-items: center;
    will-change: background-position;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    font-weight: 300;
  }
  .hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    /* font size da 1.5rem fino a max 2.5rem */
    font-size: clamp(1rem, 5vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 100;
    background: linear-gradient(
      45deg,
      var(--color-gold),
      var(--color-white),
      var(--color-gold)
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    /* per morbidezza, opzionale */
    animation: gradientFlow 5s ease infinite;
  }
  .btn-hero {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    padding: .75rem 1.5rem;
    text-transform: uppercase;
    border-radius: 2px;
    opacity: 0;
    font-weight: 300;
    transform: translateY(20px);
    transition: background .3s;
  }
  .btn-hero:hover,
  .btn-hero:focus {
    background: #b5952a;
  }
  
  /* Smaller text on mobile */
  @media (max-width: 768px) {
    .hero-title { font-size: 1.75rem; }
    .hero-tagline { font-size: 1rem; }
  }

  
  .btn-hero, .btn {
    color: var(--color-white);
    border: 2px solid var(--color-gold);
    background-color: var(--color-gold);;
    padding: .75rem 1.5rem;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    border-radius: 2px;
    font-family: "Montserrat", sans-serif;
    transition:
      background-color .4s ease,
      color .4s ease;
  }
  
  .btn-hero:hover,
  .btn-hero:focus,
  .btn:hover,
  .btn:focus {
    background-color: var(--color-white);;
    color: var(--color-gold);              
  }
  
  .hero-title {
    /* Font responsive: da 3rem fino a max 6rem in base alla viewport */
    font-size: clamp(3rem, 10vw, 4.5rem);
    background: linear-gradient(
      45deg,
      var(--color-gold),
      var(--color-white),
      var(--color-gold)
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    /* per morbidezza, opzionale */
    animation: gradientFlow 5s ease infinite;
  }
  
  @keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Hero Tagline â€“ dimensione responsive + float     */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

  
  /* Quotes Section */
.quotes-section {
    padding: 4rem 0;
    background: var(--color-white);
  }
  .quotes-section .quote {
    opacity: 0;               /* inizialmente nascosta */
    margin: 2rem 0;
    text-align: center;
  }
  .quote-text {
    font-size: clamp(1.15rem, 3vw, 1.25rem);
    font-style: italic;
    color: var(--color-grey);
    margin-bottom: .5rem;
    font-weight: 200;
  }
  .quote-author {
    display: block;
    font-size: 1rem;
    color: var(--color-gold);
  }

  /* Allinea la prima quote a sinistra e la seconda a destra */
.quotes-inner {
    display: flex;
    justify-content: space-between; /* spinge gli item ai margini */
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .quotes-inner .quote {
    flex: 0 1 100%;                 /* ciascuna occupa il 48% */
    box-sizing: border-box;
  }
  
  /* Testo e autore allineati internamente */
  .quotes-inner .quote:nth-child(1) .quote-text,
  .quotes-inner .quote:nth-child(1) .quote-author {
    text-align: left;
  }
  .quotes-inner .quote:nth-child(2) .quote-text,
  .quotes-inner .quote:nth-child(2) .quote-author {
    text-align: right;
  }
  
  /* Su mobile, full width */
  @media (max-width: 768px) {
    .quotes-inner .quote {
      flex: 0 1 100%;
      text-align: center;          /* al centro su mobile */
    }
  }
  
  

  /* Video CTA Section */
.video-cta {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }
  .video-cta-bg {
    width: 100%;
    position: absolute;
    top: 50%; left: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
  }
  .video-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
  }
  .video-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--color-white);
    padding: 0 1rem;
  }
  .video-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(
      45deg,
      var(--color-gold),
      var(--color-white),
      var(--color-gold)
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    /* per morbidezza, opzionale */
    animation: gradientFlow 5s ease infinite;
  }
  
  /* Modal */
  .video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
  }
  .video-modal .video-modal-inner {
    position: relative;
    width: 80%;
    max-width: 800px;
  }
  .video-modal .video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
  }
  .video-modal .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .video-modal .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
  }
  
  @media (max-width: 768px) {
    .video-cta-bg {
      display: none;
    }
    .video-cta {
      background: url('../images/fallback.jpg') center/cover no-repeat;
    }
  }
  
  
  /* About Me Section */
.about-section {
    padding: 4rem 0;
    background: var(--color-white);
    opacity: 0;           /* per lâ€™animazione */
    transform: translateY(20px);
  }
  .about-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-grey);
    margin-bottom: 1rem;
    text-align: center;
  }
  .about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--color-grey);
  }

  
  /* Rende lo header sempre visibile in cima alla pagina */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;       /* basta un valore piÃ¹ alto del contenuto sottostante */
  }
  
  /* â€” Desktop: sottolinea e colora la voce attiva â€” */
.primary-menu li.current-menu-item &gt; a,
.primary-menu li.current-menu-ancestor &gt; a {
  color: var(--color-gold);
}
.primary-menu li.current-menu-item &gt; a::after,
.primary-menu li.current-menu-ancestor &gt; a::after {
  width: 100%;   /* giÃ&nbsp; hai lâ€™animazione underline */
}

/* â€” Mobile: evidenzia la voce attiva â€” */
.mobile-menu-list li.current-menu-item &gt; a,
.mobile-menu-list li.current-menu-ancestor &gt; a {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: .25rem;
}

/* â€” WebKit (Chrome, Safari, Edge Chromiumâ€¦) â€” */
::-webkit-scrollbar {
    width: 12px;    /* spessore verticale */
    height: 12px;   /* spessore orizzontale */
  }
  
  ::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #cca332;
    border-radius: 6px;
    border: 3px solid #f0f0f0; /* crea un effetto â€œspazioâ€ attorno al thumb */
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #b38e2c;
  }
  
  
  /* â€” Firefox â€” */
  html {
    scrollbar-width: thin;                      /* thin | auto | none */
    scrollbar-color: #cca332 #f0f0f0;           /* thumb-color track-color */
  }
  
  
  /* â€” IE 10+ (fallback: mostra/nasconde la scrollbar) â€” */
  body {
    -ms-overflow-style: scrollbar; /* auto | none */
  }

  
  /* Spotify Section */
.spotify-section {
  padding: 6rem 0;
  background: var(--color-white);
}

.spotify-wrapper {
  position: relative;
  width: 100%;
  /* togli aspect-ratio */
  /* aspect-ratio: 100/352; */
}

.spotify-wrapper iframe {
  position: relative;  /* oppure absolute se vuoi il paddingâ€‘bottom hack */
  width: 100%;
  height: 352px;       /* fisso come nel codice embed */
  border-radius: 12px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--color-gold);
  background: var(--color-white);
  overflow: hidden;
  cursor: pointer;
}

.event-item .event-date,
.event-item .event-preview,
.event-item .event-location {
  position: relative;
  z-index: 2;
  color: var(--color-grey);
}

/* layer oro che si espande */
.event-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: var(--color-gold);
  z-index: 1;
  transition: width .4s ease;
}

/* al passaggio del mouse espande e cambia testo */
.event-item:hover::before {
  width: 100%;
}
.event-item:hover .event-date,
.event-item:hover .event-preview,
.event-item:hover .event-location {
  color: var(--color-white);
}

/* CTA â€œMore infoâ€ nascosta di default */
.event-more {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: var(--color-white);
  font-weight: 600;
  opacity: 0;
}

.event-item:hover .event-more {
  opacity: 1;
}

/* evidenza extra per featured */
.event-item.featured {
  box-shadow: 0 0 0 2px var(--color-gold);
}
/* 1) Sfondo â€œfeaturedâ€ leggermente dorato */
.event-item.featured {
  background-color: rgba(204, 163, 50, 0.1);
}

/* 2) Testi sempre visibili di default */
.event-item .event-date,
.event-item .event-preview,
.event-item .event-location {
  opacity: 1;
}

/* 3) Al passaggio del mouse
   - riempi con oro (Ã¨ giÃ&nbsp; gestito dal ::before)
   - nascondi i tre blocchi DATA / ANTEPRIMA / DOVE
   - fai comparire solo â€œMore infoâ€ */
.event-item:hover .event-date,
.event-item:hover .event-preview,
.event-item:hover .event-location {
  opacity: 0;
}

/* 4) Mostra â€œMore infoâ€ solo in hover */
.event-more {
  opacity: 0;
}

.event-item:hover .event-more {
  opacity: 1;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* 6. Allinea la data in colonna con giorno e mese */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.event-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* metti giorno e mese uno sopra lâ€™altro e centrati */
.event-item .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4rem; /* regola la larghezza minima se ti serve */
}

.event-item .event-day {
  font-size: 2rem;      /* numero grande */
  line-height: 1;
  font-weight: 600;
}

.event-item .event-month {
  font-size: .875rem;   /* mese piÃ¹ piccolo sotto */
  text-transform: uppercase;
  margin-top: .25rem;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* 7. Centra il preview e spingi la location a destra */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.event-item .event-preview {
  flex: 1;
  text-align: center;   /* programma centrato */
}

.event-item .event-location {
  flex: 1;
  text-align: right;    /* luogo a destra */
  font-style: italic;
  opacity: .8;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* 8. â€œMore infoâ€ centrato sul pannello hover        */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.event-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-weight: 600;
  text-transform: uppercase;
}

.event-item:hover .event-more {
  opacity: 1;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* 9. Nascondi i dettagli al passaggio e riempi oro */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.event-item:hover .event-date,
.event-item:hover .event-preview,
.event-item:hover .event-location {
  opacity: 0;
}

@media (max-width: 768px) {
  /* 1) Lista eventi come colonna */
  .events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* 2) Ogni eventâ€‘item diventa un blocco verticale */
  .event-item {
    display: flex;           /* mantiene flex */
    flex-direction: column;  /* ma ora impila */
    align-items: stretch;    /* occuperÃ&nbsp; tutta la larghezza */
    text-align: center;      /* centriamo i testi */
    padding: 1rem;
    position: relative;
  }

  /* 3) Data / preview / location fullâ€‘width */
  .event-item .event-date,
  .event-item .event-preview,
  .event-item .event-location {
    width: 100%;
    opacity: 1;              /* forziamo sempre visibili */
    transition: none;        /* niente animazioni qui */
  }

  /* 4) Impostazioni specifiche per la data */
  .event-item .event-date {
    margin-bottom: .75rem;
    flex-direction: row;     /* non piÃ¹ colonna, vogliamo giorno+mese affiancati */
    justify-content: center;
    display: flex;
    gap: .5rem;
  }

  .event-item .event-day {
    font-size: 2rem;
    line-height: 1;
  }
  .event-item .event-month {
    font-size: .875rem;
    text-transform: uppercase;
    align-self: flex-end;
    margin-bottom: .25rem;
  }

  /* 5) Preview e location con margini */
  .event-item .event-preview {
    font-weight: 500;
    margin-bottom: .5rem;
  }
  .event-item .event-location {
    font-style: italic;
    opacity: .8;
    margin-bottom: .25rem;
    text-align: center;
  }

}
/* â€” Events Section Title &amp; Separator â€” */
.events-section-title {
  /* stessa grafica di .about-title */
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-grey);
  font-weight: 200;
  text-align: center;
  margin-bottom: .5rem;
}

.events-sep {
  border: none;
  border-top: 2px solid var(--color-gold);
  width: 60px;
  margin: 0 auto 2rem;
}

/* â€” Box invisibili allâ€™inizio per il fadeâ€‘in â€” */
.events-section-title,
.events-sep,
.event-item {
  opacity: 0;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Modal Eventi                                                      */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity .3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-gold);
}

/* animazione fadeâ€‘in dei contenuti */
.modal-content {
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}


/* Modal overlay per eventi */
.event-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000; /* sopra tutto, incluso menu */
}

/* Finestra interna */
.event-modal-inner {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 4px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
}

/* Data grande e centrata */
.event-details-date {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--color-grey);
}

/* Luogo leggermente piÃ¹ piccolo */
.event-details-location {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-grey);
}

/* "With" in grassetto e grandezza media */
.event-details-with {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-grey);
}

/* Programma: lista senza label */
.event-details-programmi {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: center;
}
.event-details-programmi li {
  margin-bottom: .5rem;
  color: var(--color-grey);
}

/* Pulsante link */
.event-details-link.btn {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
}

/* Blocca lo scroll del body quando il modal Ã¨ aperto */
body.modal-open {
  overflow: hidden;
}

/* Assicurati che il modal sia sempre sopra tutto (incluso lo header) */
.event-modal {
  z-index: 10000;
}

/* Contenuto scrollabile internamente */
.event-modal-inner {
  max-height: 80vh;
  overflow-y: auto;
  position: relative; /* per posizionare il bottone di chiusura */
}

/* Bottone di chiusura interno piÃ¹ grande e facile da toccare */
.event-modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-gold);
  cursor: pointer;
  line-height: 1;
  padding: .25rem;
  z-index: 10001;
}


/* Pagina Biografia */
/* â”€â”€â”€â”€â”€ Hero Biografia â”€â”€â”€â”€â”€ */
.bio-hero {
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
.bio-hero-inner {
  text-align: center;
  width: 100%;
  color: var(--color-white);
  background: rgba(0,0,0,0.3);
  padding: 1rem;
}
.bio-hero-title {
  font-size: clamp(2.5rem,8vw,4rem);
  margin: 0;
}
.bio-hero-subtitle {
  font-size: clamp(1.125rem,4vw,1.5rem);
  margin-top: .5rem;
}

/* fadeâ€‘in on load */
.bio-hero-inner { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.bio-hero--visible .bio-hero-inner { opacity:1; transform: translateY(0); }


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  Biografia Hero (override e animazione gradient) */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bio-hero {
  position: relative;
  height: 50vh;                     /* metÃ&nbsp; viewport height */
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  /* rimuoviamo la vecchia overlay nera:
     background: rgba(0,0,0,0.3); */
  padding: 1rem;
  /* fadeâ€‘in on load */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

/* quando aggiungi via JS la classe .bio-hero--visible */
.bio-hero.bio-hero--visible .bio-hero-inner {
  opacity: 1;
  transform: translateY(0);
  background-color: transparent;
}

/* Titolo con gradientâ€‘flow identico allâ€™homepage */
.bio-hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0;
  background: linear-gradient(
    45deg,
    var(--color-gold),
    var(--color-white),
    var(--color-gold)
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientFlow 5s ease infinite;
}

/* Sottotitolo con stesse regole gradient (magari un poâ€™ piÃ¹ piccolo) */
.bio-hero-subtitle {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  margin-top: .5rem;
  background: linear-gradient(
    45deg,
    var(--color-gold),
    var(--color-white),
    var(--color-gold)
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientFlow 5s ease infinite;
}

/* Riutilizziamo le keyframes giÃ&nbsp; definite in Homepage */
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Biografia Hero: overlay full + font-weight same */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bio-hero {
  position: relative;
  overflow: hidden; /* assicura che l'overlay non sbordi */
}

/* overlay identico alla homepage */
.bio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* spostiamo il contenuto sopra lâ€™overlay */
.bio-hero-inner {
  position: relative;
  z-index: 2;
}

/* stesso font-weight dellâ€™hero principale */
.bio-hero-title {
  font-weight: 300;
}

.bio-hero-subtitle {
  font-weight: 100;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  Bio Content Section â€“ tipografia e layout carino */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bio-content {
  background: var(--color-white);
}

.bio-content-inner {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-grey);
  line-height: 1.8;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

/* spazio tra paragrafi */
.bio-content-inner p {
  margin-bottom: 1.25rem;
}

/* primo carattere come â€œdrop capâ€ */
.bio-content-inner p:first-of-type::first-letter {
  float: left;
  font-size: 4rem;
  line-height: 1;
  margin-right: 0.5rem;
  color: var(--color-gold);
  font-weight: 300;
}

/* garantisce che immagini inserite in content non escano dal container */
.bio-content-inner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
}

/* titoli interni (h2, h3) ben distanziati e centrati */
.bio-content-inner h2,
.bio-content-inner h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--color-grey);
  font-weight: 200;
}

/* link in linea per eventuali rimandi */
.bio-content-inner a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color .3s;
}
.bio-content-inner a:hover {
  color: var(--color-grey);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  Bio Lists (Registrazioni &amp; Collaborazioni)      */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bio-lists {
  background: var(--color-white);
}
.bio-list-title {
  font-size: clamp(1.75rem,5vw,2.5rem);
  font-weight: 200;
  text-align: center;
  color: var(--color-grey);
  margin-bottom: 1rem;
  position: relative;
}
.bio-list-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: .5rem auto 2rem;
}
.bio-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.bio-list li {
  font-size: clamp(1rem,2.5vw,1.125rem);
  color: var(--color-grey);
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.bio-list li strong {
  color: var(--color-gold);
}
.bio-list li:last-of-type {
  border-bottom: none;
}
/* titoli di sezione */
.bio-section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

/* elenco voci */
.bio-row {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

/* classe che farÃ&nbsp; partire l'animazione */
.bio-visible .bio-section-title,
.bio-visible .bio-row {
  opacity: 1;
  transform: translateY(0);
}
.bio-list-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.bio-list-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

/* Quando la sezione entra in viewport, aggiungi via JS la classe .bio-lists-visible */
.bio-lists-visible .bio-list-title,
.bio-lists-visible .bio-list-item {
  opacity: 1;
  transform: translateY(0);
}
.bio-list-title,
.bio-list ul.bio-list li {
  opacity: 0;
  transform: translateY(20px);
}
.bio-downloads-title,
.bio-downloads .btn {
  opacity: 0;
  transform: translateY(20px);
}
/* â€” Bioâ€‘Downloads: centra il bottone e bordi solo sopra/sotto â€” */
.bio-downloads .container {
  text-align: center;
}

.bio-downloads .btn {
  display: inline-block;
  margin: 2rem auto 0;
  font-weight: 300;
}

/* â€” Bioâ€‘Downloads: bottone inizialmente nascosto e spostato giÃ¹ â€” */
.bio-downloads .btn {
  opacity: 0;
  transform: translateY(20px);
}


.live .event-item{
  margin-bottom: 20px;
}

.live-past-events, .live-upcoming-events{
  text-align: center;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Bio Custom Sections                               */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bio-custom-section {
  padding: 4rem 0;
}

/* Titolo â€œa boxâ€ (container) */
.bio-custom-section .bio-sec-title {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 200;
  margin: 0 auto 2rem;
  width: 90%;
  max-width: 1200px;
}

/* Allineamento del titolo per alternanza */
.bio-custom-section.bio-section-left .bio-sec-title {
  text-align: left;
}
.bio-custom-section.bio-section-right .bio-sec-title {
  text-align: right;
}

/* Corpo testo+immagine allâ€™interno del container */
.bio-custom-section .bio-sec-body {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Alternanza desktop */
.bio-custom-section.bio-section-left .bio-sec-body {
  flex-direction: row;
}
.bio-custom-section.bio-section-right .bio-sec-body {
  flex-direction: row-reverse;
}

/* Proporzione testo vs immagine */
.bio-sec-text {
  flex: 1 1 45%;
}
.bio-sec-image {
  flex: 1 1 55%;
}

/* Drop-cap dorato */
.bio-sec-text p:first-of-type::first-letter {
  float: left;
  font-size: 4rem;
  line-height: 1;
  margin-right: 0.5rem;
  color: var(--color-gold);
  font-weight: 300;
}

/* Immagini intere (no crop) con max-height 70vh */
.bio-sec-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  /* rimuove qualsiasi ritaglio */
  object-fit: contain;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Mobile adjustments (&lt;768px)                       */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .bio-custom-section .bio-sec-body {
    flex-direction: column !important;
  }
  .bio-sec-image {
    order: 1;
    margin-bottom: 1.5rem;
  }
  .bio-sec-text {
    order: 2;
  }
  .bio-sec-image img {
    /* mantiene max altezza anche su mobile */
    max-height: 70vh;
    width: auto;
    margin: 0 auto;
  }
  .bio-sec-title {
    /* titolo sempre centrato su mobile */
    text-align: center !important;
  }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Contatti Section Styling                           */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 200;
  color: var(--color-grey);
  margin-bottom: .75rem;
}

.contact-intro {
  font-size: 1.125rem;
  color: var(--color-grey);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: #fff;
  border: 2px solid var(--color-gold);
  border-radius: 4px;
  padding: .75rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .3s;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(29,29,27,0.5);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--color-grey);
  outline: none;
}

.btn {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  border-radius: 2px;
  border: 2px solid var(--color-gold);
  transition: background-color .3s, color .3s;
}

.btn:hover,
.btn:focus {
  background-color: var(--color-white);
  color: var(--color-gold);
}

.contact-success {
  background: rgba(204,163,50,0.1);
  border: 2px solid var(--color-gold);
  padding: 1.5rem;
  text-align: center;
  border-radius: 4px;
}

.contact-success p {
  margin: 0;
  color: var(--color-grey);
  font-size: 1.125rem;
}
/* custom.css */
.contact-error {
  background: rgba(255,0,0,0.1);
  border: 2px solid #cb0000;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #cb0000;
  border-radius: 4px;
}


#menu-privacy{
  justify-content: center;
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Equipment Section */
.equipment-section {
  padding: 0 0 4rem;
}
.equipment-section .section-title {
  text-align: center;
  font-size: clamp(2.5rem,6vw,3.5rem);
  font-weight: 200;
  margin-bottom: 2rem;
  margin-top: 0;
}
.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
/* Aumentiamo la larghezza delle thumbnail */
.equipment-logo-link {
  display: block;
  width: 180px;       /* prima era 120px */
  text-align: center;
}
/* Aumentiamo anche l'altezza massima */
.equipment-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 100px;  /* prima era 70px */
}
@media (max-width:768px) {
  .equipment-grid {
    gap: 1rem;
  }
  .equipment-logo-link {
    width: 100px;     /* prima era 80px */
  }
  .equipment-logo-img {
    max-height: 70px; /* prima era 50px */
  }
}
</pre></body></html>