/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2d3d;
  background: #f6f4ef;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* HEADER */
.top-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 25px 60px;
}

.header-center {
  text-align: center;
}

.header-center h1 {
  font-size: 34px;
  letter-spacing: 2px;
}

.red { color: #c0392b; }
.green { color: #2e8b57; }

.header-center p {
  font-style: italic;
  color: #555;
}

.btn-secondary {
  justify-self: end;
  background: #2c3e50;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* NAV */
.nav-container {
  position: relative;
  background: #eceae5;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  margin-bottom: 5px;
}

.menu-toggle span:nth-child(3) {
  margin-top: 5px;
}

/* Animation hamburger -> X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

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

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 35px;
  padding: 15px 20px;
  background: #eceae5;
}

.main-nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.main-nav a.active,
.main-nav a:hover {
  border-bottom: 2px solid #c0392b;
}

/* Body overlay when menu open */
body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

/* HERO */
.hero {
  background: linear-gradient(90deg, #3b6ea5 0%, #f6f4ef 16.5%, #c0392b 33%, #0a1628 50%, #0a1628 100%);
  background-size: 300% 100%;
  animation: heroGradient 3s ease forwards;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero h2 {
  font-size: clamp(36px, 10vw, 100px);
  color: black;
  word-break: break-word;
  animation: heroTitleIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroTitleIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(30px);
    letter-spacing: 15px;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    letter-spacing: 2px;
  }
}

.hero-red {
  color: #c0392b;
  animation: heroColorPulse 2s 2s ease-in-out forwards;
}

.hero-green {
  color: #50e07e;
  animation: heroColorPulse 2s 2.5s ease-in-out forwards;
}

@keyframes heroColorPulse {
  0%, 100% { opacity: 1; text-shadow: none; }
  50% { opacity: 0.85; text-shadow: 0 0 20px currentColor; }
}

.separator {
  display: block;
  width: 100px;
  max-width: 80%;
  height: 2px;
  background: white;
  font-weight: bold;
  margin: 20px auto;
  animation: separatorExpand 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes separatorExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
  }
}

.subtitle {
  font-style: italic;
  color: white;
  margin-bottom: 50px;
  font-size: clamp(16px, 4vw, 30px);
  font-weight: bold;
  animation: heroSlideUp 0.8s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro {
  color: white;
  font-size: clamp(16px, 4vw, 30px);
  font-weight: bold;
  padding: 0 10px;
  animation: heroSlideUp 0.8s 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 25px;
  padding: 60px 20px;
}

.card {
  height: 320px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.overlay h4 {
  font-size: 20px;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.overlay p {
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #f6f4ef;
}

.cta h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #2c3e50;
  color: white;
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
}

/* DISCOVERY BANNER */
.discovery-banner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.discovery-banner-content {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(135deg, #1a472a 0%, #2c6e49 60%, #8b2131 100%);
  color: white;
  padding: 30px 35px;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.discovery-banner-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.discovery-banner-text {
  flex: 1;
}

.discovery-banner-text h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.discovery-banner-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.discovery-banner-btn {
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(5px);
  white-space: nowrap;
}

.discovery-banner-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

/* MUSIC DISCOVERY PAGE */
.music-discovery-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 30px 10px;
  text-align: center;
}

.music-discovery-intro .portrait-back {
  display: inline-block;
  margin-bottom: 15px;
}

.music-discovery-intro p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.music-discovery-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 30px 10px;
}

.music-section-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #c0392b;
  display: inline-block;
}

.music-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.music-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.music-card-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
}

.music-card-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.music-card-info {
  padding: 18px 20px 22px;
}

.music-card-info h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 4px;
}

.music-card-artist {
  display: inline-block;
  background: #c0392b;
  color: white;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.music-card-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to right, #3b6ea5, #f6f4ef, #c0392b);
}

.footer p {
  margin: 10px 0;
}

.footer-links,
.socials {
  margin-top: 10px;
}

.footer a {
  margin: 0 10px;
  color: #2c3e50;
  text-decoration: none;
}

/* ============================================
   PAGES INTÉRIEURES
   ============================================ */

/* PAGE HERO */
.page-hero {
  background: linear-gradient(90deg, #3b6ea5 0%, #f6f4ef 16.5%, #c0392b 33%, #0a1628 50%, #0a1628 100%);
  background-size: 300% 100%;
  animation: heroGradient 3s ease forwards;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.page-hero h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 10px;
  animation: heroTitleIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero .subtitle {
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  animation: heroSlideUp 0.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* TIMELINE ANIMATIONS */
.timeline-section h3.reveal {
  transform: translateY(30px) scale(0.95);
}

.timeline-section h3.reveal.visible {
  transform: translateY(0) scale(1);
}

.timeline::before {
  animation: timelineGrow 2s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: top center;
}

@keyframes timelineGrow {
  0% {
    transform: translateX(-50%) scaleY(0);
  }
  100% {
    transform: translateX(-50%) scaleY(1);
  }
}

.timeline-item .year {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .year {
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.timeline-item p {
  transition: color 0.3s ease;
}

.timeline-item:hover p {
  color: #1f2d3d;
}

/* PAGE CONTENT */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content-block {
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px;
  border-radius: 12px;
}

.content-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.content-block.centered {
  text-align: center;
}

.content-block h3 {
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 15px;
  border-left: 4px solid #c0392b;
  padding-left: 15px;
}

.content-block.centered h3 {
  border-left: none;
  padding-left: 0;
}

.content-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* TIMELINE */
.timeline-section {
  background: #eceae5;
  padding: 60px 20px;
}

.timeline-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c3e50;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #c0392b;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item .year {
  background: #2c3e50;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-item p {
  flex: 1;
  padding: 0 30px;
  font-size: 16px;
  color: #444;
}

/* PORTRAIT À LA UNE */
.portrait-featured {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 40px;
  left: 20px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
  z-index: 10;
}

.featured-content {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.featured-img {
  min-height: 500px;
  background-size: cover;
  background-position: center top;
  background-color: #ddd;
}

.featured-info {
  padding: 50px 40px 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-new {
  display: inline-block;
  background: #2e8b57;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  width: fit-content;
}

.featured-info h3 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.featured-info .domain {
  display: inline-block;
  background: #c0392b;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.featured-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
}

.featured-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.featured-quote {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #eceae5);
  border-left: 4px solid #c0392b;
  border-radius: 0 10px 10px 0;
}

.featured-quote blockquote {
  font-style: italic;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.6;
  margin: 0;
}

/* PORTRAITS INTRO */
.portraits-intro {
  text-align: center;
  padding: 40px 20px 20px;
  background: #eceae5;
}

.portraits-intro h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.portraits-intro p {
  font-size: 16px;
  color: #666;
}

/* PORTRAITS */
.portraits-section {
  padding: 40px 20px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  background: #eceae5;
}

.portrait-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portrait-card:hover {
  transform: translateY(-5px);
}

.portrait-card-founder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: linear-gradient(135deg, #1a472a 0%, #2c6e49 50%, #8b2131 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.portrait-card-founder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.portrait-card-founder .portrait-img {
  height: 100%;
  min-height: 280px;
}

.portrait-card-founder .portrait-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portrait-card-founder .portrait-info h4 {
  color: white;
  font-size: 26px;
  margin-bottom: 8px;
}

.portrait-card-founder .portrait-info .domain {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
}

.portrait-card-founder .portrait-info p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.7;
}

.founder-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #1a472a;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.portrait-img {
  height: 200px;
  background-size: cover;
  background-position: center top;
  background-color: #ddd;
}

.portrait-info {
  padding: 20px;
}

.portrait-info h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.portrait-info .domain {
  display: inline-block;
  background: #c0392b;
  color: white;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 12px;
  margin-bottom: 10px;
}

.portrait-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* CULTURE GRID */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 25px;
  padding: 60px 20px;
  background: #eceae5;
}

.culture-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.culture-card:hover {
  transform: translateY(-5px);
}

.culture-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.culture-card h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.culture-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* EVENTS SECTION */
.events-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.events-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.event-date {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  min-width: 70px;
}

.event-date .day {
  display: block;
  font-size: 28px;
  font-weight: bold;
}

.event-date .month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.event-info h5 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.event-info p {
  font-size: 14px;
  color: #666;
}

/* RECIPES SECTION */
.recipes-section {
  padding: 60px 20px;
  background: #eceae5;
}

.recipes-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.recipe-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.recipe-card:hover {
  transform: translateY(-5px);
}

.recipe-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.recipe-content {
  padding: 20px;
}

.recipe-region {
  display: inline-block;
  background: #2e8b57;
  color: white;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 11px;
  margin-bottom: 10px;
}

.recipe-content h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.recipe-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 15px;
}

.recipe-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #888;
}

/* TRADITIONS */
.traditions-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.traditions-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.traditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 25px;
}

.tradition-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.tradition-item h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.tradition-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* PRODUCTS */
.products-section {
  padding: 60px 20px;
  background: #eceae5;
  text-align: center;
}

.products-section h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2c3e50;
}

.products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.product-tag {
  background: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  color: #2c3e50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-tag:hover {
  background: #2c3e50;
  color: white;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 60px 20px;
  background: #f6f4ef;
}

.testimonials-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #c0392b;
}

