/* ============================================================
   STYLE — Portfolio Brou Akissi Emilienne
   Thème : Élégance féminine, tons dorés/rose poudré/ivoire
   ============================================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #A8853E;
  --rose: #D4A5A5;
  --rose-light: #F2E0E0;
  --cream: #FFF8F0;
  --ivory: #FDF6EC;
  --dark: #2C1810;
  --dark-soft: #4A3728;
  --text: #3D2B1F;
  --text-light: #7A6B5D;
  --white: #FFFFFF;
  --shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
  --shadow-hover: 0 20px 60px rgba(44, 24, 16, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Great Vibes', cursive;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.text-accent {
  color: var(--gold);
}

.section-divider {
  margin-top: 20px;
}

.divider-diamond {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(44, 24, 16, 0.08);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-logo-text {
  letter-spacing: 2px;
}

.logo-accent {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.85) 0%,
    rgba(44, 24, 16, 0.6) 50%,
    rgba(201, 169, 110, 0.3) 100%
  );
  z-index: 1;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}

.hero-greeting {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.title-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-light);
  margin-bottom: 20px;
  min-height: 2em;
}

.typing-text::after {
  content: '|';
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btns .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-btns .btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* Hero image */
.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-img-frame {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(201, 169, 110, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.badge-icon {
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-img-border {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold-light);
  border-radius: calc(var(--radius) + 12px);
  z-index: -1;
}

.about-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--ivory);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  position: relative;
}

.quote-mark {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}

.about-quote p {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-infos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.info-item .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.about-cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   ACTIVITÉS
   ============================================================ */
.activites {
  background: var(--white);
}

.activite-block {
  margin-bottom: 80px;
}

.activite-block:last-child {
  margin-bottom: 0;
}

.activite-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.activite-block--reverse .activite-grid {
  direction: rtl;
}

.activite-block--reverse .activite-grid > * {
  direction: ltr;
}

.activite-image {
  position: relative;
}

.activite-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.activite-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activite-img-wrapper:hover img {
  transform: scale(1.05);
}

.activite-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.activite-img-badge--clean {
  background: linear-gradient(135deg, #7EC8E3, #4A90D9);
}

.activite-img-badge--pro {
  background: linear-gradient(135deg, var(--rose), #C48484);
}

.activite-content {
  padding: 20px 0;
}

.activite-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.activite-icon-wrapper--clean {
  background: linear-gradient(135deg, #B3E0F2, #4A90D9);
}

.activite-icon-wrapper--pro {
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
}

.icon-xl {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.activite-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.activite-subtitle {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.activite-content > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.activite-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.activite-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.activite-feature .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   GALERIE — Sous-sections
   ============================================================ */
.galerie-sous-section {
  margin-bottom: 50px;
}

.galerie-sous-section:last-child {
  margin-bottom: 0;
}

.galerie-sous-titre {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.galerie-sous-icon {
  font-size: 1.6rem;
}

/* ============================================================
   EXPERIENCE (Timeline)
   ============================================================ */
.experience {
  background: var(--ivory);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold), var(--gold-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 4px solid var(--cream);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}

.timeline-date {
  position: absolute;
  left: calc(50% + 40px);
  top: -8px;
}

.date-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.timeline-card {
  width: calc(50% - 50px);
  margin-left: 0;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-date {
  left: auto;
  right: calc(50% + 40px);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}

.card-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.company {
  display: block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.location {
  display: block;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 2px;
}

.card-duties {
  list-style: none;
  margin-top: 12px;
}

.card-duties li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.card-duties li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills {
  background: var(--white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.skill-category {
  background: var(--ivory);
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.skill-category:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.skill-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-lg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.skill-category h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.bar-track {
  width: 100%;
  height: 8px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  border-radius: 4px;
  transition: width 1.5s ease;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.tag:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.tag-alt {
  background: var(--rose-light);
  color: var(--rose);
}

.tag-alt:hover {
  background: var(--rose);
  color: var(--white);
}

/* ============================================================
   FORMATIONS
   ============================================================ */
.formations {
  background: var(--ivory);
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.formation-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.formation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
}

.formation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.formation-year {
  display: inline-block;
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.formation-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formation-icon .icon-lg {
  width: 20px;
  height: 20px;
}

.formation-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.formation-school {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-item a {
  color: var(--dark);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--gold-dark);
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-contact a {
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.sfb-brand {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Responsive Activités */
@media (max-width: 1024px) {
  .activite-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .activite-block--reverse .activite-grid {
    direction: ltr;
  }

  .activite-img-wrapper img {
    height: 320px;
  }

  .activite-features {
    grid-template-columns: 1fr;
  }

  .activite-content {
    text-align: center;
  }

  .activite-icon-wrapper {
    margin: 0 auto 20px;
  }

  .activite-content .btn {
    margin: 0 auto;
  }
}

/* Tablette */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img-frame {
    width: 260px;
    height: 260px;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-img-wrapper {
    margin: 0 auto;
  }

  .about-infos {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 400px;
    margin: 24px auto;
  }

  .about-cta {
    justify-content: center;
  }

  .formations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-img-frame {
    width: 200px;
    height: 200px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-card {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }

  .timeline-date {
    position: relative;
    left: 50px !important;
    right: auto !important;
    top: auto;
    margin-bottom: 12px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .formations-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 24px;
  }
}

/* Petit mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-img-frame {
    width: 180px;
    height: 180px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
