/*---------------------------------------
  FESTIVAL FLAMENCO DE GORBIO
  CSS complet optimisé
-----------------------------------------*/

/*---------------------------------------
  VARIABLES
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #F8CB2E;
  --secondary-color: #EE5007;
  --secondary-dark-color: #c01f27;
  --section-bg-color: #f0f8ff;
  --dark-color: #000000;
  --dark-soft-color: #080808;
  --p-color: #717275;
  --border-color: rgba(255, 255, 255, 0.14);
  --link-hover-color: #B22727;

  --body-font-family: 'Outfit', sans-serif;

  --h1-font-size: clamp(3rem, 10vw, 8rem);
--h2-font-size: clamp(1.6rem, 3vw, 2.2rem);
--h3-font-size: clamp(1.2rem, 2vw, 1.6rem);
  --h4-font-size: 1.75rem;
  --h5-font-size: 1.5rem;
  --h6-font-size: 1.375rem;
  --p-font-size: 1.125rem;
  --btn-font-size: 0.875rem;
  --copyright-font-size: 1rem;

  --border-radius-large: 100px;
  --border-radius-medium: 24px;
  --border-radius-small: 12px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 32px 90px rgba(0, 0, 0, 0.42);
}

/*---------------------------------------
  GLOBAL
-----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  color: var(--p-color);
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/*---------------------------------------
  ACCESSIBILITÉ
-----------------------------------------*/
.visually-hidden-focusable {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-small);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.visually-hidden-focusable:focus {
  transform: translateY(0);
  color: var(--white-color);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

/*---------------------------------------
  TYPOGRAPHIE
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.65;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

/*---------------------------------------
  ICÔNES
-----------------------------------------*/
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  color: var(--secondary-color);
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
}

.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  LOADER
-----------------------------------------*/
#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #2b0000, #000);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.flamenco-loader {
  display: flex;
  gap: 12px;
}

.flamenco-loader .dot {
  width: 14px;
  height: 14px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: flamencoBeat 0.9s infinite ease-in-out;
}

.flamenco-loader .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.flamenco-loader .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loader-text {
  color: var(--white-color);
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.85;
}

@keyframes flamencoBeat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(238, 80, 7, 0);
  }

  50% {
    transform: translateY(-15px) scale(1.2);
    box-shadow: 0 0 20px rgba(238, 80, 7, 0.8);
  }
}

@media screen and (max-width: 767px) {
  #loader {
    padding: 24px;
    text-align: center;
  }

  .flamenco-loader {
    gap: 10px;
  }

  .flamenco-loader .dot {
    width: 12px;
    height: 12px;
  }

  .loader-text {
    max-width: 280px;
    margin-top: 22px;
    padding: 0 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
  }
}

@media screen and (max-width: 480px) {
  .loader-text {
    max-width: 240px;
    font-size: 0.78rem;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}

/*---------------------------------------
  BOUTONS
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
 /* border: 2px solid transparent;*/
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
 /* padding: 10px 22px;*/
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 35px rgba(238, 80, 7, 0.28);
}