.testimonial-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  color: #2c3e50;
}

.author-location {
  font-size: 13px;
  color: #888;
}

/* STATS */
.stats-section {
  background: linear-gradient(to right, #3b6ea5, #2c3e50, #c0392b);
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 45%), 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* SHARE FORM */
.share-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eceae5 0%, #f6f4ef 50%, #eceae5 100%);
  position: relative;
}

.share-section h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.share-section > p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 17px;
}

.share-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-top: 4px solid #c0392b;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fafafa;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c0392b;
  background: white;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}

.form-group small {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

.share-form .btn-primary {
  width: 100%;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border-radius: 25px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

/* ASSOCIATIONS */
.associations-section {
  padding: 60px 20px;
}

.associations-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.associations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.association-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 4px solid #2e8b57;
}

.association-card h5 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.association-card p {
  font-size: 14px;
  color: #666;
}

/* NEWS SECTION */
.news-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.news-img {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.news-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-category {
  display: inline-block;
  background: #c0392b;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 10px;
}

.news-date {
  font-size: 13px;
  color: #888;
}

.news-content h3 {
  font-size: 24px;
  color: #2c3e50;
  margin: 15px 0;
  line-height: 1.3;
}

.news-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #c0392b;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.read-more:hover {
  text-decoration: underline;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 25px;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.news-card-content {
  padding: 20px;
}

.news-card-content h4 {
  font-size: 17px;
  color: #2c3e50;
  margin: 10px 0;
  line-height: 1.3;
}

.news-card-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 10px;
}

/* UPCOMING EVENTS */
.upcoming-section {
  padding: 60px 20px;
  background: #eceae5;
}

.upcoming-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.upcoming-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.upcoming-date {
  background: #2c3e50;
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  min-width: 65px;
}

.upcoming-date .day {
  display: block;
  font-size: 26px;
  font-weight: bold;
}

.upcoming-date .month {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}

.upcoming-info h5 {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.upcoming-info p {
  font-size: 13px;
  color: #888;
}

/* NEWSLETTER */
.newsletter-section {
  padding: 60px 20px;
  text-align: center;
}

.newsletter-section h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.newsletter-section > p {
  color: #666;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 15px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #c0392b;
}

.newsletter-form .btn-primary {
  border: none;
  cursor: pointer;
}

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

/* LARGE SCREENS (1200px+) */
@media (min-width: 1200px) {
  .portraits-section {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
  }

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .recipes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* TABLET LANDSCAPE (1024px) */
@media (max-width: 1024px) {
  .top-header {
    padding: 20px 30px;
  }

  .hero h2 {
    font-size: 70px;
  }

  .subtitle, .intro {
    font-size: 24px;
  }

  .cards {
    padding: 40px;
  }

  /* PORTRAIT À LA UNE */
  .portrait-featured {
    padding: 50px 20px;
  }

  .featured-badge {
    top: 30px;
    left: 20px;
  }

  .featured-content {
    grid-template-columns: minmax(280px, 350px) 1fr;
    gap: 30px;
  }

  .featured-img {
    min-height: 400px;
  }

  .featured-info {
    padding: 30px 25px 30px 10px;
  }

  .featured-info h3 {
    font-size: 28px;
  }

  .portraits-section {
    padding: 40px 20px;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  }

  .culture-grid {
    padding: 40px;
  }

  .news-content {
    padding: 30px;
  }

  .news-content h3 {
    font-size: 20px;
  }
}

/* TABLET MEDIUM (900px) */
@media (max-width: 900px) {
  .featured-content {
    grid-template-columns: 1fr;
  }

  .featured-img {
    min-height: 350px;
  }

  .featured-info {
    padding: 30px;
  }
}

/* TABLET PORTRAIT (768px) */
@media (max-width: 768px) {
  /* DISCOVERY BANNER */
  .discovery-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .discovery-banner-icon {
    font-size: 36px;
  }

  .discovery-banner-text h3 {
    font-size: 19px;
  }

  /* MUSIC DISCOVERY */
  .music-cards-grid {
    grid-template-columns: 1fr;
  }

  .music-section-title {
    font-size: 20px;
  }

  /* HEADER */
  .top-header {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }

  .header-center h1 {

    font-size: 32px;
  }

  .header-center p {
    font-size: 16px;
  }

  .btn-secondary {
    justify-self: center;
    display: inline-block;
  }

  /* NAV MOBILE */
  .nav-container {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 80px 0 30px;
    background: #2c3e50;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

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

  .main-nav a {
    display: block;
    padding: 18px 30px;
    color: white;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #c0392b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle.active {
    position: fixed;
    right: 15px;
    top: 20px;
    transform: none;
  }

  .menu-toggle.active span {
    background: white;
  }

  /* HERO */
  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 48px;
  }

  .subtitle, .intro {
    font-size: 18px;
  }

  .intro br {
    display: none;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 50px 20px;
  }

  .page-hero h2 {
    font-size: 32px;
  }

  .page-hero .subtitle {
    font-size: 16px;
  }

  /* CARDS */
  .cards {
    padding: 30px 20px;
    gap: 20px;
  }

  .card {
    height: 280px;
  }

  .overlay h4 {
    font-size: 18px;
  }

  /* CTA */
  .cta {
    padding: 50px 20px;
  }

  .cta h3 {
    font-size: 22px;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 14px;
  }

  /* FOOTER */
  .footer {
    padding: 40px 20px;
  }

  .footer-links a,
  .socials a {
    display: inline-block;
    margin: 5px 8px;
    font-size: 14px;
  }

  /* PAGE CONTENT */
  .page-content {
    padding: 40px 20px;
  }

  .content-block h3 {
    font-size: 22px;
  }

  .content-block p {
    font-size: 15px;
  }

  /* TIMELINE */
  .timeline-section {
    padding: 40px 20px;
  }

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

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 70px;
    align-items: flex-start;
  }

  .timeline-item .year {
    position: absolute;
    left: 0;
    padding: 8px 12px;
    font-size: 14px;
    min-width: 60px;
  }

  .timeline-item p {
    padding: 0;
    margin-top: 10px;
  }

  /* PORTRAIT À LA UNE */
  .portrait-featured {
    padding: 40px 20px;
  }

  .featured-badge {
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    font-size: 12px;
  }

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

  .featured-img {
    min-height: 300px;
  }

  .featured-info {
    padding: 30px;
  }

  .featured-info h3 {
    font-size: 28px;
  }

  .featured-intro {
    font-size: 16px;
  }

  .featured-info p {
    font-size: 14px;
  }

  .featured-quote blockquote {
    font-size: 14px;
  }

  .portraits-intro {
    padding: 30px 20px 15px;
  }

  .portraits-intro h3 {
    font-size: 24px;
  }

  /* PORTRAITS */
  .portraits-section {
    padding: 30px 15px;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
  }

  .portrait-img {
    height: 180px;
  }

  .portrait-info {
    padding: 15px;
  }

  .portrait-info h4 {
    font-size: 18px;
  }

  /* CULTURE */
  .culture-grid {
    padding: 30px 20px;
    gap: 20px;
  }

  .culture-card {
    padding: 25px;
  }

  /* EVENTS */
  .events-section {
    padding: 40px 20px;
  }

  .event-item {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    min-width: 100px;
  }

  /* RECIPES */
  .recipes-section {
    padding: 40px 20px;
  }

  .recipes-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
  }

  /* TRADITIONS */
  .traditions-section {
    padding: 40px 20px;
  }

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

  /* TESTIMONIALS */
  .testimonials-section {
    padding: 40px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  /* STATS */
  .stats-section {
    padding: 40px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* SHARE FORM */
  .share-section {
    padding: 40px 20px;
  }

  .share-form {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  /* ASSOCIATIONS */
  .associations-section {
    padding: 40px 20px;
  }

  .associations-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  }

  /* NEWS */
  .news-section {
    padding: 40px 20px;
  }

  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-img {
    min-height: 200px;
  }

  .news-content {
    padding: 25px;
  }

  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
  }

  /* UPCOMING */
  .upcoming-section {
    padding: 40px 20px;
  }

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

  /* NEWSLETTER */
  .newsletter-section {
    padding: 40px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    text-align: center;
  }
}

/* MOBILE (480px) */
@media (max-width: 480px) {
  /* HEADER */
  .header-center h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .header-center p {
    font-size: 15px;
  }

  .btn-secondary {
    padding: 8px 15px;
    font-size: 12px;
  }

  /* NAV */
  .main-nav {
    gap: 8px 15px;
    padding: 10px;
  }

  .main-nav a {
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding: 40px 15px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .intro {
    font-size: 16px;
  }

  .separator {
    width: 60px;
    margin: 15px auto;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 40px 15px;
  }

  .page-hero h2 {
    font-size: 26px;
  }

  .page-hero .subtitle {
    font-size: 14px;
  }

  /* CARDS */
  .cards {
    padding: 20px 15px;
    grid-template-columns: 1fr;
  }

  .card {
    height: 250px;
  }

  /* CTA */
  .cta {
    padding: 40px 15px;
  }

  .cta h3 {
    font-size: 20px;
  }

  .cta p {
    font-size: 14px;
  }

  /* PAGE CONTENT */
  .page-content {
    padding: 30px 15px;
  }

  .content-block h3 {
    font-size: 20px;
    padding-left: 12px;
  }

  .content-block p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* TIMELINE */
  .timeline-section h3 {
    font-size: 24px;
  }

  .timeline-item p {
    font-size: 14px;
  }

  /* PORTRAIT À LA UNE */
  .portrait-featured {
    padding: 30px 15px;
  }

  .featured-badge {
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 11px;
  }

  .featured-content {
    border-radius: 15px;
  }

  .featured-img {
    min-height: 250px;
  }

  .featured-info {
    padding: 25px 20px;
  }

  .featured-new {
    font-size: 10px;
    padding: 3px 10px;
  }

  .featured-info h3 {
    font-size: 24px;
  }

  .featured-info .domain {
    padding: 4px 12px;
    font-size: 11px;
  }

  .featured-intro {
    font-size: 15px;
  }

  .featured-info p {
    font-size: 13px;
    line-height: 1.7;
  }

  .featured-quote {
    padding: 15px;
    margin-top: 15px;
  }

  .featured-quote blockquote {
    font-size: 13px;
  }

  .portraits-intro {
    padding: 25px 15px 10px;
  }

  .portraits-intro h3 {
    font-size: 22px;
  }

  .portraits-intro p {
    font-size: 14px;
  }

  /* PORTRAITS */
  .portraits-section {
    padding: 20px 15px;
    grid-template-columns: 1fr;
  }

  .portrait-card {
    display: flex;
    flex-direction: row;
  }

  .portrait-card-founder {
    display: flex;
    flex-direction: column;
    grid-column: 1;
  }

  .portrait-card-founder .portrait-img {
    width: 100%;
    min-height: 220px;
    height: 220px;
  }

  .portrait-card-founder .portrait-info h4 {
    font-size: 22px;
    color: white;
  }

  .portrait-card-founder .portrait-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
  }

  .portrait-img {
    width: 120px;
    min-width: 120px;
    height: auto;
    min-height: 150px;
  }

  .portrait-info {
    flex: 1;
  }

  .portrait-info h4 {
    font-size: 16px;
  }

  .portrait-info p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* CULTURE */
  .culture-grid {
    padding: 20px 15px;
    grid-template-columns: 1fr;
  }

  .culture-card {
    padding: 20px;
  }

  .culture-icon {
    font-size: 32px;
  }

  .culture-card h4 {
    font-size: 18px;
  }

  /* EVENTS */
  .events-section h3 {
    font-size: 24px;
  }

  .event-date .day {
    font-size: 24px;
  }

  .event-info h5 {
    font-size: 16px;
  }

  /* RECIPES */
  .recipes-section h3 {
    font-size: 24px;
  }

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

  .recipe-img {
    height: 150px;
  }

  /* TRADITIONS */
  .traditions-section h3 {
    font-size: 24px;
  }

  .tradition-item {
    padding: 20px;
  }

  .tradition-item h4 {
    font-size: 16px;
  }

  /* PRODUCTS */
  .products-section h3 {
    font-size: 24px;
  }

  .product-tag {
    padding: 8px 15px;
    font-size: 13px;
  }

  /* TESTIMONIALS */
  .testimonials-section h3 {
    font-size: 24px;
  }

  .testimonial-quote p {
    font-size: 14px;
  }

  /* STATS */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* SHARE FORM */
  .share-section h3 {
    font-size: 24px;
  }

  .share-form {
    padding: 20px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* ASSOCIATIONS */
  .associations-section h3 {
    font-size: 24px;
  }

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

  .association-card {
    padding: 20px;
  }

  /* NEWS */
  .news-section h3 {
    font-size: 24px;
  }

  .news-img {
    min-height: 180px;
  }

  .news-content {
    padding: 20px;
  }

  .news-content h3 {
    font-size: 18px;
  }

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

  .news-card-img {
    height: 150px;
  }

  .news-card-content h4 {
    font-size: 15px;
  }

  /* UPCOMING */
  .upcoming-section h3 {
    font-size: 24px;
  }

  .upcoming-item {
    padding: 15px;
  }

  .upcoming-date {
    padding: 12px;
    min-width: 55px;
  }

  .upcoming-date .day {
    font-size: 22px;
  }

  .upcoming-info h5 {
    font-size: 14px;
  }

  /* NEWSLETTER */
  .newsletter-section h3 {
    font-size: 24px;
  }

  .newsletter-form input {
    padding: 12px 15px;
    font-size: 14px;
  }

  /* FOOTER */
  .footer {
    padding: 30px 15px;
  }

  .flags {
    font-size: 24px;
  }

  .footer p {
    font-size: 14px;
  }

  .footer-links,
  .socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer a {
    margin: 5px;
    font-size: 13px;
  }
}

/* SMALL MOBILE (360px) */
@media (max-width: 360px) {
  .header-center h1 {
    font-size: 24px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .page-hero h2 {
    font-size: 22px;
  }

  .portrait-card {
    flex-direction: column;
  }

  .portrait-card-founder {
    grid-template-columns: 1fr;
  }

  .portrait-card-founder .portrait-info h4 {
    font-size: 20px;
  }

  .portrait-img {
    width: 100%;
    height: 180px;
  }

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

/* TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) {
  .card:hover,
  .portrait-card:hover,
  .culture-card:hover,
  .recipe-card:hover,
  .news-card:hover {
    transform: none;
  }

  .btn-primary:active,
  .btn-secondary:active {
    transform: scale(0.98);
    opacity: 0.9;
  }
}

/* ============================================
   RECIPE DETAIL PAGE
   ============================================ */

.recipe-detail-hero {
  background: #1a0a00;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recipe-detail-hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 100%, rgba(192, 57, 43, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 100%, rgba(46, 139, 87, 0.2) 0%, transparent 50%);
  animation: warmthRise 2.5s 0.2s ease forwards;
  opacity: 0;
}

.recipe-detail-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 160, 60, 0.12) 0%, transparent 60%);
  animation: glowPulse 2s 1s ease forwards;
  opacity: 0;
}

@keyframes warmthRise {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.recipe-detail-hero h2 {
  font-size: 48px;
  color: #f5c27a;
  margin-bottom: 10px;
  position: relative;
  animation: recipeNameIn 1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  text-shadow: 0 2px 15px rgba(245, 194, 122, 0.3);
}

@keyframes recipeNameIn {
  0% { opacity: 0; transform: scale(0.9); letter-spacing: 8px; filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); letter-spacing: 1px; filter: blur(0); }
}

.recipe-detail-hero .subtitle {
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  animation: recipeSubIn 0.8s 1s ease both;
}

@keyframes recipeSubIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.recipe-detail-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2e8b57, #3cb371);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  animation: badgeSlideIn 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.4);
}

@keyframes badgeSlideIn {
  0% { opacity: 0; transform: translateX(-40px) rotate(-5deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}

.recipe-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.recipe-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e8b57;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 30px;
  transition: gap 0.3s ease;
}

.recipe-back:hover {
  gap: 12px;
}

.recipe-detail-img {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-bottom: 40px;
}

.recipe-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.recipe-detail-meta .meta-item {
  background: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 15px;
  color: #2c3e50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.recipe-detail-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #f8f9fa, #eceae5);
  border-left: 4px solid #2e8b57;
  border-radius: 0 12px 12px 0;
}

.recipe-columns {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.recipe-ingredients {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 30px;
  align-self: start;
}

.recipe-ingredients h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2e8b57;
}

.recipe-ingredients ul {
  list-style: none;
  padding: 0;
}

.recipe-ingredients li {
  padding: 8px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recipe-ingredients li::before {
  content: '●';
  color: #2e8b57;
  font-size: 8px;
}

.recipe-ingredients li:last-child {
  border-bottom: none;
}

.recipe-steps h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 25px;
  border-left: 4px solid #c0392b;
  padding-left: 15px;
}

.recipe-step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 17px;
  color: #2c3e50;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.recipe-tip {
  margin-top: 40px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #fff9e6, #fff3cd);
  border-left: 4px solid #f0ad4e;
  border-radius: 0 12px 12px 0;
}

.recipe-tip h4 {
  font-size: 17px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.recipe-tip p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.more-recipes {
  background: #eceae5;
  padding: 60px 20px;
  text-align: center;
}

.more-recipes h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 30px;
}

.more-recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.more-recipe-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.more-recipe-card:hover {
  transform: translateY(-5px);
}

.more-recipe-card .mini-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.more-recipe-card .mini-info {
  padding: 12px;
  text-align: center;
}

.more-recipe-card .mini-info h5 {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 4px;
}

.more-recipe-card .mini-info span {
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
  .recipe-detail-hero {
    padding: 50px 20px 40px;
  }

  .recipe-detail-hero h2 {
    font-size: 32px;
  }

  .recipe-detail-img {
    height: 250px;
  }

  .recipe-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recipe-ingredients {
    position: static;
  }

  .recipe-detail-intro {
    font-size: 16px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .recipe-detail-hero h2 {
    font-size: 26px;
  }

  .recipe-detail {
    padding: 30px 15px;
  }

  .recipe-detail-img {
    height: 200px;
  }

  .recipe-ingredients {
    padding: 20px;
  }

  .step-content p {
    font-size: 14px;
  }

  .more-recipes {
    padding: 40px 15px;
  }

  .more-recipes-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PORTRAIT DETAIL PAGE
   ============================================ */

.portrait-detail-hero {
  background: #0a1628;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portrait-detail-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.25) 0%, rgba(59, 110, 165, 0.15) 50%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: spotlightOpen 2s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes spotlightOpen {
  0% { width: 0; height: 0; opacity: 0; }
  100% { width: 200%; height: 400%; opacity: 1; }
}

.portrait-detail-hero h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 10px;
  position: relative;
  animation: portraitNameIn 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.portrait-detail-hero h2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #c0392b, #e74c3c, #c0392b);
  margin: 8px auto 0;
  animation: underlineGrow 0.6s 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

@keyframes portraitNameIn {
  0% { opacity: 0; transform: translateY(30px); letter-spacing: 12px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 2px; }
}

@keyframes underlineGrow {
  0% { width: 0; }
  100% { width: 120px; }
}

.portrait-detail-hero .subtitle {
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  animation: portraitSubIn 0.8s 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes portraitSubIn {
  0% { opacity: 0; filter: blur(8px); transform: translateY(15px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.portrait-detail-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badgeDrop 0.6s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes badgeDrop {
  0% { opacity: 0; transform: translateY(-30px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.portrait-detail-badge {
  margin-bottom: 20px;
}

.portrait-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: start;
}

.portrait-detail-sidebar {
  position: sticky;
  top: 30px;
}

.portrait-detail-img {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center top;
  background-color: #ddd;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.portrait-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.meta-item {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #2c3e50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.portrait-detail-content .content-block {
  margin-bottom: 35px;
}

.portrait-detail-content .content-block h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
  border-left: 4px solid #c0392b;
  padding-left: 15px;
}

.portrait-detail-content .content-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

.portrait-detail-quote {
  margin-top: 30px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #f8f9fa, #eceae5);
  border-left: 4px solid #c0392b;
  border-radius: 0 12px 12px 0;
}

.portrait-detail-quote blockquote {
  font-style: italic;
  font-size: 18px;
  color: #2c3e50;
  line-height: 1.6;
  margin: 0 0 10px;
}

.portrait-detail-quote cite {
  font-size: 14px;
  color: #888;
  font-style: normal;
}

.portrait-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c0392b;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 20px;
  transition: gap 0.3s ease;
}

.portrait-back:hover {
  gap: 12px;
}

.more-portraits {
  background: #eceae5;
  padding: 60px 20px;
  text-align: center;
}

.more-portraits h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 30px;
}

.more-portraits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 250px));
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.more-portrait-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.more-portrait-card:hover {
  transform: translateY(-5px);
}

.more-portrait-card .mini-img {
  height: 140px;
  background-size: cover;
  background-position: center top;
  background-color: #ddd;
}

.more-portrait-card .mini-info {
  padding: 12px;
  text-align: center;
}

.more-portrait-card .mini-info h5 {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 4px;
}

.more-portrait-card .mini-info span {
  font-size: 12px;
  color: #888;
}

/* PORTRAIT DETAIL RESPONSIVE */
@media (max-width: 900px) {
  .portrait-detail {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .portrait-detail-img {
    max-width: 400px;
    margin: 0 auto;
    height: 350px;
  }

  .portrait-detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .portrait-detail-hero {
    padding: 50px 20px 40px;
  }

  .portrait-detail-hero h2 {
    font-size: 32px;
  }

  .portrait-detail-hero .subtitle {
    font-size: 16px;
  }

  .portrait-detail-img {
    height: 300px;
  }

  .portrait-detail-content .content-block h3 {
    font-size: 20px;
  }

  .portrait-detail-content .content-block p {
    font-size: 15px;
  }

  .portrait-detail-quote blockquote {
    font-size: 16px;
  }

  .more-portraits-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .more-portrait-card .mini-img {
    height: 110px;
  }
}

@media (max-width: 480px) {
  .portrait-detail-hero h2 {
    font-size: 26px;
  }

  .portrait-detail {
    padding: 30px 15px;
  }

  .portrait-detail-img {
    height: 260px;
    max-width: 100%;
  }

  .portrait-detail-content .content-block h3 {
    font-size: 18px;
  }

  .portrait-detail-content .content-block p {
    font-size: 14px;
  }

  .more-portraits {
    padding: 40px 15px;
  }

  .more-portraits h3 {
    font-size: 22px;
  }

  .more-portraits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* PRINT STYLES */
@media print {
  .main-nav,
  .btn-secondary,
  .btn-primary,
  .cta,
  .share-form,
  .newsletter-form {
    display: none;
  }

  .hero,
  .page-hero,
  .footer {
    background: none !important;
    color: black !important;
  }

  body {
    background: white;
  }
}
