/* =========================================================
   Compagnie THEATYS — feuille de style principale
   Palette : cf. brief "Identité visuelle" (slide 08)
   Objectif perf : pas de framework, pas d'images lourdes,
   uniquement CSS/SVG/dégradés -> chargement très rapide.
   ========================================================= */

/* Police de titre "Strange Dreams" (choix du brief) : fichier non fourni
   pour l'instant -> à déposer dans /fonts (voir fonts/LISEZ-MOI.txt).
   Tant que le fichier n'est pas présent, le navigateur ignore cette
   règle sans erreur et bascule sur Cinzel (Google Fonts) en secours. */
@font-face {
  font-family: 'Strange Dreams';
  src: url('../fonts/StrangeDreams-Regular.woff2') format('woff2'),
       url('../fonts/StrangeDreams-Regular.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* Police "Elastic Stretch" : titres uniquement, page "Le chœur à l'écoute"
   (voir .page-coeur-a-lecoute ci-dessous). */
@font-face {
  font-family: 'Elastic Stretch';
  src: url('../fonts/ElasticStretch.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-primary: #7D1420;      /* couleur principale */
  --c-secondary: #C92135;    /* couleur secondaire */
  --c-accent: #C9933A;       /* or scénique */
  --c-light: #F4F0FB;        /* fond clair */
  --c-dark: #4A3134;         /* texte sombre */
  --c-white: #FFFFFF;

  --font-heading: 'Strange Dreams', 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body: 'Franklin Gothic Medium', 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;

  --radius: 6px;
  --shadow: 0 10px 30px rgba(74, 49, 52, 0.15);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-dark);
  background: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--c-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.section--light { background: var(--c-light); }
.section--dark {
  background: var(--c-dark);
  color: var(--c-light);
}
.section--dark h2, .section--dark h3 { color: var(--c-white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.section-head {
  max-width: 680px;
  margin: 0 0 40px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--c-secondary);
  color: var(--c-white);
}
.btn--primary:hover { background: var(--c-primary); box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--c-white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

.btn--outline {
  background: transparent;
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: var(--c-white); }

.btn--accent {
  background: var(--c-accent);
  color: var(--c-dark);
}
.btn--accent:hover { background: var(--c-primary); color: var(--c-white); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(74,49,52,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 42px;
  width: auto;
}
.nav .logo img {
  height: 56px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-dark);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--c-secondary);
  border-color: var(--c-secondary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--c-primary);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(74,49,52,0.08);
  }
  .nav-links.is-open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(74,49,52,0.06);
  }
}

/* ---------- Hero (page d'accueil) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201,147,58,0.35), transparent 55%),
    radial-gradient(ellipse at 50% 120%, rgba(201,33,53,0.55), transparent 60%),
    linear-gradient(180deg, #2c1013 0%, #4a3134 55%, #7D1420 100%);
}
.hero::before {
  /* léger effet "rideau de scène" en CSS pur, aucune image */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.18) 0 2px, transparent 2px 40px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.hero .eyebrow { color: var(--c-accent); }
.hero h1 { color: var(--c-white); }
.hero-logo {
  display: block;
  width: min(520px, 80vw);
  height: auto;
  margin: 0 auto;
}
.hero p.tagline {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}

/* ---------- Teaser vidéo (accueil) : facade cliquable, iframe chargé à la demande ---------- */
.hero-video {
  margin: 36px auto 0;
  max-width: 440px;
}
.hero-video__facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--c-dark);
}
.hero-video__facade img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.hero-video__facade:hover img,
.hero-video__facade:focus-visible img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.hero-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video__play svg {
  width: 22px;
  height: 22px;
  padding: 17px 17px 17px 20px;
  background: rgba(125,20,32,0.85);
  color: var(--c-white);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-video__facade:hover .hero-video__play svg,
.hero-video__facade:focus-visible .hero-video__play svg {
  background: var(--c-secondary);
  transform: scale(1.08);
}
.hero-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
}

/* ---------- Placeholder visuel (remplace photos/vidéos manquantes) ---------- */
.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-primary), var(--c-dark));
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(201,147,58,0.35), transparent 45%);
}
.ph span {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
  opacity: 0.85;
}
.ph svg { width: 34px; height: 34px; margin-bottom: 10px; opacity: 0.85; position: relative; z-index: 1; }
.ph--gold { background: linear-gradient(135deg, var(--c-accent), #8a5f22); color: var(--c-dark); }
.ph--light { background: linear-gradient(135deg, #d8cfe6, var(--c-light)); color: var(--c-primary); }

/* ---------- Grilles / cartes ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(74,49,52,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-body { padding: 20px 22px 24px; }
.card .ph { aspect-ratio: 3 / 4; border-radius: 0; }
.card h3 { margin-bottom: 6px; }
.card .meta {
  font-size: 0.82rem;
  color: var(--c-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

/* ---------- Photo d'équipe unique (remplace un .ph quand la photo existe) ---------- */
.card .photo,
.split-media .photo,
.grid .photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-dark);
}
.grid .photo {
  border-radius: var(--radius);
}
.card .photo img,
.split-media .photo img,
.grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* ---------- Photo-stack : plusieurs personnes dans un même carré ----------
   Les photos défilent simplement en fondu enchaîné (voir main.js). */
.photo-stack {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--c-dark);
  z-index: 1;
}
.photo-stack__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 0;
  transition: opacity 1s ease;
}
.photo-stack__img.is-active { opacity: 1; }