.custom-btn:hover,
.custom-btn:focus {
  background: var(--secondary-dark-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.custom-border-btn:hover {
  background: var(--secondary-dark-color);
  border-color: transparent;
  color: var(--white-color);
}

/*---------------------------------------
  LIENS ANIMÉS
-----------------------------------------*/
.link-fx-1 {
  color: var(--secondary-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 28px;
  color: currentColor;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}

.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

/*---------------------------------------
  SECTIONS
-----------------------------------------*/
.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.section-overlay + .container {
  position: relative;
}

/*---------------------------------------
  HEADER SUPÉRIEUR
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 2px;
  padding-bottom: 2px;
  position: relative;
  z-index: 1001;
}

.site-header p,
.site-header strong {
  font-size: 1rem;
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.navbar {
  position: fixed !important;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
  background-color: transparent !important;
  transition: background 0.3s ease, top 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.navbar-scrolled {
  top: 0 !important;
  background: rgba(0, 0, 0, 0.92) !important;
  background-color: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-flex;
  align-items: center;
}

.navbar-brand .icon {
  width: 1.35em;
  height: 1.35em;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 8px;
  padding: 10px 18px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: 0.98rem;
  font-weight: var(--font-weight-bold);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  min-height: calc(100vh - 51px);
  background-color: var(--dark-color);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 51px);
  padding-bottom: 50px;
}

.hero-section .container .row {
  min-height: calc(100vh - 51px);
  width: 100%;
}

.hero-section span {
  color: var(--white-color);
}

.hero-section h1 {
  color: var(--white-color);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.date-wrap h2,
.location-wrap h2 {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
}

.video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.custom-video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.1);
}

/*---------------------------------------
  QUICK INFO
-----------------------------------------*/
.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--secondary-color);
  color: var(--white-color);
  text-align: center;
}

.quick-info div {
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info strong {
  display: block;
  color: var(--white-color);
  font-size: 1.65rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

.quick-info span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  margin-top: 5px;
}

/*---------------------------------------
  ABOUT
-----------------------------------------*/
.about-section {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42)),
    url("../images/edward-unsplash-blur.jpg");
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-section p {
  color: rgba(255, 255, 255, 0.88);
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  box-shadow: var(--shadow-strong);
}

.about-text-wrap {
  position: relative;
}

/*---------------------------------------
  PRICING
-----------------------------------------*/
.pricing-section {
  background:
    radial-gradient(circle at top left, rgba(238, 80, 7, 0.10), transparent 35%),
    var(--section-bg-color);
}

.pricing-section p {
  color: #4d4d4d;
}

.pricing-thumb {
  border: 2px dotted rgba(0, 0, 0, 0.18);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 38px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-thumb:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.pricing-thumb h3 {
  color: var(--dark-color);
}

.pricing-thumb h3 small {
  display: block;
  color: var(--secondary-color);
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-list {
  column-count: 1;
  padding-left: 20px;
  margin-bottom: 0;
}

.pricing-list-item {
  line-height: 1.45;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #4d4d4d;
  font-size: 1rem;
}

.pricing-thumb .link-fx-1 {
  color: var(--secondary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
  PROGRAMME
-----------------------------------------*/
.schedule-section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
       url("../images/edward-unsplash-blur.jpg");
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.festival-day-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festival-day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.festival-day-card-featured {
  border: 2px solid var(--secondary-color);
}

.festival-day-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.festival-day-header span {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.festival-day-header strong {
  color: var(--dark-color);
  font-size: 1.8rem;
  line-height: 1;
}

.festival-event {
  position: relative;
  padding-left: 22px;
  margin-bottom: 25px;
}

.festival-event:last-child {
  margin-bottom: 0;
}

.festival-event::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 0 6px rgba(238, 80, 7, 0.12);
}

.festival-time {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(238, 80, 7, 0.1);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  font-size: 0.9rem;
}

.festival-event h3 {
  color: var(--dark-color);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.festival-event p {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #3f3f3f;
  line-height: 1.45;
}

.festival-contact a {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  ARTISTES
-----------------------------------------*/
.artists-section {
  background:
    radial-gradient(circle at top left, rgba(238, 80, 7, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(248, 203, 46, 0.16), transparent 35%),
    #080808;
}

.artists-section h2,
.artists-intro {
  color: var(--white-color);
}

.artists-intro {
  font-size: 1.15rem;
  opacity: 0.78;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.artist-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 28px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 80, 7, 0.65);
  background: linear-gradient(145deg, rgba(238, 80, 7, 0.28), rgba(255, 255, 255, 0.07));
}

.artist-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
  padding: 0;
}

.artist-image {
  position: absolute;
  inset: 0;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.10));
  opacity: 0;
  pointer-events: none;
}

.artist-card:has(.artist-image)::after {
  opacity: 1;
}

.artist-card-featured::after {
  opacity: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.25), transparent);
}

.artist-content {
  position: relative;
  z-index: 2;
}

.artist-card-featured .artist-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
}

.artist-role {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(238, 80, 7, 0.16);
  color: #ff6a2a;
  font-size: 0.78rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.artist-card h3 {
  color: var(--white-color);
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.artist-card-featured h3 {
  font-size: 2.4rem;
}

.artist-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.artist-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.artist-link:hover {
  color: var(--secondary-color);
}

/*---------------------------------------
  TIMELINE
-----------------------------------------*/
.flamenco-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.flamenco-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 160px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  text-align: right;
  padding-top: 28px;
}

.timeline-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -68px;
  top: 35px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 0 8px rgba(238, 80, 7, 0.18);
}

.timeline-card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 80, 7, 0.65);
}

