/* ==============================
   Studio Antonangeli – Clean CSS Base
   Author: refactor pass
   Purpose: replace ad‑hoc styles with a maintainable system
   Files:
     - styles.css (this file) → Use in production templates
     - legacy-aliases.css → Temporary map from old classes to new utilities
   ============================== */

/* 1) CSS Reset (Josh Comeau-esque minimal reset) */
/* mettilo a livello globale se usi Lenis ovunque */

/* togli stile ai link auto-rilevati (tel/mail/fax) */
a[href^="tel"], 
a[href^="mailto"], 
a[href^="fax"] {
  color: inherit;
  text-decoration: none;
}

/* se vuoi il sottolineato solo al passaggio mouse (desktop) */
@media (hover: hover) and (pointer: fine) {
  a[href^="tel"]:hover,
  a[href^="mailto"]:hover,
  a[href^="fax"]:hover {
    text-decoration: underline;
  }
}
html, body { scroll-behavior: auto !important; }

a{
    color: black !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}

html,
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: linear-gradient(to bottom, #fefcfc, #f8efea);
  /* Opzionale: copre tutto lo schermo */
  min-height: 100vh;
  font-family: var(--font-sans-primary), sans-serif;
  font-weight: 400;
  color: var(--color-text);
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
}
:root {
  color-scheme: light;
}
#menu-expand{
  overflow: hidden;
  height: 0;           /* stato chiuso */
  opacity: 0;
  transition: height 240ms ease, opacity 180ms ease;
}

@media (prefers-reduced-motion: reduce){
  #menu-expand{ transition: none; }
}


/* 2) Design Tokens (edit here to change the whole site) */
:root {
  /* Colors */
  --color-text: #222;
  --color-muted: #555;
  --color-inverse: #ffffff;
  --color-brand: #eec0a8;
  --color-accent: #343434;
  --color-bg: #fefcfc;
  --color-border: #e5e5e5;

  /* Typography */
  --font-sans-primary: "Neue Haas Unica", "Neue Haas Grotesk", "Inter",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans-alt: "Myriad Pro", "Source Sans 3", system-ui, -apple-system,
    Segoe UI, Roboto, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* Radius & Shadows */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-2: 0 8px 24px rgba(0, 0, 0, 0.12);

  --sizeParagrafo: 25px;
  --sizeParagrafo-mobile: 18px;

  --logo-size: 85px;
  --logo-size-mobile: 25px;

  --size-p-mobile: 25px;
  --littelItalic: 19px;
  --sectionTittle: 80px;
  --sectionTittle-mobile: 35px;

  --title-section: 23px;
  --sectionTitleMobile: 25px;
}

/* effet to switch leanguage */
/* elementi che vuoi animare durante lo switch */
.i18n-fade {
  transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s ease;
}

/* stato "in switch": leggero fade + blur + micro shift */
.is-switching .i18n-fade {
  opacity: 0.5;
  filter: blur(1px);
  transform: translateY(1px);
  pointer-events: none;
}

