/* Cleaned: header background aligned to REF; fixed minor CSS issues (units, selectors). */
@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root{
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root{ 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #898989; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #777777; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #b8a07e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --nav-mobile-background-color: rgba(255, 255, 255, 0.8);   /* Trasparenza all'80% con bianco puro */
}



/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root{
  --nav-color: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #898989; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #b8a07e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background{
  --background-color: #f3f1f0;
  --surface-color: #ffffff;
}

.dark-background{
  --background-color: #858484;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #9e9e9e;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root{
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body{
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a{
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover{
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6{
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/








@keyframes php-email-form-loading{
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header{
  --background-color: rgba(82, 78, 68, 0.8);
  --default-color: #000000;
  --heading-color: #000000;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo{
  line-height: 1;
}

.header .logo img{
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1{
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links{
  padding-right: 15px;
}

.header .header-social-links a{
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover{
  color: var(--accent-color);
}

.header .header-social-links a i{
  line-height: 0px;
}

@media (max-width: 1200px){.header .logo{
    order: 1;
  }

  .header .header-social-links{
    order: 2;
  }

  .header .navmenu{
    order: 3;
  }}



/* Global Header on Scroll
------------------------------*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px){.navmenu{
    padding: 0;
  }

  .navmenu ul{
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li{
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus{
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i{
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a{
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus{
    color: var(--nav-hover-color);
  }}

/* Navmenu - Mobile */
@media (max-width: 1199px){.mobile-nav-toggle{
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu{
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul{
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus{
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i{
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover{
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus{
    color: var(--nav-dropdown-hover-color);
  }}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer{
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3{
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p{
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links{
  margin: 0 0 30px 0;
}

.footer .social-links a{
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright{
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader{
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before{
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader{
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top{
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i{
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover{
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title{
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before{
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li{
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before{
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section{
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px){section,
  .section{
    scroll-margin-top: 56px;
  }}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title{
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2{
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-title p{
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero{
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before{
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container{
  position: relative;
  z-index: 3;
}

.hero h2{
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p{
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span{
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links{
  margin-top: 25px;
}

.hero .social-links a{
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover{
  color: var(--accent-color);
}

@media (max-width: 768px){.hero h2{
    font-size: 32px;
  }

  .hero p{
    font-size: 20px;
  }}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2{
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-2::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--heading-color), transparent 98%) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}











.hero-2 .hero-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 992px){.hero-2 .hero-container{
    grid-template-columns: 1fr;
    gap: 60px;
  }}

.hero-2 .hero-content{
  z-index: 2;
}

.hero-2 .hero-content .content-wrapper{
  max-width: 600px;
}









.hero-2 .hero-content .hero-actions{
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-2 .hero-content .hero-actions .btn-primary,
.hero-2 .hero-content .hero-actions .btn-secondary{
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-2 .hero-content .hero-actions .btn-primary::before,
.hero-2 .hero-content .hero-actions .btn-secondary::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-2 .hero-content .hero-actions .btn-primary:hover::before,
.hero-2 .hero-content .hero-actions .btn-secondary:hover::before{
  left: 100%;
}

.hero-2 .hero-content .hero-actions .btn-primary{
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-2 .hero-content .hero-actions .btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-2 .hero-content .hero-actions .btn-secondary{
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.hero-2 .hero-content .hero-actions .btn-secondary:hover{
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero-2 .hero-content .features-list{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-2 .hero-content .features-list .feature-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-2 .hero-content .features-list .feature-item i{
  font-size: 1.4rem;
  color: var(--accent-color);
}

.hero-2 .hero-content .features-list .feature-item span{
  font-size: 0.95rem;
  font-weight: 500;
}





















































@keyframes float{

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px){.hero-2{
    padding: 80px 0;
  }

  .hero-2 .hero-container{
    padding: 0 15px;
  }

  .hero-2 .hero-content .hero-actions .btn-primary,
  .hero-2 .hero-content .hero-actions .btn-secondary{
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero-2 .hero-content .features-list{
    gap: 20px;
  }

  .hero-2 .hero-content .features-list .feature-item span{
    font-size: 0.9rem;
  }}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote{
  padding-top: 60px;
  padding-bottom: 60px;
  /* Quote dinamico: nascosto finché non selezioni un proverbio */
}

































































.quote .is-hidden{
  display: none;
}

/*--------------------------------------------------------------
# Destination Details Section
--------------------------------------------------------------*/
























.destination-details .attractions-section{
  margin-bottom: 80px;
}

.destination-details .attractions-section .section-header{
  text-align: center;
  margin-bottom: 50px;
}

.destination-details .attractions-section .section-header h2{
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destination-details .attractions-section .section-header p{
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}























































































































































/*--------------------------------------------------------------
# Products List Section
--------------------------------------------------------------*/












































































/* HERO-2: versione solo testo centrata */
.hero-2 .hero-container{
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
}

.hero-2 .hero-content .content-wrapper{
  margin: 0 auto;
}

.hero-2 .hero-actions{
  justify-content: center;
}


/* BOTTONI HERO-2: tutti bianchi, hover accent */
.hero-2 .hero-actions .btn-primary,
.hero-2 .hero-actions .btn-secondary{
  background: #fff !important;
  color: var(--heading-color) !important;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 55%) !important;
  box-shadow: none !important;
}

.hero-2 .hero-actions .btn-primary:hover,
.hero-2 .hero-actions .btn-secondary:hover{
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: var(--contrast-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 70%) !important;
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section{
  /* Add your styles here */
}

/* =========================
   Custom overrides (La via dei proverbi)
   ========================= */

/* Quote: nascosta finché non selezioni un proverbio */
.quote .is-hidden{ display: none; }

/* Compensa l'header fixed quando fai scroll a #quote */
#quote{ scroll-margin-top: 110px; }

/* HERO-2: una colonna e centrato (senza visual a destra) */
.hero-2 .hero-container{
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
}

.hero-2 .hero-content .content-wrapper{
  margin-left: auto;
  margin-right: auto;
}

.hero-2 .hero-actions{
  justify-content: center;
}

/* Bottoni in HERO-2: tutti bianchi di default */
.hero-2 .hero-actions .btn-primary,
.hero-2 .hero-actions .btn-secondary{
  background: #fff !important;
  color: var(--heading-color) !important;
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%) !important;
  box-shadow: none !important;
}

/* Hover: diventano colore accent */
.hero-2 .hero-actions .btn-primary:hover,
.hero-2 .hero-actions .btn-secondary:hover{
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: var(--contrast-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%) !important;
}

/* Player quote un minimo leggibile */
.quote .quote-audio{ margin-top: 18px; }
.quote .quote-audio audio{ width: 100%; }


/* ==========================================================
   Site partials + global button scope (added)
   - Makes .hero-actions buttons work outside .hero-2
   ========================================================== */

.hero-actions{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary{
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary::before,
.hero-actions .btn-secondary::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-actions .btn-primary:hover::before,
.hero-actions .btn-secondary:hover::before{
  left: 100%;
}

.hero-actions .btn-primary{
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-actions .btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-actions .btn-secondary{
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.hero-actions .btn-secondary:hover{
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

/* Share buttons - stile uguale ai bottoni hero */
.share-row{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:18px;
}

.share-row .share-btn{
  padding:16px 32px;
  font-size:1.1rem;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  transition:all .3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  background:#fff;
  color:var(--heading-color);
}

.share-row .share-btn:hover{
  background:var(--accent-color);
  border-color:var(--accent-color);
  color:var(--contrast-color);
  transform:translateY(-3px);
  box-shadow:0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* --- Project overrides (kept minimal) --- */
/* =========================
   HEADER – STATO INIZIALE
   ========================= */

.header {
  --background-color: rgba(90, 90, 90, 0);
  background-color: var(--background-color);

  /* TESTO NERO QUANDO FERMO */
  --default-color: #000000;
  --heading-color: #000000;

  --nav-color: rgba(0, 0, 0, 0.75);
  --nav-hover-color: #000000;
}

/* =========================
   HEADER – STATO SCROLLATO
   ========================= */

.scrolled .header {
  --background-color: rgba(82, 78, 68, 0.85);

  /* TESTO CHIARO QUANDO SCROLLI */
  --default-color: #ffffff;
  --heading-color: #ffffff;

  --nav-color: rgba(255, 255, 255, 0.7);
  --nav-hover-color: #ffffff;
}

/* =========================================================
   PAGINE TESTUALI COERENTI (Il progetto / Crediti)
   - usa la struttura hero-2 già presente
   - aggiunge solo tipografia e card leggere
========================================================= */

.project-title{
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 0.75rem 0;
}

.project-lead{
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
}

.project-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.project-actions-inline{
  margin-top: 0.75rem;
}

.project-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.project-card h3{
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.project-card p{
  margin: 0 0 0.75rem 0;
}

.project-list{
  margin: 0.75rem 0 0 1rem;
}

.project-list li{
  margin-bottom: 0.4rem;
}

.project-steps{
  margin: 0.75rem 0 0 1.25rem;
}

.project-steps li{
  margin-bottom: 0.5rem;
}

.muted{
  opacity: 0.75;
  font-size: 0.95rem;
}


@media (max-width: 1199px) {
  .mobile-nav-active .navmenu ul {
    display: block !important;
    position: fixed;
    top: 70px; /* Lascia un po' di spazio dal bordo superiore */
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 20px 0;
    
    /* SFONDO PROFESSIONALE */
    background-color: var(--nav-mobile-background-color) !important;
    backdrop-filter: blur(15px); /* Sfoca quello che c'è dietro */
    -webkit-backdrop-filter: blur(15px); /* Compatibilità Safari */
    
    /* BORDI E OMBRE */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Bordino sottile effetto vetro */
    border-radius: 15px; /* Angoli più morbidi */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /* Ombra profonda ma morbida */
    
    overflow-y: auto;
    z-index: 9998;
    transition: all 0.4s ease-in-out;
  }

  /* Miglioriamo i link all'interno del menu */
  .navmenu a, .navmenu a:focus {
    color: #333 !important; /* Testo scuro per contrasto su trasparenza */
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Separatore quasi invisibile */
    margin: 0 15px;
  }

  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color) !important;
    background: rgba(184, 160, 126, 0.1); /* Leggero tocco di colore accent al passaggio */
    border-radius: 8px;
  }
}