.photo-stack__grid {
  display: none;
}
.photo-stack__badge {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  background: rgba(74,49,52,0.75);
  color: var(--c-white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ---------- Deux colonnes texte / visuel ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split-media .ph { min-height: 320px; }

/* ---------- Témoignages ---------- */
.testimonials {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial {
  display: none;
}
.testimonial.is-active { display: block; }
.testimonial .stars { color: var(--c-accent); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  margin: 0 0 18px;
  color: var(--c-white);
}
.testimonial cite { font-style: normal; font-size: 0.85rem; opacity: 0.75; }
.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.testimonial-dots button.is-active { background: var(--c-accent); }

/* ---------- Sigle mis en avant ---------- */
.brand-mark-section {
  text-align: center;
}
.brand-mark {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 8px;
}
@media (min-width: 640px) {
  .brand-mark { width: 300px; }
}

/* ---------- Bandeau partenaires ---------- */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 26px;
  padding: 14px 22px;
  border: 1px dashed rgba(74,49,52,0.3);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-dark);
  opacity: 0.65;
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(74,49,52,0.08);
}
.partner-logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* ---------- Bandeau CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--c-primary), var(--c-secondary));
  color: var(--c-white);
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius);
}
.cta-band h2 { color: var(--c-white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark);
  color: rgba(244,240,251,0.85);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.site-footer h4 {
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.site-footer .logo img { height: 54px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: var(--c-accent); }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(244,240,251,0.08);
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--c-accent); color: var(--c-dark); }
.footer-bottom {
  border-top: 1px solid rgba(244,240,251,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ---------- Page interne : bannière de titre ---------- */
.page-banner {
  padding: 64px 0 48px;
  background: linear-gradient(160deg, var(--c-dark), var(--c-primary));
  color: var(--c-white);
  text-align: center;
}
.page-banner h1 { color: var(--c-white); margin-bottom: 8px; }
.page-banner p { opacity: 0.85; max-width: 620px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 14px;
}
.breadcrumb a:hover { color: var(--c-accent); }

/* ---------- Fiche technique ---------- */
.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(74,49,52,0.12);
  font-size: 0.95rem;
}
.spec-list strong { color: var(--c-primary); }

/* ---------- Actualités : calendrier + revue de presse en deux colonnes ---------- */
.news-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .news-layout { grid-template-columns: 1fr; }
}
.press-list {
  display: grid;
  gap: 16px;
}
.press-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--c-white);
  border: 1px dashed rgba(74,49,52,0.28);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.press-item svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--c-accent);
  margin-top: 2px;
}
.press-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--c-primary);
  margin: 0 0 4px;
}
.press-item p { margin: 0; font-size: 0.85rem; opacity: 0.75; }
.press-meta {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-secondary);
  margin: 0 0 4px;
}

/* ---------- Timeline (agenda) ---------- */
.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 760px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(125,20,32,0.2);
}
.timeline li {
  position: relative;
  padding: 0 0 34px 34px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-light);
  border: 3px solid var(--c-secondary);
}
.timeline li.is-done::before { background: var(--c-secondary); }
.timeline li.is-highlight::before { background: var(--c-accent); border-color: var(--c-accent); }
.timeline .date {
  display: block;
  font-weight: 700;
  color: var(--c-secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.timeline .is-highlight .date { color: var(--c-accent); }

/* ---------- Formulaire de contact ---------- */
.form-grid {
  display: grid;
  gap: 20px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--c-primary);
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(74,49,52,0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--c-white);
  color: var(--c-dark);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(201,33,53,0.15);
}
textarea { resize: vertical; min-height: 140px; }

/* honeypot anti-spam : champ invisible pour les humains */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.contact-info-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 18px;
}
.contact-info-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-info-list svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--c-secondary); margin-top: 2px; }

.form-note {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 10px;
}

/* ---------- Utilitaires ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(125,20,32,0.08);
  color: var(--c-primary);
  font-size: 0.8rem;
  font-weight: 700;
}
.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Page spectacle "Le chœur à l'écoute" : titres en police dédiée ---------- */
.page-coeur-a-lecoute h1,
.page-coeur-a-lecoute h2,
.page-coeur-a-lecoute h3,
.page-coeur-a-lecoute h4 {
  font-family: 'Elastic Stretch', var(--font-heading);
}

.page-coeur-a-lecoute .hero .eyebrow { color: #FFD84D; }

.page-coeur-a-lecoute .hero--photo {
  background-image:
    radial-gradient(ellipse at 50% 20%, rgba(201,147,58,0.35), transparent 55%),
    linear-gradient(180deg, rgba(44,16,19,0.55) 0%, rgba(74,49,52,0.6) 55%, rgba(125,20,32,0.75) 100%),
    url('../images/hero-coeur-a-lecoute.jpg');
  background-size: cover;
  background-position: center 30%;
}

/* ---------- Page spectacle "Hadria et les Elohim" : visuel de fond dans le bandeau ---------- */
.page-hadria .hero--photo {
  background-color: var(--c-dark);
  background-image:
    radial-gradient(ellipse at 50% 20%, rgba(201,147,58,0.35), transparent 55%),
    linear-gradient(180deg, rgba(44,16,19,0.6) 0%, rgba(74,49,52,0.55) 45%, rgba(125,20,32,0.8) 100%),
    url('../images/hero-hadria-v3.jpg');
  background-size: cover, cover, contain;
  background-position: center, center, center center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