.timeline-card h3 {
  color: var(--white-color);
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.timeline-featured .timeline-card {
  background: linear-gradient(145deg, rgba(238, 80, 7, 0.35), rgba(255, 255, 255, 0.08));
  border-color: rgba(238, 80, 7, 0.8);
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact-section {
  background:
    radial-gradient(circle at top right, rgba(238, 80, 7, 0.08), transparent 35%),
    var(--white-color);
}

.contact-section .section-kicker {
  color: var(--secondary-color);
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.contact-form-body p {
  color: #4d4d4d;
}

.contact-form-body a {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
}

.contact-form-body a:hover {
  color: var(--link-hover-color);
}

.google-map {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  FORMULAIRES
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--secondary-dark-color);
  border-color: transparent;
}

/*---------------------------------------
  FOOTER
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-image:
    linear-gradient(rgba(238, 80, 7, 0.92), rgba(238, 80, 7, 0.92)),
       url("../images/edward-unsplash-blur.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-link:hover {
  color: var(--primary-color);
}

.site-footer-links {
  padding-left: 0;
  margin-bottom: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 8px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  RÉSEAUX SOCIAUX
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before {
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  RESPONSIVE TABLETTE
-----------------------------------------*/
@media screen and (max-width: 1199px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .artist-card-featured {
    grid-column: span 3;
  }
}

@media screen and (max-width: 991px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .navbar {
    top: 0;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.92);
    border-radius: 20px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 0;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 0;
    margin: 6px 0;
  }

  .hero-section {
    padding-top: 151px;
    min-height: 100vh;
  }

  .hero-section .container,
  .hero-section .container .row {
    min-height: 100vh;
  }

  .date-wrap h2,
  .location-wrap h2 {
    font-size: 1rem;
  }

  .festival-day-card {
    padding: 24px;
    border-radius: 22px;
  }

  .festival-day-header strong {
    font-size: 1.5rem;
  }

  .festival-event h3 {
    font-size: 1.2rem;
  }

  .pricing-thumb {
    padding: 32px;
  }

  .tab-content {
    padding: 32px;
  }
}

/*---------------------------------------
  RESPONSIVE MOBILE
-----------------------------------------*/
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }

  body {
    font-size: 16px;
  }

  /*.site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header p,
  .site-header strong {
    font-size: 0.95rem;
  }
*/
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section h1 {
    font-size: 3.2rem;
  }

  .hero-section img {
    width: 115px;
    height: auto;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-card,
  .artist-card-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .artist-card-featured {
    min-height: 520px;
  }

  .artist-card {
    padding: 22px;
    border-radius: 22px;
  }

  .artist-card-featured .artist-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .artist-card-featured h3 {
    font-size: 2rem;
  }

  .flamenco-timeline::before {
    left: 10px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 38px;
  }

  .timeline-year {
    text-align: left;
    padding-top: 0;
  }

  .timeline-card {
    padding: 24px;
    border-radius: 22px;
  }

  .timeline-card::before {
    left: -37px;
    top: 28px;
  }

  .timeline-card h3 {
    font-size: 1.4rem;
  }

  .pricing-list {
    padding-left: 18px;
  }

  .site-footer-link-item {
    display: block;
    margin-right: 0;
  }
}

