/* ============================================
   ABOUT US - Full-screen Parallax Layout
   Replicates sabiana.it/it/company/about-us
   ============================================ */

/* Full-height section with background image */
.about-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay for text readability */
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.about-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

/* Section title (English) */
.about-section__title {
  font-family: myriad-pro-semi-condensed, sans-serif;
  font-weight: 300;
  font-size: 72px;
  text-transform: none;
  letter-spacing: 2px;
  margin: 0 0 30px 0;
  color: #fff;
}

/* Subtitle (Italian, uppercase) */
.about-section__subtitle {
  font-family: myriad-pro-semi-condensed, sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 25px 0;
  color: #fff;
}

/* Body text */
.about-section__text {
  font-family: myriad-pro, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0 0 20px 0;
}

/* Leggi altro expand button */
.about-section__readmore {
  display: inline-block;
  color: #fff;
  font-family: myriad-pro-semi-condensed, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 10px 0;
  transition: opacity 0.3s;
}
.about-section__readmore:hover {
  opacity: 0.7;
}
.about-section__readmore i {
  display: block;
  margin: 0 auto 5px auto;
  font-size: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.about-section__readmore.expanded i {
  transform: rotate(45deg);
}

/* Hidden expanded text */
.about-section__expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  text-align: center;
}
.about-section__expanded.show {
  max-height: 1000px;
}
.about-section__expanded p {
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.about-section__expanded ul {
  text-align: left;
  display: inline-block;
  margin: 10px 0;
}
.about-section__expanded li {
  margin: 5px 0;
  color: rgba(255,255,255,0.85);
}

/* Closing heading */
.about-section__closing {
  font-family: myriad-pro-semi-condensed, sans-serif;
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
  color: #fff;
  margin-top: 20px;
}

/* Background images per section */
.about-section--hero { background-image: url('/sites/default/files/company/about_us_bg.jpg'); }
.about-section--people { background-image: url('/sites/default/files/company/people_bg.jpg'); }
.about-section--efficiency { background-image: url('/sites/default/files/company/efficiency_bg.jpg'); }
.about-section--comfort { background-image: url('/sites/default/files/company/comfort_bg.jpg'); }
.about-section--made-in-italy { background-image: url('/sites/default/files/company/madeInItaly_bg.jpg'); }
.about-section--innovation { background-image: url('/sites/default/files/company/innovation_bg.jpg'); }

/* Sidebar navigation (dots) */
.about-sidebar {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-sidebar li {
  margin: 15px 0;
  position: relative;
}
.about-sidebar a {
  display: flex;
  align-items: center;
  width: auto;
  height: 24px;
  background: none;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.about-sidebar a:hover,
.about-sidebar a.active {
  background: none;
  border: none;
}
.about-sidebar .about-sidebar__label {
  white-space: nowrap;
  font-family: myriad-pro-semi-condensed, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-left: 10px;
  transition: color 0.3s, opacity 0.3s;
  pointer-events: auto;
}
.about-sidebar a:hover .about-sidebar__label,
.about-sidebar a.active .about-sidebar__label {
  color: #fff;
}

/* Hero specific - larger text */
.about-section--hero .about-section__title {
  font-size: 56px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 767px) {
  .about-section__title {
    font-size: 42px;
  }
  .about-section--hero .about-section__title {
    font-size: 32px;
  }
  .about-section__content {
    padding: 30px 15px;
  }
  .about-sidebar {
    display: none;
  }
  .about-section {
    background-attachment: scroll; /* fix iOS */
  }
}

/* Inline images within text (people_2, madeInItaly_2, innovation_2) */
.about-section__inline-img {
  max-width: 100%;
  margin: 20px auto;
  border-radius: 4px;
  display: block;
}

/* Hide breadcrumb and page title on about-us */
.path-node-44 .breadcrumb,
.path-node-44 h1.page-title,
.path-node-44 .block-system-breadcrumb-block {
  display: none;
}


/* Smooth scroll - no snap (snap causes brutal jumps) */

/* Sidebar dots - outline style like live */
.about-sidebar a::before {
  content: '';
  width: 12px;
  height: 12px;
  min-width: 12px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  background: transparent;
  display: inline-block;
  transition: all 0.3s;
  margin-right: 0;
}
.about-sidebar a:hover::before,
.about-sidebar a.active::before {
  background: #fff;
  border-color: #fff;
}
.about-sidebar li {
  margin-bottom: 20px !important;
}
