:root {
  --black: #111111;
  --beige: #f1e7da;
  --beige-soft: #f7efe6;
  --accent: #8c6a4a;
  --shadow: rgba(17, 17, 17, 0.12);
}

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

body {
  font-family: "Sora", sans-serif;
  color: var(--black);
  background: radial-gradient(circle at top left, #f8efe4 0%, #f4e6d7 40%, #ece0d0 100%);
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 32px 6vw 80px;
  gap: 32px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.02));
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.brand-logo {
  width: 72px;
  height: 72px;
  /* object-fit: contain; */
  border-radius: 18px;
  background: var(--beige-soft);
  /* padding: 10px; */
}

.brand-overline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
}

.brand-title {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  color: black
}

.brand-title .emoji {
  color: inherit;
  font-family: "Segoe UI Symbol", "Noto Color Emoji", "Apple Color Emoji", sans-serif;
}

.tabs {
  display: inline-flex;
  gap: 12px;
  background: var(--beige);
  padding: 8px;
  border-radius: 999px;
  width: fit-content;
}

.tab-button {
  border: none;
  background: transparent;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-button.is-active {
  background: var(--black);
  color: var(--beige);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: contents;
}

.hero-card {
  background: var(--beige-soft);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: #000;
  /* height: 600px; */
}

.hero-highlight {
  font-size: 18px;
  line-height: 1.5;
  margin-block: 9px;
}

.hero-bottom {
  margin-top: 9px;
}

.hero-card p {
  padding: 10px 0;
  text-align: justify;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  margin-top: 14px;
  margin-bottom: 14px;
}

.hero-list li {
  padding-left: 20px;
  padding-right: 8px;
  position: relative;
  line-height: 1.5;
  white-space: nowrap;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}


/* .hero-card::after {
  content: "";
  display: block;
  position: absolute; 
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(to right, rgba(255,255,255,0.98) 82%, rgba(255,255,255,0) 100%),
    linear-gradient(to right, rgba(251,247,241,0.98) 80%, rgba(251,247,241,0) 95%),
    url('pict_entet.jpeg') no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  /* z-index: 1; */


/* Assure que le contenu passe AU-DESSUS */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
}

.hero-content p {
  display: flex;
  text-align: justify;
}

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

.hero-tags span {
  background: var(--black);
  color: var(--beige);
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  gap: 28px;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.hero-action-btn {
  display: inline-flex;
  color: var(--black);
  transition: all 0.2s ease;
}

.hero-action-btn:hover {
  opacity: 0.5;
  transform: translateY(-2px);
}

.intro-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.presentation-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.presentation-row .panel-card {
  flex: 2;
}

.presentation-photo {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 200px;
  align-self: stretch;
}

.presentation-photo img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.panel-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  container-type: inline-size;
  backdrop-filter: blur(6px);
}

.tarif-card p {
  font-family: "Fraunces", serif;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

.panel-card p {
  line-height: 1.6;
  font-size: clamp(0.80rem, 0.9vw + 0.4rem, 0.95rem);
}

@media (min-width: 1500px) {
  .panel-card p {
    font-size: 1.25rem;
  }
}

.tarif-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.tarif-card h2 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  margin-bottom: 14px;
}

.tarif-card p {
  line-height: 1.6;
}

.price-list {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.price-item {
  gap: 10px;
  flex: 1 1 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
}

.price-item > div {
  text-align: center;
}

.price-item h2 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px 0;
  
}

.option ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.option ul li {
  padding-left: 20px;
  position: relative;
}

.option ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.info-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
  margin-top: 16px;
}

.info-list {
  display: flex;
  gap: 20px;
}

.info-item {
  flex: 1 1 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
}

.info-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Fraunces", serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--black);
  text-align: center;
}

.info-item p {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.7;
  font-size: 14px;
}

.panel-note {
  margin-top: 16px;
  font-size: 14px;
  color: #4b4037;
}

@media (max-width: 720px) {
  p.panel-note {
    font-size: 10px;
  }
}

.galerie-title {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.06em;
  padding-bottom: 6px;
}

.galerie-title::after {
  content: "";
  display: block;
  width: 15%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 6px auto 10px;
}

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

.galerie-item {
  border-radius: 16px;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}


.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: lightboxIn 0.25s ease;
}

@keyframes lightboxIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}




@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .page {
    padding: 16px 4vw 40px;
  }

  .hero {
    padding: 16px;
    gap: 16px;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs {
    width: 100%;
    justify-content: space-between;
  }

  .tab-button {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-card {
    padding: 16px;
    font-size: 14px;
  }

  .panel-card {
    padding: 16px;
  }

  .panel-card h2 {
    font-size: 18px;
  }

  .panel-card p {
    font-size: 13px;
  }

  .price-list {
    flex-direction: column;
  }

  .info-list {
    flex-direction: column;
  }

  .price-item {
    height: 220px;
  }

  .option h4 {
    font-size: 12px;
  }

  .option span {
    font-size: 12px;
    white-space: nowrap;
  }

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

  .review-card {
    width: 100%;
  }

  .presentation-photo {
    height: 220px;
  }
}

@media (max-width: 900px) {
  .presentation-row {
    flex-direction: column;
  }
}

.site-footer {
  text-align: center;
  padding: 16px 0 4px;
  font-size: 12px;
  color: #9a8a7a;
  opacity: 0.8;
}

.site-footer-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.contact-card h2 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

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

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: #e03535;
  background: #fff5f5;
}

.contact-form button {
  border: none;
  background: var(--black);
  color: var(--beige);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  transition: opacity 0.2s;
}

.contact-form button:hover {
  opacity: 0.8;
}

.form-feedback {
  font-size: 14px;
  color: var(--accent);
  min-height: 18px;
}

@media (max-width: 720px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}
