/* Reset et ajustements globaux pour la page projets */
.projects-header {
  background: white;
}

.projects-main {
  background: white;
  overflow-x: hidden;
}

/* Hero Section */
.projects-hero {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-title {
  width: 400px;
  max-width: 90%;
  margin-bottom: 50px;
}

.projects-intro {
  color: #888;
  font-weight: 300;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.projects-intro b {
  color: #555;
  font-weight: 500;
}

/* Section Headers */
.section-header {
  position: relative;
  margin-bottom: 80px;
  padding: 0 60px;
  display: flex;
  gap: 5%;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  width: 200px;
  z-index: 2;
  position: relative;
}

.yellow-line {
  flex: 1;
  width: 65%;
  max-width: calc(100% - 180px);
}

/* Logos Section */
.section-logos {
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.logo-project {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 0 60px;
  margin-bottom: 120px;
}

.logo-project.reverse {
  flex-direction: row-reverse;
}

.logo-image-container {
  position: relative;
  flex: 0 0 450px;
}

.logo-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.logo-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.logo-overlay-reverse {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.logo-sticker {
  width: 120px;
}

.logo-description {
  flex: 1;
  padding-top: 40px;
}

.logo-large {
  width: 300px;
  margin-bottom: 40px;
}

.project-name {
  font-size: 4rem;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 0.9;
}

.logo-symbol {
  width: 150px;
  margin-bottom: 40px;
}

.logo-description p {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 500px;
}

#frais {
  width: 100%;
}

/* Packaging Section */
.section-packaging {
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.packaging-row {
  display: grid;
  grid-template-columns: 280px 280px 1fr;
  gap: 50px;
  padding: 0 60px;
  margin-bottom: 80px;
  align-items: start;
}

.packaging-item img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.packaging-mockup img:hover {
  transform: rotate(25deg);
}

.packaging-text {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 0 60px;
  margin-bottom: 40px;
}

.packaging-featured {
  background-image: url("assets/ui/background.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 60px 0;
  border-radius: 20px;
  justify-content: space-evenly;
}

.packaging-text-left {
  flex: 1;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 450px;
}

.packaging-mockup img {
  width: 500px;
  max-width: 100%;
  border-radius: 15px;
}

.packaging-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  padding: 50px;
  border-radius: 20px;
  min-height: 200px;
}

.packaging-logo-display img {
  width: 120px;
}

.grid-choco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 150px);
  gap: 10px;
  margin-bottom: 40px;
  padding: 0 60px;
}

.grid-choco .main-image {
  grid-row: 1 / 4;
}

.grid-choco .packaging-item {
  height: 100%;
  transition: all 0.3s cubic-bezier(.08, .82, .17, 1);
}

.grid-choco .packaging-item img {
  height: 100%;
  object-position: 50% 0;
  transition: all 0.3s ease;
}

.grid-choco:hover .packaging-item:not(:first-child) {
  opacity: 0.4;
  transform: scale(0.98);
}

.grid-choco .packaging-item:hover:not(:first-child) {
  opacity: 1 !important;
  transform: scale(1) translateY(-34%) !important;
  z-index: 15;
  height: 150%;
}

.grid-choco .packaging-item:hover:not(:first-child) img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

#lemon-text {
  background: white;
  padding: 30px;
  border-radius: 20px;
  margin-top: 10%;
  position: relative;
}

#lemon-logo {
  position: absolute;
  height: 220px;
  top: -72%;
}

#lemon-img {
  rotate: -25deg;
  width: 30%;
  align-self: flex-end;
}

#lemon-img img {
  transition: transform 0.4s cubic-bezier(.68, -0.55, .27, 1.55);
}

#jus .packaging-logo-display {
  grid-column: 1/3;
}

#jus .packaging-text {
  grid-column: 1/3;
}

/* Affiches Section */
.section-affiches {
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.affiches-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  padding: 0 60px;
  margin-bottom: 100px;
}

.affiche-title {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
  grid-column: 1/3;
}

.affiche-column img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.affiche-column img:hover {
  transform: translateY(-5px);
}

.affiche-description {
  color: #666;
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.85rem;
}

/* Low-Tech */
.affiche-lowtech {
  display: flex;
  gap: 80px;
  padding: 0 60px;
  margin-bottom: 100px;
  align-items: flex-start;
}

.lowtech-left {
  position: relative;
}

