/* =============================================
   L'Atelier Traiteur - Styles principaux
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Commissioner:wght@300;400;500;600&display=swap');

/* ----------- Variables ----------- */
:root {
  --primary: #170024;
  --primary-light: #2a0040;
  --secondary: #f76a0c;
  --secondary-hover: #e55a00;
  --white: #ffffff;
  --off-white: #faf8f5;
  --light-gray: #f0ede8;
  --mid-gray: #8a8080;
  --dark-gray: #3a3030;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Commissioner', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(23, 0, 36, 0.12);
  --shadow-hover: 0 8px 40px rgba(23, 0, 36, 0.2);
  --radius: 4px;
  --radius-btn: 50px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.section-padding {
  padding: 96px 0;
}

.section-padding-sm {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.section-subtitle.white {
  color: rgba(255,255,255,0.8);
}

/* Divider */
.divider {
  width: 56px;
  height: 3px;
  background: var(--secondary);
  margin: 20px 0 32px;
  border-radius: 2px;
}

.divider.center {
  margin: 20px auto 32px;
}

/* ----------- Boutons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 106, 12, 0.35);
}

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

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

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

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg, .btn i {
  transition: transform var(--transition);
}

.btn:hover svg, .btn:hover i {
  transform: translateX(4px);
}

/* ----------- Header / Navigation ----------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: all var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--secondary); }

.nav-cta {
  padding: 10px 24px;
  font-size: 12px;
}

/* Burger menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------- Hero ----------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  opacity: 0.35;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23, 0, 36, 0.92) 0%,
    rgba(23, 0, 36, 0.75) 50%,
    rgba(23, 0, 36, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.hero-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--secondary);
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 560px;
}

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

.hero-scroll {
  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.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

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

/* ----------- Section Événement ----------- */
.evenement {
  background: var(--white);
}

.evenement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.evenement-images {
  position: relative;
  height: 580px;
}

.evenement-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 75%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.evenement-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 60%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
}

.evenement-tag {
  position: absolute;
  top: 52%;
  left: 58%;
  transform: translate(-50%, -50%);
  background: var(--secondary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-heading);
  z-index: 2;
  box-shadow: var(--shadow);
  min-width: 120px;
}

.evenement-tag-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.evenement-tag-text {
  font-size: 11px;
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
}

.evenement-content .badge {
  display: block;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--dark-gray);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(247, 106, 12, 0.12);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon svg {
  width: 13px;
  height: 13px;
}

/* ----------- Section Cuisine de Chef ----------- */
.cuisine {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cuisine::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,106,12,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cuisine-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cuisine-content { order: 1; }
.cuisine-images { order: 2; }

.cuisine-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.cuisine-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.cuisine-img:hover { transform: scale(1.03); }

.cuisine-img-large {
  grid-row: span 2;
}

.cuisine-content .section-title { color: var(--white); }
.cuisine-content .divider { background: var(--secondary); }
.cuisine-content .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
}

.chef-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chef-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(247,106,12,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chef-avatar svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.chef-info-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}

.chef-info-role {
  font-size: 13px;
  color: var(--secondary);
  letter-spacing: 1px;
}

/* ----------- Section À Emporter ----------- */
.emporter {
  background: var(--off-white);
}

.emporter-header {
  text-align: center;
  margin-bottom: 64px;
}

.emporter-header .section-subtitle {
  margin: 0 auto;
}

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

.emporter-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.emporter-card-img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.emporter-card:hover .emporter-card-img {
  transform: scale(1.04);
}

.emporter-card-img-wrapper {
  overflow: hidden;
}

.emporter-card-body {
  padding: 28px;
}

.emporter-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.emporter-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.emporter-card-text {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.emporter-cta {
  margin-top: 56px;
  text-align: center;
}

/* ----------- Section L'Apogée ----------- */
.apogee {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.apogee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.apogee-content { color: var(--white); }
.apogee-content .section-title { color: var(--white); }
.apogee-content .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}

.apogee-logo {
  max-width: 220px;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.apogee-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.apogee-info-item {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.apogee-info-icon {
  color: var(--secondary);
  margin-bottom: 10px;
}

.apogee-info-icon svg {
  width: 22px;
  height: 22px;
}

.apogee-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.apogee-info-value {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
}

.apogee-image-wrapper {
  position: relative;
}

.apogee-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

.apogee-image-badge {
  position: absolute;
  bottom: -24px;
  left: 32px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.apogee-image-badge-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.apogee-image-badge-sub {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

/* ----------- Newsletter ----------- */
.newsletter {
  background: linear-gradient(135deg, var(--secondary) 0%, #d95500 100%);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

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

.newsletter .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter .section-subtitle {
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}

.newsletter-events {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.newsletter-event-tag {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-btn);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: var(--white);
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: var(--mid-gray);
}

.newsletter-form button {
  padding: 16px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--primary-light);
}

.newsletter-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}

/* ----------- Contact ----------- */
.contact {
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro .section-title { color: var(--primary); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(247,106,12,0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.5;
}

.contact-item-value a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--off-white);
  padding: 48px;
  border-radius: 16px;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--secondary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-gray);
}

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

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

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

/* ----------- Footer ----------- */
.footer {
  background: var(--primary);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: rgba(255,255,255,0.7);
}

/* ----------- Animations ----------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ----------- Responsive ----------- */
@media (max-width: 1024px) {
  .evenement-inner,
  .cuisine-inner,
  .apogee-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .evenement-images {
    height: 420px;
  }

  .cuisine-content { order: 1; }
  .cuisine-images { order: 2; }

  .cuisine-images {
    grid-template-rows: 180px 180px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 28px;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
    z-index: 999;
  }

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

  .nav-burger { display: flex; }

  .hero-title { font-size: clamp(28px, 7vw, 44px); }

  .hero-bg {
    grid-template-columns: 1fr;
    opacity: 0.2;
  }

  .hero-bg-img:nth-child(2),
  .hero-bg-img:nth-child(3) { display: none; }

  .emporter-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .apogee-info-grid {
    grid-template-columns: 1fr;
  }

  .apogee-image-main {
    height: 320px;
  }

  .apogee-image-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    display: inline-block;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
    overflow: visible;
    box-shadow: none;
  }

  .newsletter-form input[type="email"] {
    border-radius: 50px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  .newsletter-form button {
    border-radius: 50px;
    padding: 16px 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

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

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

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

  .evenement-images {
    height: 380px;
  }

  .evenement-img-main {
    width: 70%;
    height: 70%;
  }

  .evenement-img-secondary {
    width: 60%;
    height: 55%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 48px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ----------- Toast notification ----------- */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: var(--shadow-hover);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}