/* accessibilità: se l’utente preferisce meno animazioni */
@media (prefers-reduced-motion: reduce) {
  .i18n-fade {
    transition: none !important;
  }
  .is-switching .i18n-fade {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* end css snippet */

strong {
  font-weight: 600 !important;
}

/* 3) Base Elements */

html {
  overflow-x: hidden !important;
}

.vh-50 {
  height: 50vh;
}

/* Mobile styles */
@media (max-width: 768px) {
  .logo-text {
    font-size: var(--logo-size-mobile) !important;
    text-align: center;
  }
  .pellicola-img {
    width: 90% !important;
  }
  .titolo_sezione {
    font-size: var(--sectionTittle-mobile) !important;
  }
  .paragarafo_sezione {
    font-size: 15px !important;
    text-align: right !important;
  }
  .sposta-dx {
    width: 70%;
  }
  .col-dx-70 {
    display: flex;
    justify-content: end;
  }
  .italic-p {
    font-size: 15px !important;
  }
  .section-title {
    font-size: var(--sectionTitleMobile) !important;
    font-weight: 700;
  }

  .section-title2 {
    font-size: var(--sectionTitleMobile) !important;
    font-weight: 700;
  }
  .container-paragh {
    font-size: var(--sizeParagrafo-mobile) !important;
    gap: 12px;
  }
  .w-100 {
    width: 85% !important;
  }
  .assisti-cit {
    font-size: 15px !important;
  }
  .list {
    font-size: 16px !important;
    margin-left: 10px !important;
  }
  .container-title-section h2 {
    font-size: 35px !important;
  }
  .fs-70 {
    font-size: 35px !important;
  }
  .column-registi ul {
    list-style-type: none;
    font-size: 25px;
  }
}

/* HEADER */
.assisti-cit {
  font-size: 20px;
}
.logo-text {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-size: var(--logo-size);
}

.logo-text .light {
  font-weight: 300;
}

.logo-text .bold {
  font-weight: 600;
}

.lang-switch {
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
}

.section-title2 {
  font-size: 22px;
  font-weight: 700;
}

.hamburger,
.hamburger2 {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 3px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 33px;
  height: 2px;
  background: var(--color-text);
}

.hamburger2 span {
  display: block;
  width: 33px;
  height: 2px;
  background: white;
}

.custom-hr {
  background-color: black !important;
  height: 1px !important;
  border: none;
  width: 32%;
  margin: 0;
  opacity: 1 !important;
  will-change: transform;
}

.custom-hr2 {
  background-color: black !important;
  height: 1px !important;
  border: none;
  width: 100%;
  margin: 0;
  opacity: 1 !important;
  will-change: transform;
}
.titolo_sezione {
  font-size: var(--sectionTittle);
}

.paragarafo_sezione {
  font-size: var(--sizeParagrafo);
  text-align: left;
}

.italic-p {
  font-size: var(--littelItalic);
  font-style: italic;
}

/* SECTION DIVIDER */
.section-divider {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: 2rem 0;
  opacity: 1 !important;
}

.section-divider2 {
  width: 100%;
  height: 1px;
  background-color: black;
  opacity: 1 !important;
}

/* Title with dot structure */
.title-with-dot {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.title-with-dot .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-brand);
  flex-shrink: 0;
 
}

.section-title {
  font-size: var(--title-section);
  font-weight: 700;
  margin: 0;
}

/* CONTAINER */
.container-paragh {
  display: flex;
  flex-direction: column;
  width: 85%;
  margin: 0 auto;
  font-size: var(--sizeParagrafo);
  gap: 12px;
}

.img-small-mission {
  margin-top: 230px;
  margin-left: -50px;
  width: 120px;
}

/* ACTORS SECTION */
.container-title-section h2 {
  font-size: 70px;
}

.container-title-section {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.list {
  list-style-type: none;
  font-size: 32px;
  font-weight: 300 !important;
  margin-left: 50px;
}

.container-title-section-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* DIRECTORS SECTION */
.fs-70 {
  font-size: 70px;
}

.column-registi {
  display: flex;
  justify-content: center;
}

.column-registi ul {
  list-style-type: none;
  font-size: 32px;
}

/* sceneggiatori */
.list-sceneggiatori {
  list-style-type: none;
  font-size: 32px;
  font-weight: 300 !important;
}

.lista-dx {
  text-align: left;
  margin-top: 100px;
  margin-left: 50px;
}
.img-oli {
  margin-top: -50px;
  margin-left: 50px;
}
.img-mis {
  margin-top: 50px;
  width: 70%;
}

.lista-sx {
  margin-right: 150px;
  text-align: right;
}

:root {
  --line-color: #2f2f2f;
  --line-thick: 1px;
  --y-space: 12px; /* spazio verticale (simula il margine dell'hr) */
  --x-indent: 14px; /* rientro del testo come nello screenshot */
}

/* sezione cosa offriamo && i nostri ambiti */

.container-line {
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  /* niente gap: le linee devono essere continue */
}

.container-line .line-p {
  border-top: var(--line-thick) solid var(--line-color);
  padding: var(--y-space) 0; /* spazio sopra/sotto il testo */
}

.container-line .line-p:last-child {
  border-bottom: var(--line-thick) solid var(--line-color);
}

.container-line  p {
  margin: 0; /* niente spazi extra del <p> */
  padding-left: var(
    --x-indent
  ); /* rientro testo (linee restano a tutta larghezza) */
  font-weight: 500;
  text-transform: uppercase; /* se vuoi identico allo screenshot */
  font-size: 23px;
  padding: 7px 0px;
}

/* team */

.container-team {
  min-height: 300px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 35px;
}
.container-team-text p {
  padding: 0px !important;
  margin: 0px !important;
  font-size: 24px;
  line-height: 1.2;
  font-style: italic;
}
.container-team-text p:first-child {
  font-weight: 700;
  font-style: normal !important;
}

.container-chisiamo {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.container-chisiamo-text p {
  padding: 0px !important;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400px;
  text-decoration: none;
}

.fw-p-bold {
  font-weight: 700;
}

.fw-p-bold > span {
  font-weight: 400 !important;
}

.navbar {
  background-color: black;
  display: flex;
  justify-content: end;
  padding: 25px;
  color: white;
}

.footer {
  background-color: #eec0a8;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 220px;
  line-height: 0px;
  position: relative;
  top: 150px;
  width: 100%;
  z-index: 999;
  padding: 10px;

}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.row.img-registi {
  margin-bottom: 0 !important; /* annulla mb-5 */
}

.row.img-registi .col-6,
.row.img-registi .col-3 {
  padding-bottom: 0 !important; /* annulla padding bootstrap */
}

/* footer footer mobile */

.section-contatti {
  position: relative;
  overflow: hidden;
  /* più alta: aumenta il padding in basso */

  padding-bottom: 450px;
  min-height: 100vh; /* opzionale: garantisce una sezione non troppo bassa */
}

.section-contatti .content {
  position: relative;
  z-index: 1;
}

.section-contatti .decor {
  position: absolute;
  left: 50%;
  width: 98%;
  bottom: 0px;

  transform: translateX(-50%);
  pointer-events: none;
}

.section-contatti .decor img {
  width: 100%;
  height: auto;
  display: block;
}




/* sostituisci la tua .bg-nav */
.bg-nav {
  /* niente opacity qui */
  background-color: rgba(52, 52, 52, 0.75); /* stesso colore ma con alpha */
  /* blur dello sfondo sottostante */
  -webkit-backdrop-filter: blur(12px); /* Safari */
  backdrop-filter: blur(5px);
  width: 100%;
}
.mt-custom{
  margin-top: 45px
}

#menu-expand{
  overflow:hidden;
  height:0;
  opacity:0;
  transition: height 240ms ease, opacity 180ms ease;


}

#menu-expand a{
    opacity: 100% !important;
}



/* rispetto preferenze utente */
@media (prefers-reduced-motion: reduce) {
  .fx-lens-overlay, .fx-lens-rainbow, .fx-lens-cursor { transition: none; }
}

.footer-cata{

    display: flex;
    gap: 15px ;
    align-items: center;
    margin: 0 auto;
    
}

.footer-cata img{
    width: 25px;
    margin-bottom: 15px;
      animation-duration: 4s;
  animation-name: occhio-catapultista;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes occhio-catapultista {
  0% {
    transform: rotateX(0deg);
  }
  10% {
    transform: rotateX(90deg);
  }
  20% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

.go-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;
  cursor: pointer;

}

.address:hover{
    cursor: pointer;
  color: #eec0a8 !important;
}

.policy{
    text-decoration: none;
}

.policy:hover{
    color: rgb(180, 175, 175) !important;
}