.lowtech-left .affiche {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.lowtech-left img:hover {
  transform: translateY(-5px);
}

.lowtech-right {
  flex: 1;
  padding-top: 20px;
  position: relative;
}

.lowtech-right p {
  color: #666;
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.9rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.lowtech-gif {
  max-height: 30rem;
}

.mockup-tel {
  max-height: 20rem;
  position: absolute;
  left: 0;
  bottom: -10%;
}


/* Festival */
.affiche-festival {
  padding: 0 60px;
  margin-bottom: 100px;
}

.festival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  align-items: start;
}

.festival-main-poster {
  position: relative;
  grid-row: 1 / 3;
}

.festival-poster-large {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festival-poster-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.festival-badge {
  position: absolute;
  top: -20px;
  right: -30px;
  background: linear-gradient(135deg, var(--yellow), #f4dc4e);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(232, 207, 35, 0.4);
  transform: rotate(-15deg);
  transition: transform 0.3s ease;
}

.festival-badge:hover {
  transform: rotate(0deg) scale(1.1);
}

.badge-text {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--purple);
  text-align: center;
  letter-spacing: 1px;
}

.festival-description-box {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 15px;
  align-self: center;
}

.festival-description-box p {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9rem;
  margin: 0;
}

.festival-secondary {
  position: relative;
}

.festival-poster-small {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.festival-poster-small:hover {
  transform: translateY(-5px) rotate(2deg);
}

/* Dark Posters Row - Château & Papillon side by side */
.dark-posters-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 60px;
  margin-bottom: 100px;
  align-items: start;
}

/* Château */
.affiche-chateau {
  padding: 0;
  margin-bottom: 0;
}

.chateau-simple {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.chateau-poster-container {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.chateau-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), #5d3b94);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(74, 46, 117, 0.3);
  letter-spacing: 0.5px;
  z-index: 2;
}

.chateau-poster {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.chateau-poster:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.chateau-description {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Papillon */
.affiche-papillon {
  text-align: center;
  padding: 0;
  margin-bottom: 0;
}

.papillon-frame {
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.film-strip {
  width: 100%;
  height: 15px;
  background: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 10px,
    #333 10px,
    #333 12px,
    #000 12px,
    #000 22px
  );
  border-radius: 3px;
}

.film-strip.top {
  margin-bottom: 15px;
}

.film-strip.bottom {
  margin-top: 15px;
}

.papillon-content {
  position: relative;
}

.film-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.papillon-poster {
  width: 450px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: block;
}

.papillon-poster:hover {
  transform: scale(1.02);
}

.papillon-description {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Photos Section */
.section-photos {
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.photo-hero {
  padding: 0 60px;
  margin-bottom: 80px;
}

.photo-hero-image {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.photo-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.photo-hero-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.photo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 12px 25px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--purple);
  letter-spacing: 1px;
}

.street-photography-section {
  padding: 0 60px;
}

.street-photography-frame {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.frame-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.frame-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: lowercase;
}

.frame-count {
  font-size: 0.85rem;
  color: #999;
  font-weight: 300;
  background: #f9f9f9;
  padding: 6px 15px;
  border-radius: 15px;
}

.street-grid {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.street-grid:hover {
  transform: scale(1.02);
}

.street-description {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9rem;
  margin: 0;
}


/* Media Queries */
@media (max-width: 1200px) {

  .section-header,
  .logo-project,
  .packaging-row,
  .affiches-row,
  .affiche-lowtech,
  .affiche-festival,
  .affiche-chateau,
  .affiche-papillon,
  .photo-hero,
  .street-photography-section {
    padding: 0 40px;
  }

  /* Logos */
  .logo-project {
    flex-direction: column;
    gap: 40px;
  }

  .logo-project.reverse {
    flex-direction: column;
  }

  .logo-image-container {
    flex: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Packaging */
  .grid-choco {
    padding: 0 40px;
    gap: 15px;
  }

  .packaging-text {
    padding: 0 40px;
  }

  .packaging-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  #jus {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  #jus .packaging-logo-display {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  #jus .packaging-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  #jus .packaging-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .packaging-featured {
    flex-direction: column;
    gap: 40px;
    padding: 60px 40px;
  }

  #lemon-text {
    margin-top: 0;
    order: 2;
  }

  #lemon-img {
    order: 1;
    rotate: -15deg;
    width: 50%;
    align-self: center;
  }

  #lemon-logo {
    position: static;
    height: auto;
    width: 180px;
    margin-bottom: 25px;
    display: block;
  }

  /* Affiches */
  .affiche-lowtech {
    flex-direction: column;
    gap: 40px;
  }

  .affiches-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Festival */
  .festival-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .festival-main-poster {
    grid-row: auto;
  }

  .festival-badge {
    width: 90px;
    height: 90px;
    font-size: 0.7rem;
  }

  /* Dark Posters Row */
  .dark-posters-row {
    gap: 40px;
    padding: 0 40px;
  }

  /* Château */
  .chateau-poster {
    max-width: 450px;
  }

  /* Photos */
  .photo-hero-image {
    max-width: 100%;
  }

  .street-photography-frame {
    max-width: 100%;
  }

}

@media (max-width: 768px) {

  .section-header,
  .logo-project,
  .packaging-row,
  .affiches-row,
  .affiche-lowtech,
  .affiche-festival,
  .photo-hero,
  .street-photography-section {
    padding: 0 20px;
  }

  /* Dark Posters Row - Stack on mobile */
  .dark-posters-row {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }

  /* Hero */
  .projects-hero {
    padding: 40px 20px 60px;
  }

  .section-title {
    width: 120px;
  }

  .projects-title {
    width: 250px;
  }

  .yellow-line {
    width: calc(100% - 140px);
  }

  /* Logos */
  .logo-large {
    width: 200px;
  }

  .project-name {
    font-size: 2.5rem;
  }

  .logo-project {
    gap: 30px;
  }

  .logo-overlay,
  .logo-overlay-reverse {
    position: static;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
  }

  .logo-sticker {
    display: block;
  }

  /* Packaging */
  .grid-choco {
    padding: 0 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
    margin-bottom: 30px;
  }

  .packaging-text {
    padding: 0 20px;
    font-size: 0.85rem;
  }

  .packaging-row {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }


  .packaging-featured {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    margin: 40px 0;
    background-attachment: scroll;
    background-size: cover;
  }

  .packaging-mockup img {
    width: 100%;
  }

  /* LemonStart mobile layout */
  #lemon-img {
    rotate: 0deg;
    width: 100%;
    max-width: 280px;
    align-self: center;
    order: 2;
    margin: 0;
  }

  #lemon-logo {
    position: static;
    height: auto;
    width: 160px;
    margin: 0 auto 15px;
    display: block;
  }

  #lemon-text {
    margin-top: 0;
    padding: 25px;
    order: 3;
    max-width: 100%;
  }

  #lemon-text p {
    font-size: 0.9rem;
  }

  /* Jus et gelée - déjà en colonne sur tablette */
  #jus .packaging-logo-display {
    max-width: 400px;
  }

  #jus .packaging-item {
    max-width: 320px;
  }

  /* Affiches */
  .affiches-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lowtech-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lowtech-left .affiche {
    max-width: 350px;
  }

  .mockup-tel {
    position: static;
    margin-top: 20px;
    max-height: 300px;
  }

  .lowtech-gif {
    max-height: 250px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }

  /* Festival */
  .festival-grid {
    gap: 30px;
  }

  .festival-poster-large {
    max-width: 100%;
  }

  .festival-badge {
    width: 80px;
    height: 80px;
    right: 15px;
    top: 15px;
    font-size: 0.65rem;
  }

  .festival-description-box {
    padding: 25px;
  }

  .festival-poster-small {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .festival-secondary {
    display: flex;
    justify-content: center;
  }

  /* Château */
  .chateau-poster {
    max-width: 100%;
  }

  .chateau-tag {
    font-size: 0.75rem;
    padding: 8px 20px;
  }

  /* Papillon */
  .papillon-frame {
    padding: 15px;
  }

  .papillon-poster {
    width: 100%;
    max-width: 350px;
  }

  .film-badge {
    font-size: 0.7rem;
    padding: 6px 15px;
  }

  /* Photos */
  .photo-hero {
    margin-bottom: 60px;
  }

  .photo-badge {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .street-photography-frame {
    padding: 25px 20px;
  }

  .frame-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .frame-title {
    font-size: 1rem;
  }

  .frame-count {
    font-size: 0.75rem;
  }

  .street-description {
    font-size: 0.85rem;
  }

}

/* Améliorations générales */
.section-logos,
.section-packaging,
.section-affiches,
.section-photos {
  scroll-margin-top: 100px;
}

/* Animations douces - appliquées uniquement aux éléments interactifs */
img,
.packaging-item,
.affiche-column img,
.festival-poster-large,
.festival-poster-small,
.chateau-poster,
.papillon-poster,
.street-grid {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Amélioration de la lisibilité */
p,
.affiche-description,
.chateau-description,
.papillon-description {
  text-align: left;
}

.projects-intro,
.papillon-description {
  text-align: center;
}

/* Espacement cohérent */
.section-header {
  margin-bottom: 80px;
}

.logo-project:last-child,
.packaging-row:last-child,
.affiche-lowtech:last-child,
.affiche-festival:last-child,
.affiche-chateau:last-child,
.affiche-papillon:last-child {
  margin-bottom: 0;
}

/* Tablet Landscape - 992px */
@media (max-width: 992px) {
  .projects-header nav {
    margin: 15px;
  }

  #nav-center {
    gap: 20px;
    font-size: 0.9rem;
  }

  .projects-hero {
    padding: 50px 30px 70px;
  }

  .section-title {
    width: 140px;
  }

  .projects-title {
    width: 280px;
  }

  .yellow-line {
    width: calc(100% - 160px);
  }

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

  .logo-description p,
  .packaging-text p,
  .affiche-description,
  .chateau-description,
  .papillon-description,
  .street-description {
    font-size: 0.9rem;
  }

  /* Packaging optimizations */
  .packaging-featured {
    padding: 50px 30px;
  }

  #lemon-logo {
    max-width: 250px;
  }

  /* Photos section */
  .photo-hero-image img {
    max-height: 450px;
  }

  .street-photography-frame {
    padding: 40px 30px;
  }
}

