:root {
  --c-blue: #0093a5;
  --c-mid: #fffde8;
  --c-yellow: #fff37f;
  --c-dark: #1f2a1f;
  --c-white: #ffffff;
  --c-green: #008d36;
  --c-pink: #cc398d;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--c-mid);
}

.page {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  background-image: url('bck.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: local;
}

/* Bandeau beige en dégradé sur le tiers supérieur, qui laisse apparaître la photo en dessous */
.top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34%;
  background: linear-gradient(
    to bottom,
    var(--c-mid) 0%,
    var(--c-mid) 55%,
    rgba(255, 253, 232, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.header {
  position: relative;
  z-index: 2;
  padding: 2.75rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 68%;
  max-width: 260px;
  height: auto;
}

.place {
  margin-top: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-dark);
  letter-spacing: 0.01em;
}

/* Badge façon bandeau rose de l'affiche : fond rose, coins légèrement arrondis, léger effet "étiquette" */
.date-badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1.1rem;
  background-color: var(--c-pink);
  color: var(--c-white);
  border-radius: 10px;
  transform: rotate(-2deg);
  font-family: 'Shadows Into Light', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1;
}

.links {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: 2rem 1.5rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem 1.5rem;
  border-radius: 16px;
  color: var(--c-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(31, 42, 31, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}

.btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(31, 42, 31, 0.12);
}

.btn-teal { background-color: var(--c-blue); }
.btn-pink { background-color: var(--c-pink); }
.btn-green { background-color: var(--c-green); }
.btn-beige { background-color: var(--c-mid); }

.footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 2.5rem 1.5rem 1.75rem;
}

/* Voile sombre en dégradé pour que le texte du footer reste lisible sur la photo */
.bottom-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 42, 31, 0) 0%,
    rgba(31, 42, 31, 0.55) 60%,
    rgba(31, 42, 31, 0.62) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.addresses {
  text-align: center;
  margin-bottom: 1.5rem;
}

.addresses-title {
  font-family: 'Shadows Into Light', 'DM Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--c-mid);
  margin-bottom: 0.6rem;
}

.address-link {
  display: block;
  text-decoration: none;
  padding: 0.35rem 0;
}

.address-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-white);
}

.address-detail {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.social-link:hover,
.social-link:active {
  opacity: 1;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--c-white);
}
