/* ------------------------------
   PALETTE DE COULEURS
--------------------------------*/
:root {
  --gris-clair: #EFEAEF;
  --prune-gris: #464155;
  --aubergine: #30243A;
  --saumon-clair: #FACCBC;
  --saumon: #DB8D77;

  --font-sans: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--gris-clair);
  color: var(--prune-gris);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ------------------------------
   LAYOUT GLOBAL
--------------------------------*/
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(232, 227, 235, 0.38);/*rgba(239, 234, 239, 0.70);*/
  border-bottom: 1px solid rgba(70, 65, 85, 0.08);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.just {
  text-align: justify;
  hyphens: auto; /* Pour gérer automatiquemenet la séparation des mots */
}

/* ------------------------------
   NAVBAR
--------------------------------*/
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
}

.logo-main {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--aubergine);
}

.logo img {
  height: 130px;
  width: auto;
  display: block;
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--saumon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--saumon-clair), var(--saumon));
  transition: width 0.25s ease;
  border-radius: 999px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--saumon-clair), var(--saumon));
  color: var(--aubergine);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(48, 36, 58, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 46px;
  height: 46px;
  padding: 0;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.24s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-admin-link:hover,
.nav-admin-link:focus-visible {
  width: 190px;
}

.nav-links .nav-admin-link::after {
  display: none;
}

.nav-admin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  margin-left: calc((46px - 35px) / 2);
}

.nav-admin-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
  margin-top: 2px;
}

.nav-admin-label {
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.24s ease, margin-left 0.24s ease, opacity 0.18s ease;
}

.nav-admin-link:hover .nav-admin-label,
.nav-admin-link:focus-visible .nav-admin-label {
  max-width: 180px;
  margin-left: 0.5rem;
  opacity: 1;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(48, 36, 58, 0.26);
}

/* Burger menu (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 24px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--aubergine);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ------------------------------
   HERO
--------------------------------*/
.hero {
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(218, 141, 119, 0.14);
  color: var(--aubergine);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  gap: 0.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saumon);
  box-shadow: 0 0 0 6px rgba(219, 141, 119, 0.25);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3rem);
  color: var(--aubergine);
  margin-bottom: 0.8rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--saumon-clair), var(--saumon));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 36rem;
  color: rgba(70, 65, 85, 0.85);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saumon-clair), var(--saumon));
  color: var(--aubergine);
  box-shadow: 0 10px 24px rgba(48, 36, 58, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(48, 36, 58, 0.33);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(70, 65, 85, 0.35);
  color: var(--prune-gris);
}

.btn-ghost:hover {
  background: rgba(239, 234, 239, 0.9);
}

.hero-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(70, 65, 85, 0.6);
}

.hero-meta span {
  font-weight: 600;
  color: var(--aubergine);
}

.hero-card {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: 1.6rem;
  overflow: hidden;
  background: radial-gradient(circle at top left, var(--saumon), var(--gris-clair));
  color: --aubergine; /*#fdf9f9;*/
  box-shadow: 0 18px 38px rgba(48, 36, 58, 0.5);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0, rgba(250, 204, 188, 0.9), transparent 50%),
              radial-gradient(circle at 90% 100%, rgba(219, 141, 119, 0.95), transparent 50%);
  opacity: 0.9;
  mix-blend-mode: screen;
  z-index: -1;
}

.hero-card-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  opacity: 0.85;
  margin-bottom: 0.4rem;
  font-weight: 700; 
}

.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.hero-card-text {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 1.2rem;
}

.hero-card-text p {
  margin: 0 0 0.55rem;
}

.hero-card-text ul {
  margin: 0 0 0.65rem;
  padding-left: 1rem;
}

.hero-card-text li + li {
  margin-top: 0.55rem;
}

.hero-card-text li span {
  display: block;
  margin-top: 0.12rem;
  opacity: 0.9;
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.hero-card-tag {
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 234, 239, 0.6);
  background: rgba(48, 36, 58, 0.75); /*rgba(48, 36, 58, 0.25);*/ 
  backdrop-filter: blur(6px);
  color: #EFEAEF;
}

/* ------------------------------
   SECTIONS GÉNÉRIQUES
--------------------------------*/
section {
  padding: 3.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(70, 65, 85, 0.65);
  margin-bottom: 0.3rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--aubergine);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  max-width: 32rem;
  margin: 0 auto;
  color: rgba(70, 65, 85, 0.8);
}

/* ------------------------------
   SECTION "À PROPOS"
--------------------------------*/
.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: start;
}

.about-text p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pill {
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(70, 65, 85, 0.07);
  box-shadow: 0 6px 16px rgba(48, 36, 58, 0.2);
  font-size: 0.85rem;
}

.pill strong {
  display: block;
  color: var(--aubergine);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.about-aside {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 18px 38px rgba(48, 36, 58, 0.3);
  border: 1px solid rgba(70, 65, 85, 0.06);
}

.about-aside h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--aubergine);
}

