/* Modal centered in form */
/* Modal centered in contact section */
.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal {
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
}
.modal-content {
  background: #1a1230;
  color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  min-width: 240px;
  max-width: 90vw;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
/* Gallery: Limit images for small screens */
@media (max-width: 768px) {
  .masonry > *:nth-child(n + 7) {
    display: none;
  }
}

/* Expositions dropdown style */
.expo-dropdowns details {
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.expo-dropdowns summary {
  font-family: "Vollkorn", "Georgia", serif;
  font-size: 18px;
  padding: 12px 18px;
  cursor: pointer;
  background: linear-gradient(90deg, #7b3f82 0%, #f08ac2 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.expo-dropdowns ul {
  padding: 12px 18px;
  background: rgba(12, 8, 24, 0.95);
}
.expo-dropdowns details[open] summary {
  background: #f08ac2;
  color: #1a1230;
}
@media (max-width: 768px) {
  .expo-dropdowns summary {
    font-size: 16px;
    padding: 10px 14px;
  }
  .expo-dropdowns ul {
    padding: 10px 14px;
  }
}
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Generated from main.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Quicksand", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 20%, #1c1333, #0c0818 55%);
  color: #e9e6ef;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .carousel-image {
    height: 300px;
  }
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(12, 8, 24, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b3f82 0%, #f08ac2 50%, #ffb3d1 100%);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0f0a1f;
}
.brand-name {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: 18px;
}
.brand-role {
  font-size: 12px;
  color: #cbbfd6;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
}

@media (max-width: 800px) {
  .nav {
    display: none !important;
  }
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  font-weight: 600;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffe1f4;
}
.nav-toggle {
  display: none;
}

@media (max-width: 800px) {
  .nav {
    display: none !important;
  }
}

.carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 20px;
  text-align: center;
  width: 100%;
}
.carousel-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #120c24;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 320px;
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 8, 24, 0.7);
  color: #e9e6ef;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: grid;
  place-items: center;
}
.carousel-btn:hover {
  border-color: #ffe1f4;
  color: #ffe1f4;
}
.carousel-btn.prev {
  left: 16px;
}
.carousel-btn.next {
  right: 16px;
}
.carousel-title {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: 28px;
  margin-top: 18px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.dot.active {
  background: #ffe1f4;
  transform: scale(1.2);
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 40px;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero#accueil {
  justify-items: center;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(255, 179, 209, 0.25),
    transparent 40%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}
.hero#accueil .hero-content {
  justify-items: center;
}
.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cbbfd6;
  font-size: 12px;
}
.hero h1 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
}
.lede {
  max-width: 640px;
  color: #cbbfd6;
}
.hero#accueil .lede {
  margin: 0 auto;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero#accueil .hero-actions {
  justify-content: center;
}
.btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn.primary {
  background: linear-gradient(135deg, #7b3f82 0%, #f08ac2 50%, #ffb3d1 100%);
  color: #0f0a1f;
  box-shadow: 0 10px 25px rgba(240, 138, 194, 0.35);
}
.btn.primary:hover {
  transform: translateY(-2px);
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e9e6ef;
}
.btn.ghost:hover {
  border-color: #ffe1f4;
  color: #ffe1f4;
}
.stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #cbbfd6;
  font-size: 14px;
}
.hero#accueil .stats {
  justify-content: center;
}
.stat span {
  display: block;
  font-size: 22px;
  color: #ffe1f4;
  font-weight: 700;
}
.hero-visual {
  position: relative;
  min-height: 480px;
  height: 100%;
}
.hero#accueil .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
}
.circle.one {
  width: 220px;
  height: 220px;
  background: #f08ac2;
  top: 10%;
  left: 10%;
}
.circle.two {
  width: 280px;
  height: 280px;
  background: #7b3f82;
  bottom: 0;
  right: 5%;
}
.frame {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #120c24;
  max-width: 100%;
}
.hero#accueil .frame {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: min(360px, 80%);
  z-index: 1;
}
.frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.frame-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(12, 8, 24, 0.7);
  color: #ffe1f4;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
}
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 40px 24px;
}
.panel {
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #1a1230;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.panel.soft {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0)
  );
}
.panel.soft,
.panel.soft h2,
.panel.soft p,
.panel.soft .badge {
  color: #ffffff;
}
.panel.outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.panel h2 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  margin-bottom: 12px;
}
.panel p {
  color: #cbbfd6;
}
.badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}
.tech {
  margin-bottom: 16px;
}
.tech h3 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  color: #ffe1f4;
  margin-bottom: 6px;
}
.tech p {
  color: #cbbfd6;
}
.ribbon {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(240, 138, 194, 0.08);
  color: #ffe1f4;
  border: 1px dashed rgba(240, 138, 194, 0.4);
}
.about {
  padding: 10px 24px;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.floating-card.card-secondary {
  background: rgba(12, 8, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.floating-card.card-secondary[data-scroll] {
  cursor: pointer;
}
.floating-card.card-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.floating-card.card-secondary h4 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: 18px;
  color: #ffe1f4;
  margin-bottom: 4px;
}
.floating-card.card-secondary p {
  color: #cbbfd6;
  font-size: 14px;
}
.section-head {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.section-head h2 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
}
.gallery {
  padding: 30px 24px 60px;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  background: rgba(255, 255, 255, 0.07);
  color: #e9e6ef;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill.active,
.pill:hover {
  border-color: #ffe1f4;
  color: #ffe1f4;
}
.masonry {
  columns: 3 280px;
  column-gap: 14px;
}
.masonry figure {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.masonry figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.caption-name {
  font-weight: 600;
}
.caption-dimension {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
  white-space: nowrap;
}
.caption-dimension:empty {
  display: none;
}
.gallery-wrapper {
  position: relative;
  margin-bottom: 0;
}
.gallery-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, #0d0721 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-gradient.hidden {
  opacity: 0;
}
.load-more-container {
  text-align: center;
  padding: 30px 0 20px;
}
.load-more-container .btn {
  min-width: 200px;
}
.load-more-container .btn.hidden {
  display: none;
}
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}
.image-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  text-align: center;
}
.modal-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}
.modal-content p {
  margin-top: 12px;
  color: #cbbfd6;
  font-size: 14px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 8, 24, 0.8);
  color: #e9e6ef;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover {
  border-color: #ffe1f4;
  color: #ffe1f4;
}
.expos {
  padding: 30px 24px 60px;
}
.expo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 18px;
}