/* Mobile Portrait - 480px */
@media (max-width: 480px) {
  .projects-header nav {
    font-size: 0.75rem;
    margin: 10px;
  }

  #nav-center {
    gap: 8px;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  #nav-end {
    gap: 12px;
  }

  .projects-header hr {
    width: 90vw;
  }

  .projects-hero {
    padding: 30px 15px 50px;
  }

  .section-title {
    width: 100px;
  }

  .projects-title {
    width: 220px;
  }

  .yellow-line {
    width: calc(100% - 120px);
  }

  .projects-intro {
    font-size: 0.75rem;
    padding: 0 10px;
  }

  .section-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  /* Logos Section */
  .logo-project {
    gap: 25px;
    padding: 0 15px;
  }

  .logo-description p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .logo-sticker {
    width: 120px;
  }

  /* Packaging */
  .grid-choco {
    padding: 0 15px;
    gap: 10px;
  }

  .packaging-text {
    padding: 0 15px;
    font-size: 0.75rem;
    margin-bottom: 30px;
  }

  .packaging-featured {
    padding: 30px 15px;
    margin: 30px 0;
    gap: 25px;
  }

  #lemon-logo {
    max-width: 180px;
  }

  .packaging-row {
    padding: 0 15px;
    gap: 25px;
  }

  .packaging-logo-display img {
    max-width: 120px;
  }

  /* Affiches */
  .affiches-row {
    padding: 0 15px;
    gap: 25px;
  }

  .affiche-column img {
    border-radius: 12px;
  }

  .affiche-description {
    font-size: 0.75rem;
    margin-top: 15px;
    padding: 0 10px;
  }

  .affiche-lowtech {
    padding: 0 15px;
    gap: 25px;
    flex-direction: column;
  }

  .lowtech-left {
    gap: 20px;
  }

  .lowtech-right p {
    font-size: 0.75rem;
  }

  .lowtech-gif {
    max-width: 250px;
  }

  .affiche-festival {
    padding: 0 15px;
  }

  .festival-grid {
    gap: 20px;
  }

  .festival-description-box p {
    font-size: 0.75rem;
    padding: 0 10px;
  }

  .festival-badge,
  .film-badge,
  .chateau-tag {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .dark-posters-row {
    gap: 40px;
    padding: 0 15px;
  }

  .chateau-description,
  .papillon-description {
    font-size: 0.75rem;
    margin-top: 15px;
    padding: 0 10px;
  }

  .chateau-poster,
  .papillon-poster {
    border-radius: 12px;
  }

  /* Photos */
  .photo-hero {
    padding: 0 15px;
  }

  .photo-hero-image img {
    max-height: 350px;
    border-radius: 12px;
  }

  .photo-badge span {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .street-photography-section {
    padding: 0 15px;
  }

  .street-photography-frame {
    padding: 25px 15px;
  }

  .frame-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .frame-title {
    font-size: 1rem;
  }

  .frame-count {
    font-size: 0.7rem;
  }

  .street-description {
    font-size: 0.75rem;
    margin-top: 15px;
  }

  /* Footer */
  footer {
    padding: 30px 15px 15px;
  }

  .social-links {
    gap: 12px;
    margin-bottom: 20px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .copyright {
    font-size: 0.8rem;
  }
}