.about-aside ul {
  list-style: none;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.about-aside li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.about-aside li > ul {
  flex-basis: 100%;      /* ← force le retour à la ligne */
  margin-left: 2rem;     /* ← retrait */
  margin-top: 0rem;
}

.bullet-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--saumon);
}

/* ------------------------------
   SECTION COURS
--------------------------------*/
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.course-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: 0 14px 26px rgba(48, 36, 58, 0.08);
  border: 1px solid rgba(70, 65, 85, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.course-chip {
  display: inline-flex;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  background: rgba(250, 204, 188, 0.25);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--aubergine);
}

.course-title {
  font-weight: 600;
  color: var(--aubergine);
  margin-top: 0.35rem;
}

.course-level {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(70, 65, 85, 0.65);
}

.course-body {
  font-size: 0.9rem;
  color: rgba(70, 65, 85, 0.85);
}

.course-meta {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: rgba(70, 65, 85, 0.75);
}

/* ------------------------------
   PLANNING & TARIFS
--------------------------------*/
.schedule-layout {
  display: grid;
  gap: 1.4rem;
}

.schedule-panel,
.pricing-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 18px 32px rgba(48, 36, 58, 0.1);
  border: 1px solid rgba(70, 65, 85, 0.06);
}

.schedule-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(250, 204, 188, 0.42), rgba(255, 255, 255, 0.92)),
    #fff;
}

.schedule-panel p {
  max-width: 700px;
  font-size: 0.92rem;
  color: rgba(70, 65, 85, 0.82);
}

.schedule-cta {
  flex: 0 0 auto;
  padding-inline: 1.7rem;
}

.schedule-panel h3,
.pricing-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--aubergine);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

thead {
  background: rgba(70, 65, 85, 0.04);
}

th,
td {
  padding: 0.5rem 0.35rem;
  text-align: left;
  border-bottom: 1px solid rgba(70, 65, 85, 0.06);
}

th {
  font-weight: 600;
  color: var(--aubergine);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

tbody tr:last-child td {
  border-bottom: none;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.price-line strong {
  color: var(--aubergine);
}

.pricing-sections {
  display: grid;
  gap: 1rem;
}

.pricing-section {
  display: grid;
  gap: 0.75rem;
}

.pricing-section + .pricing-section {
  padding-top: 1rem;
  border-top: 1px solid rgba(70, 65, 85, 0.08);
}

.pricing-section-heading {
  display: grid;
  gap: 0.2rem;
}

.pricing-section-heading h4 {
  color: var(--aubergine);
  font-size: 0.98rem;
}

.pricing-section-heading p {
  max-width: 680px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(70, 65, 85, 0.72);
}

.pricing-groups,
.pricing-fees {
  display: grid;
  gap: 0.9rem;
}

.pricing-fees {
  margin-top: 0.75rem;
}

.pricing-groups {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.pricing-group,
.pricing-fees,
.pricing-option-list {
  padding: 0.85rem;
  border: 1px solid rgba(70, 65, 85, 0.08);
  border-radius: 0.75rem;
  background: rgba(250, 247, 251, 0.62);
}

.pricing-option-list {
  background:
    linear-gradient(135deg, rgba(250, 204, 188, 0.34), rgba(255, 255, 255, 0.86)),
    #fff;
  border-color: rgba(143, 82, 92, 0.16);
}

.pricing-group:first-child {
  padding-top: 0.85rem;
}

.pricing-group h5,
.pricing-fees h4 {
  margin-bottom: 0.35rem;
  color: var(--aubergine);
  font-size: 0.9rem;
}

.pricing-note {
  font-size: 0.8rem;
  margin-top: 0.6rem;
  color: rgba(70, 65, 85, 0.7);
}

/* ------------------------------
   SECTION ÉQUIPE
--------------------------------*/
.team-panel {
  display: grid;
  gap: 1.4rem;
}

.team-panel + .team-panel {
  margin-top: 2rem;
}

.team-reveal-card {
  --team-reveal-text-x: 50%;
  --team-reveal-text-y: 50%;
  --team-reveal-text-align: center;
  --team-reveal-image-blur: 1.4px;
  --team-reveal-image-opacity: 0.62;
  --team-reveal-image-position: center 20%;
  --team-reveal-overlay: rgba(48, 36, 58, 0.22);
  --team-reveal-inner-shadow: inset -32px -32px 54px rgba(22, 13, 29, 0.48);
  position: relative;
  display: block;
  min-height: 320px;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 1.2rem;
  background: var(--aubergine);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(48, 36, 58, 0.16);
}

.team-reveal-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--team-reveal-image-opacity);
  filter: blur(var(--team-reveal-image-blur));
  transform: scale(1);
  object-position: var(--team-reveal-image-position);
}

.team-reveal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--team-reveal-overlay);
  box-shadow: var(--team-reveal-inner-shadow);
}

