:root{
  --indeco-bg: #ffffff;
  --indeco-ink: #1a1a1a;
  --indeco-muted: #6b6b6b;
  --indeco-burgundy: #a85266;
  --indeco-burgundy-2: #7d3246;
  --indeco-border: rgba(123, 29, 53, .25);
  --gradient-burgundy: linear-gradient(90deg, var(--indeco-burgundy) 50%, #4d2662  80%, var(--indeco-burgundy)  100%);
  --indeco-surface: #fff;
  --indeco-inverse: #fff;
  --indeco-font: "Myriad-Pro", "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --indeco-font-display: "Fraunces", serif;
  --indeco-radius: 12px;
  --indeco-radius-sm: 6px;
  --indeco-shadow: 0 18px 45px rgba(0,0,0,.06);
  --indeco-footer-text: rgba(255,255,255,.88);
}

@font-face{
  font-family: 'Myriad-Pro';
  src: url('/public/fonts/MyriadPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html, body { height: 100%; }

.indeco-body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Myriad-Pro", "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--indeco-ink);
  padding-top: 15px;
}

.indeco-main{ flex: 1 0 auto; padding-bottom: 40px; }
.indeco-footer{ margin-top: auto; }

.indeco-container{ max-width: 1000px; }
.indeco-container--about{ max-width: 1026px; } /* +20% */

.indeco-header{
  position: sticky;
  top: 15px;
  z-index: 30;
  background: #fff;
}

.indeco-topstripe{
  height: 15px !important;
  background: var(--gradient-burgundy);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 31;
}

.indeco-topbar{
  margin-top: 2px;
  background: #fff;
  color: var(--indeco-burgundy);
  border-bottom: 0;
}

/* Mobile: hide topbar (social + lang moved to sidebar/nav) */
@media (max-width: 991.98px){
  .indeco-topbar-desktop{
    display: none !important;
  }
}

/* Mobile nav bar: lang | title (centered) | hamburger */
.indeco-mobile-navbar{
  min-height: 44px;
  position: relative;
}
.indeco-mobile-pagetitle{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 600;
  color: var(--indeco-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}
.indeco-mobile-navbar > .indeco-lang,
.indeco-mobile-navbar > .indeco-sidebar-toggler{
  flex: 0 0 auto;
  min-width: 26px;
}
.indeco-sidebar-toggler{
  cursor: pointer;
  color: var(--indeco-burgundy);
}
.indeco-hamburger{
  display: block;
}

/* Sidebar: slides from right, 40% width */
.indeco-sidebar{
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
  visibility: hidden;
}
.indeco-sidebar.is-open{
  pointer-events: auto;
  visibility: visible;
}
.indeco-sidebar-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.indeco-sidebar.is-open .indeco-sidebar-overlay{
  opacity: 1;
}
.indeco-sidebar-panel{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  min-width: 200px;
  max-width: 280px;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
}
.indeco-sidebar.is-open .indeco-sidebar-panel{
  transform: translateX(0);
}
.indeco-sidebar-nav{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.indeco-sidebar-link{
  display: block;
  padding: 0.5rem 0;
  color: var(--indeco-muted);
  text-decoration: none;
  font-size: 15px;
}
.indeco-sidebar-link:hover,
.indeco-sidebar-link.active{
  color: var(--indeco-burgundy);
}
.indeco-sidebar-social{
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--indeco-border);
}

/* Align top social icons to the left edge of the top stripe ribbon */
.indeco-topbar > .container{
  padding-left: 0;
  padding-right: 0;
}
.indeco-ico{
  color: #fff;
  background: var(--indeco-burgundy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 0;
}
.indeco-ico:hover{
  background: var(--indeco-burgundy-2);
  color: #fff;
}
.indeco-topsep{
  width: 1.5px;
  margin: 0 8px;
  height: 18px;
  background: rgba(23, 16, 18, 0.35);
  display: inline-block;
}
.indeco-lang{
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
  background: var(--indeco-burgundy);
  border: 0;
  padding: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.indeco-lang:hover{
  background: var(--indeco-burgundy-2);
  color: #fff;
}

.indeco-nav{
  background: #fff;
  border-bottom: 0;
  padding: 0 !important;
}

.indeco-navgrid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.indeco-navlinks{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.indeco-navlinks-left{ justify-content: flex-end; padding-right: 6px; }
.indeco-navlinks-right{ justify-content: flex-start; padding-left: 6px; }

.indeco-logo{ margin: 0; }
.indeco-logo-img{
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.indeco-logo-text{ text-align: center; }

.indeco-logo-title{
  text-align: center;
}
.indeco-logo-name{
  text-align: center;
}

@media (max-width: 991.98px){
  .indeco-navgrid{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-top: 10px;
  }
  .indeco-navlinks-left,
  .indeco-navlinks-right{
    justify-content: center;
    padding: 0;
  }
}

/* Page title ribbon in header (all pages) */
.indeco-page-title{
  padding: 2px 0 10px;
  background: var(--indeco-surface);
}
.indeco-page-title .indeco-section-title{
  margin: 0;
}
.indeco-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--indeco-burgundy);
}
.indeco-logo-mark{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--indeco-burgundy);
  display: grid;
  place-items: center;
}
.indeco-logo-drop{
  width: 26px;
  height: 26px;
  border-radius: 18px 18px 18px 0;
  transform: rotate(45deg);
  background: var(--indeco-burgundy);
  display: grid;
  place-items: center;
  color: var(--indeco-inverse);
  font-family: var(--indeco-font-display);
  font-weight: 800;
  font-size: 14px;
}
.indeco-logo-drop > * { transform: rotate(-45deg); }
.indeco-logo-text{
  line-height: 1;
  text-align: left;
}
.indeco-logo-title{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: lowercase;
}
.indeco-logo-name{
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .02em;
}

.indeco-navlinks .nav-link{
  color: var(--indeco-muted);
  font-weight: 500;
  padding: .35rem 2.15rem;
  font-size: 13px;
}
.indeco-navlinks .nav-link:hover{
  color: var(--indeco-burgundy);
}
.indeco-navlinks .nav-link.active{
  color: var(--indeco-burgundy);
  text-decoration: none;
}

.indeco-card{
  border: 1px solid var(--indeco-border);
  border-radius: var(--indeco-radius);
  box-shadow: var(--indeco-shadow);
  background: var(--indeco-surface);
}

.indeco-btn{
  border-radius: 14px;
}
.btn-primary.indeco-btn{
  background: var(--indeco-burgundy);
  border: 1px solid var(--indeco-burgundy);
}
.btn-primary.indeco-btn:hover{
  background: var(--indeco-burgundy-2);
  border-color: var(--indeco-burgundy-2);
}

.indeco-h1{
  font-family: var(--indeco-font);
  font-size: 17px;
  font-weight: 400;
  color: var(--indeco-burgundy);
}

.content-prose h1 {
  font-family: var(--indeco-font);
  font-size: 17px;
  font-weight: 400;
}
.content-prose :is(h2,h3){ font-family: var(--indeco-font-display); }
.content-prose p, .content-prose li{
  line-height: 1.75;
}

/* About page: match normal feature typography */
.indeco-feature-body p,
.indeco-feature-body li{
  font-size: 13px !important;
  line-height: 1.6;
  color: var(--indeco-muted) !important;
}
.content-prose a{
  color: var(--indeco-burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-prose hr{
  border-top: 1px solid rgba(0,0,0,.12);
  opacity: 1;
  margin: 1.75rem 0;
}

/* Formare profesională & Noutăți pages: 55% width, centered, custom typography */
@media (min-width: 768px) {
  .content-prose.indeco-content-narrow {
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
}
.content-prose.indeco-content-narrow p,
.content-prose.indeco-content-narrow li {
  font-size: 13px;
  color: var(--indeco-muted);
}
.content-prose.indeco-content-narrow :is(h2, h3) {
  font-size: 20px;
  font-style: italic;
  font-family: var(--indeco-font);
  color: var(--indeco-muted);
  text-align: center;
}
.content-prose.noutati a {
  text-decoration: none;
  color: var(--indeco-muted);
}
.content-prose.noutati a:hover {
  color: var(--indeco-burgundy);
}
.content-prose.achizitii a {
  text-decoration: none;
  color: var(--indeco-muted);
}
.content-prose.achizitii a:hover {
  color: var(--indeco-burgundy);
}
.content-prose.achizitii img[alt="Logo achiziții"],
.content-prose.achizitii img[alt="Acquisitions logo"] {
  display: block;
  margin: 1.5rem auto 1rem;
  width: 100%;
}
.content-prose.achizitii hr {
  margin: 1.5rem 0;
  border-top: 1.8px solid rgba(107, 107, 107, 0.35);
}

/* Projects page */
.indeco-projects-years {
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: var(--indeco-font);
}
.indeco-projects-years-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}
.indeco-projects-inner {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .indeco-projects-inner {
    max-width: 100%;
  }
}
.indeco-projects-year-link {
  color: var(--indeco-muted);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.indeco-projects-year-link:hover {
  color: var(--indeco-burgundy);
}
.indeco-projects-year-link.active {
  color: var(--indeco-burgundy);
  font-weight: 600;
}
.indeco-projects-year-sep {
  color: rgba(0,0,0,.3);
  pointer-events: none;
}
.indeco-project-title {
  font-family: var(--indeco-font);
  font-size: 20px;
  font-style: italic;
  color: var(--indeco-muted);
  text-align: center;
  margin-bottom: 1rem;
}
.indeco-project-body,
.indeco-project-details {
  color: var(--indeco-muted);
}
.indeco-project-body p,
.indeco-project-body li,
.indeco-project-details p,
.indeco-project-details li {
  font-size: 13px;
  color: var(--indeco-muted);
  line-height: 1.6;
}
.indeco-project-body :is(h2, h3),
.indeco-project-details :is(h2, h3) {
  font-size: 20px;
  font-style: italic;
  font-family: var(--indeco-font);
  color: var(--indeco-muted);
  text-align: center;
}
.indeco-project-body a,
.indeco-project-details a {
  text-decoration: none;
  color: var(--indeco-muted);
}
.indeco-project-body a:hover,
.indeco-project-details a:hover {
  color: var(--indeco-burgundy);
}
.indeco-project-body a[href*="/public/downloads/"],
.indeco-project-details a[href*="/public/downloads/"] {
  color: var(--indeco-burgundy);
}
.indeco-project-body a[href*="/public/downloads/"]:hover,
.indeco-project-details a[href*="/public/downloads/"]:hover {
  color: var(--indeco-burgundy-2);
}
.indeco-project-toggle {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--indeco-burgundy);
  cursor: pointer;
  text-decoration: none;
}
.indeco-project-toggle:hover {
  color: var(--indeco-burgundy-2);
}
.indeco-project-details {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  transition: grid-template-rows 0.35s ease-out;
}
.indeco-project-details.is-expanded {
  grid-template-rows: 1fr;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.1);
}
.indeco-project-details-inner {
  min-height: 0;
  overflow: hidden;
}
.indeco-project-card.indeco-card {
  border: none;
  border-bottom: 1.8px solid var(--indeco-border);
  border-radius: 0;
  background: var(--indeco-bg);
  box-shadow: none;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.indeco-project-card:last-child.indeco-card {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.indeco-footer{
  background: var(--gradient-burgundy);
  color: var(--indeco-footer-text);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}
.indeco-footer-inner{
  min-height: 25px;
  display: flex;
  align-items: center;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 10%;
}
.footer-sub{
  font-size: 12px;
}

.indeco-404{
  font-family: "Fraunces", serif;
  font-weight: 800;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #d9b4bf, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* About page (match original look) */
.indeco-section-title{
  position: relative;
  margin: 1.2rem 0 2.2rem;
  text-align: center;
}
.indeco-section-title:before,
.indeco-section-title:after{
  content:'';
  position:absolute;
  left:0; right:0;
  top:40%;
  height:0.8px;
  background: rgba(4, 1, 1, 0.25);
  z-index: 0; /* keep ribbon lines behind the pill */
}
.indeco-section-title:before{ transform: translateY(-1.5px); }
.indeco-section-title:after{ transform: translateY(1.5px); }
.indeco-section-pill{
  display:inline-block;
  position:relative;
  width: 230px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: .25rem 1.6rem;
  background: var(--indeco-burgundy-2);
  color: var(--indeco-inverse);
  font-family: var(--indeco-font);
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--indeco-radius-sm);
  z-index: 1; /* ensure pill is above both ribbon lines */
}

/* Ribbon cutouts (like original) */
.indeco-section-pill::before,
.indeco-section-pill::after{
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 44px;
  background: var(--indeco-bg);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 999; /* mask pill edges with cutouts */
}
.indeco-section-pill::before{
  left: -25px;
}
.indeco-section-pill::after{
  right: -25px;
}
.indeco-feature{
  text-align: left;
  padding: 1.7rem 1.7rem .9rem;
  border: 0;
  border-radius: var(--indeco-radius-sm);
  background: var(--indeco-surface);
}

/* About features: remove horizontal padding for the edge cards */
.indeco-about-features .indeco-feature{
  padding-top: 0;
  padding-bottom: 0;
}

/* Faded separators between About features */
/* Desktop: vertical lines, 30% height, centered; thicker in the middle */
@media (min-width: 992px){
  .indeco-about-features > .col-lg-3{
    position: relative;
  }
  .indeco-about-features > .col-lg-3:nth-child(1)::after,
  .indeco-about-features > .col-lg-3:nth-child(2)::after,
  .indeco-about-features > .col-lg-3:nth-child(3)::after{
    content: '';
    position: absolute;
    right: 0;
    /* centered in the first half (upper half) of the card */
    top: 30%;
    transform: translateY(-50%);
    /* ~20% higher than previous 30% => ~36% */
    height: 32%;
    width: 2px;
    background: linear-gradient(
      to bottom,
      rgba(123,29,53,0) 0%,
      rgba(123,29,53,.28) 35%,
      rgba(123,29,53,.55) 50%,
      rgba(123,29,53,.28) 65%,
      rgba(123,29,53,0) 100%
    );
  }
}

/* Tablet: 2 columns per row => vertical separators + horizontal line between rows */
@media (min-width: 768px) and (max-width: 991.98px){
  .indeco-about-features > .col-md-6{
    position: relative;
  }
  /* Vertical line between 2 columns: on the left column of each row */
  .indeco-about-features > .col-md-6:nth-child(1)::after,
  .indeco-about-features > .col-md-6:nth-child(3)::after{
    content: '';
    position: absolute;
    right: 0;
    /* centered in the first half (upper half) of the card */
    top: 25%;
    transform: translateY(-50%);
    /* ~20% higher than previous 30% => ~36% */
    height: 36%;
    width: 2px;
    background: linear-gradient(
      to bottom,
      rgba(123,29,53,0) 0%,
      rgba(123,29,53,.28) 35%,
      rgba(123,29,53,.55) 50%,
      rgba(123,29,53,.28) 65%,
      rgba(123,29,53,0) 100%
    );
  }

  /* Horizontal line between the 2 rows: centered and with taper */
  .indeco-about-features > .col-md-6:nth-child(3)::before,
  .indeco-about-features > .col-md-6:nth-child(4)::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(123,29,53,0) 0%,
      rgba(123,29,53,.28) 35%,
      rgba(123,29,53,.55) 50%,
      rgba(123,29,53,.28) 65%,
      rgba(123,29,53,0) 100%
    );
  }
}

@media (min-width: 992px){
  .indeco-about-features > .col-lg-3:nth-child(1) .indeco-feature{
    padding-left: 0;
  }
  .indeco-about-features > .col-lg-3:nth-child(4) .indeco-feature{
    padding-right: 0;
  }
}
.indeco-feature-head{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.5rem;
}
.indeco-feature-ico{
  width: 72px;
  height: 72px;
  border-radius: 0;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--indeco-burgundy);
}
.indeco-feature-ico svg{
  width: 38px;
  height: 38px;
}
.indeco-feature-ico .indeco-feature-img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.indeco-activities-img{
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.indeco-feature-title{
  font-family: "Myriad-Pro", "Work Sans", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  color: var(--indeco-muted);
  /* color: var(--indeco-burgundy); */
  /* margin: 0; */
}
.indeco-feature p{
  margin: 0;
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.6;
}
.indeco-activities{
  text-align: center;
  margin-top: 2.2rem;
}
.indeco-activities--narrow{
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.indeco-activities h2{
  font-family: "Myriad-Pro", "Work Sans", sans-serif;
  font-weight: 600;
  font-style: italic;
  /* color: var(--indeco-burgundy); */
  font-size: 24px;
  margin-bottom: 1.25rem;
}

/* Contact form (match original, simple labels + colon) */
.indeco-form{
  font-family: "Myriad-Pro", "Work Sans", sans-serif;
}
.indeco-form-row{
  display:grid;
  grid-template-columns: 110px 1fr;
  align-items:center;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(123,29,53,.18);
}
.indeco-form-label{
  font-style: italic;
  color: #2b2b2b;
  white-space: nowrap;
}
.indeco-form-label::after{ content: " :"; }
.indeco-input{
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.22);
  padding: .35rem .25rem;
  width: 100%;
  outline: none;
  background: transparent;
}
.indeco-input:focus{
  border-bottom-color: var(--indeco-burgundy);
}
.indeco-textarea{
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 6px;
  padding: .6rem .7rem;
  width: 100%;
  min-height: 140px;
  outline: none;
}
.indeco-textarea:focus{
  border-color: var(--indeco-burgundy);
}
.indeco-form-actions{
  padding-top: 1rem;
}
.indeco-activities .cols{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  text-align:left;
  font-size: 13px;
  color:#2d2d2d;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}
.indeco-feature-body ul{
  margin:0;
  padding-left: 0.85rem !important; /* tighter bullets (closer to container start) */
  margin-left: 0;
}
@media (max-width: 768px){
  .indeco-activities .cols{ grid-template-columns: 1fr; }
  .indeco-activities--narrow{ width: 100%; }
}

