
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --terracotta: #cf721f;
  --gold:       #D4A017;
  --cream:      white;
  --deep:       #1A1208;
  --sand:       #E8D8C0;
  --leaf:       #67803a;
  --text:       #3A2810;
  --muted:      #7A6248;
}


/* Hero Header */
.apropos-header {
    position: relative;
    /*background: linear-gradient(180deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 18%)), url('../images/img.png') center/cover no-repeat;*/
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-top: 95px;
}

.apropos-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgb(0 0 0 / 45%); 
    z-index: 1;
}

.apropos-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 20px;
}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.odco-section {
  
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.odco-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.odco-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.odco-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,0.1);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 3.5rem;
  border-left: 3px solid var(--gold);
}

/* Two-column grid */
.odco-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

/* ---- LEFT: stats column ---- */
.odco-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: sticky;
  top: 6rem;
}

.odco-emblem {
  text-align: center;
  padding: 1.8rem 0;
}

.odco-year {
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
      direction: ltr;
}

.odco-year sup {
  font-size: 1rem;
  vertical-align: super;
}

.odco-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

.odco-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--sand), transparent);
}

/* ---- RIGHT: text column ---- */
.odco-title {
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.odco-accent {
  color: var(--terracotta);
  font-style: italic;
}

.odco-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to left, var(--gold), transparent);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.odco-lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-right: 1.2rem;
  border-right: 3px solid var(--sand);
}

.odco-lead strong {
  color: var(--terracotta);
  font-weight: 600;
}

.odco-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.odco-body strong { color: var(--text); font-weight: 600; }
.odco-body em { color: var(--leaf); font-style: normal; font-weight: 500; }

/* Responsive */
@media (max-width: 768px) {
  .odco-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .odco-visual {
    flex-direction: row;
    justify-content: space-around;
    position: static;
    flex-wrap: wrap;
  }
  .odco-line { display: none; }
  .odco-emblem { padding: 1rem 1.5rem; }
}

/* LOGO ODCO */
.odco-logo {
  margin-bottom: 15px;
}

.odco-logo img {
  width: 330px;
  height: auto;
  display: block;
}

/* optional: align */
.odco-text {
  position: relative;
}

.odco-logo {
  position: static;
  padding: 10px;
  border-radius: 12px;
  text-align: -webkit-center;
}