.team-reveal-card span {
  position: absolute;
  left: var(--team-reveal-text-x);
  top: var(--team-reveal-text-y);
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  color: transparent;
  background: linear-gradient(120deg, var(--saumon-clair), var(--saumon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: var(--team-reveal-text-align);
  text-shadow: 0 8px 24px rgba(48, 36, 58, 0.55);
  width: min(90%, 760px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.team-grid--teachers[hidden] {
  display: none;
}

#admin-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

#admin-list .teacher-card {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  min-height: 118px;
}

#admin-list .teacher-avatar {
  min-height: 118px;
}

#admin-list .teacher-info {
  padding: 0.75rem 0.55rem;
}

#admin-list .teacher-info h3 {
  font-size: 0.78rem;
}

#admin-list .teacher-discipline {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.teacher-card {
  background: linear-gradient(135deg, var(--saumon-clair), var(--saumon));
  border-radius: 1.2rem;
  padding: 0;
  box-shadow: 0 16px 30px rgba(48, 36, 58, 0.09);
  border: 1px solid rgba(70, 65, 85, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  min-height: 150px;
  overflow: hidden;
  transform-origin: top;
  animation: teacher-card-slide-down 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.teacher-card:nth-child(2) {
  animation-delay: 0.06s;
}

.teacher-card:nth-child(3) {
  animation-delay: 0.12s;
}

.teacher-card:nth-child(4) {
  animation-delay: 0.18s;
}

@keyframes teacher-card-slide-down {
  from {
    opacity: 0;
    transform: translateY(-34px) scaleY(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.teacher-avatar {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.teacher-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.1rem;
}

.teacher-info h3 {
  font-size: 0.98rem;
  margin-bottom: 0.18rem;
  color: var(--aubergine);
  text-align: center;
  line-height: 1.18;
}

.teacher-info h3 span {
  display: block;
}

.teacher-discipline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(70, 65, 85, 0.72);
}

.teacher-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(70, 65, 85, 0.7);
  margin-bottom: 0.15rem;
}

.teacher-style {
  font-size: 0.8rem;
  color: rgba(70, 65, 85, 0.8);
}

/* ------------------------------
   SECTION TÉMOIGNAGES
--------------------------------*/
.testimonials {
  background: linear-gradient(135deg, #fff, var(--saumon-clair));
}

.testimonials-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items:center;
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--aubergine);
  margin-bottom: 1rem;
}

.quote-author {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(48, 36, 58, 0.8);
}

.stars {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.testimonials-list {
  display: grid;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.testimonial-item {
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(239, 234, 239, 0.7);
  border: 1px solid rgba(70, 65, 85, 0.07);
}

.testimonial-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(48, 36, 58, 0.8);
  margin-bottom: 0.15rem;
}

/* ------------------------------
   SECTION CONTACT
--------------------------------*/
.contact-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(250, 204, 188, 0.42), rgba(255, 255, 255, 0.88) 44%),
    #fff;
  border: 1px solid rgba(219, 141, 119, 0.26);
  box-shadow: 0 22px 44px rgba(48, 36, 58, 0.13);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(70, 65, 85, 0.07);
}

.contact-row + .contact-row {
  margin-top: 0.9rem;
}

.contact-row-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-row-heading h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--aubergine);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saumon-clair), var(--saumon));
  padding: 0.45rem;
  box-shadow: 0 10px 20px rgba(219, 141, 119, 0.28);
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-mail {
  justify-self: end;
  color: var(--aubergine);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: right;
}

.contact-mail:hover {
  color: var(--saumon);
}

.contact-socials {
  font-size: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.social-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 72px;
  padding: 0.8rem;
  border-radius: 0.9rem;
  background: rgba(250, 247, 251, 0.72);
  border: 1px solid rgba(70, 65, 85, 0.08);
  color: var(--aubergine);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 141, 119, 0.55);
  box-shadow: 0 12px 24px rgba(48, 36, 58, 0.12);
}

.social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.social-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  padding: 1.6rem 0 1.2rem;
  background: var(--aubergine);
  color: #fdf7ff;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 800px) {
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(239, 234, 239, 0.98);
    flex-direction: column;
    padding: 0.8rem 1.1rem 1.2rem;
    border-bottom: 1px solid rgba(70, 65, 85, 0.1);
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-admin-link {
    display: inline-flex;
    width: 46px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-grid,
  .about-grid,
  .info-grid,
  .schedule-layout,
  .testimonials-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  #admin-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .contact-mail {
    justify-self: start;
    text-align: left;
  }

  .schedule-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-cta {
    width: 100%;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 500px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-socials {
    grid-template-columns: minmax(0, 1fr);
  }

  #admin-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