/*---------------------------------------
  RESPONSIVE PETITS MOBILES
-----------------------------------------*/
@media screen and (max-width: 480px) {
  .hero-section h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  h4 {
    font-size: 1.35rem;
  }

  h5 {
    font-size: 1.2rem;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .tab-content {
    padding: 24px;
  }

  .festival-day-header {
    flex-direction: column;
    gap: 8px;
  }

  .festival-day-header strong {
    font-size: 1.4rem;
  }

  .social-icon-link {
    margin-right: 7px;
  }
}

/*---------------------------------------
  RÉDUCTION DES ANIMATIONS
-----------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
/*---------------------------------------
  BLASON HERO — PETIT EN HAUT À GAUCHE
-----------------------------------------*/
.hero-section {
  position: relative;
  isolation: isolate;
}

.hero-section .section-overlay {
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.video-wrap {
  z-index: 0;
}

.hero-blason-wrap {
  position: absolute;
  top: calc(51px + 15px);
  left: 15px;
  z-index: 3;
  pointer-events: none;
}

.hero-blason {
  display: block;
  width: 78px;
  height: auto;
  opacity: 0.75; /* règle ici l’opacité */
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.55));
}

/* Mobile */
@media screen and (max-width: 767px) {
  .hero-blason-wrap {
    top: calc(45px + 10px);
    left: 12px;
  }

  .hero-blason {
    width: 62px;
    opacity: 0.75; /* règle ici aussi si besoin */
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    min-height: 92vh;
    padding-top: 115px;
  }

  .hero-section .container,
  .hero-section .container .row {
    min-height: 92vh;
  }

  .hero-section h1 {
    font-size: 55px;
    line-height: 0.95;
    margin-bottom: 18px;
  }

  .hero-section .fs-5 {
 font-size: 30px !important;
 letter-spacing: 0.16em;
 opacity: 0.5;
  }

  .date-wrap,
  .location-wrap,
  .social-share {
    width: 100%;
  }

  .date-wrap h2,
  .location-wrap h2 {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .social-share {
    margin-top: 14px;
  }

  .social-icon {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* QUICK INFO — MOBILE FORCÉ */
@media screen and (max-width: 767px) {
  section.quick-info,
  .quick-info {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    background-color: #EE5007 !important;
    color: #fff !important;
    text-align: center !important;
  }

  section.quick-info > *,
  .quick-info > * {
    display: block !important;
    width: 100% !important;
    padding: 18px 16px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  }

  section.quick-info > *:last-child,
  .quick-info > *:last-child {
    border-bottom: 0 !important;
  }

  section.quick-info strong,
  section.quick-info span,
  .quick-info strong,
  .quick-info span {
    display: block !important;
    width: 100% !important;
  }

  section.quick-info strong,
  .quick-info strong {
    color: #fff !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  section.quick-info span,
  .quick-info span {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.95rem !important;
    line-height: 1.35 !important;
  }
}

/*---------------------------------------
  FIX MENU MOBILE — ALIGNEMENT HAMBURGER
-----------------------------------------*/
@media screen and (max-width: 991px) {
  .navbar {
    top: 0 !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar .container {
    display: flex;
    align-items: flex-start !important;
  }

  .navbar-brand {
    line-height: 1.1;
  }

  .navbar-toggler {
    width: 34px;
    height: 34px;
    padding: 0 !important;
    margin-top: 2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
  }

  .navbar-toggler .navbar-toggler-icon {
    margin: 0;
  }

  .navbar-collapse {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .navbar-toggler {
    position: absolute;
    top: max(10px, env(safe-area-inset-top));
    right: 15px;
    z-index: 9999;
  }
}
span.hero-gorbio.fs-5.text-white.fw-bold {
        font-size: 30px !important;
        letter-spacing: 0.16em;
opacity: 0.5;}

h1#titre-principal {
    opacity: 0.6;
}