@media (max-width: 768px) {
  .expo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.expo-block {
  background: #1a1230;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.expo-block h3 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  margin-bottom: 10px;
}
.expo-block ul {
  color: #cbbfd6;
  display: grid;
  gap: 6px;
  padding-left: 32px;
}
.expo-block strong {
  color: #ffe1f4;
}
.expo-block.pastel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0)
  );
}
.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.columns h4 {
  margin-top: 10px;
  color: #ffe1f4;
  font-family: "Vollkorn", "Georgia", serif;
}
.columns ul {
  margin-bottom: 6px;
}
.articles {
  padding: 60px 24px 70px;
}
.articles .container {
  max-width: 1200px;
  margin: 0 auto;
}
.articles h2 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: 32px;
  margin-bottom: 20px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-card {
  background: #1a1230;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}
.article-card h3 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: 20px;
}
.article-card p {
  color: #cbbfd6;
  font-size: 14px;
}
.article-link {
  color: #ffe1f4;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-link:hover {
  color: #ffb3d1;
}
.contact {
  padding: 40px 24px 80px;
}
.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  background: #1a1230;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-infos {
  color: #cbbfd6;
  display: grid;
  gap: 6px;
  margin: 12px 0;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  color: #ffe1f4;
  font-weight: 600;
}
.form {
  display: grid;
  gap: 12px;
}
.form input,
.form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e9e6ef;
  padding: 12px 14px;
  border-radius: 12px;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #ffffff;
  /* Responsive Expositions Section */
  @media (max-width: 768px) {
    .expo-grid {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .expo-block {
      width: 100%;
      margin: 0;
    }
  }
  opacity: 1;
}
.form input:focus,
.form textarea:focus {
  outline: 1px solid #ffe1f4;
}
.footer {
  padding: 30px 24px 20px;
  background: #0a0716;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  color: #cbbfd6;
}
.footer h4 {
  color: #e9e6ef;
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  margin-bottom: 6px;
}
.footer-links {
  display: grid;
  gap: 6px;
}
.legal-page {
  background: radial-gradient(circle at 10% 20%, #1c1333, #0c0818 55%);
}
.legal-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  gap: 16px;
}
.legal-card {
  background: #1a1230;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.legal-title {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: 32px;
  margin-bottom: 8px;
}
.legal-card h2 {
  font-family: "Vollkorn", "Georgia", serif;
  font-style: italic;
  font-size: 20px;
  margin-bottom: 8px;
}
.legal-card p {
  color: #cbbfd6;
}
.legal-list {
  display: grid;
  gap: 6px;
  color: #cbbfd6;
  padding-left: 16px;
}
.copy {
  text-align: center;
  color: #cbbfd6;
  margin-top: 10px;
  font-size: 13px;
}
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: rgba(10, 7, 22, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  z-index: 30;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #cbbfd6;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
@media (max-width: 800px) {
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 16px;
    background: rgba(12, 8, 24, 0.95);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 400px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    width: 90%;
    padding: 10px;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .container {
    width: 100%;
    padding: 5px;
  }
  header,
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
    gap: 8px;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  .container {
    width: 100%;
    padding: 2px;
  }
  header,
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
    gap: 5px;
  }
  .responsive-hide {
    display: none;
  }
}
@media (max-width: 640px) {
  .masonry {
    columns: 1 100%;
  }
  .hero {
    padding: 60px 16px;
  }
  .section-head {
    padding: 10px 16px;
  }
  .gallery,
  .expos,
  .contact {
    padding-inline: 16px;
  }
}
