/* ===== CUSTOM FONT ===== */
@font-face {
  font-family: 'PrestigeSignature';
  src: local('Prestige Signature Script - Demo'),
       local('PrestigeSignatureScript'),
       url('../Assets/font/Prestige%20Signature%20Script%20-%20Demo.ttf') format('truetype'),
       url('../Assets/font/Prestige Signature Script - Demo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== FOOTER STYLE PHOTO - LAYOUT 2 COLONNES ===== */
.site-footer {
  background: var(--color-dark-blue, #2c3e50);
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-gold, #d4af37) 0%, var(--color-orange, #ff8c42) 100%);
  z-index: 10;
}

/* Conteneur = 2 colonnes de même hauteur */
.footer-container {
  display: flex;                /* <- même hauteur garantie */
  align-items: stretch;
  min-height: 520px;
  border-radius: 16px;
  overflow: hidden;             /* coins arrondis appliqués aux 2 colonnes */
}

/* ===== COLONNE GAUCHE - INFOS ===== */
.footer-left {
  flex: 1;
  display: flex;
  padding: 5rem 0rem;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
  position: relative;
}

/* (ne pas mettre de border-radius ici, il est sur .footer-container) */

.footer-headline {
  font-family: var(--font-title, 'Arial Black', sans-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--color-gold, #d4af37);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}

/* Contact items */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  justify-content: center;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 0.5rem;
}

.footer-contact-item i {
  width: 75px; height: 75px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  color: var(--color-gold, #d4af37);
  border: 3px solid var(--color-gold, #d4af37);
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact-item small {
  font-family: var(--font-text, Arial, sans-serif);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-contact-item a {
  font-family: var(--font-text, Arial, sans-serif);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item:hover i {
  background: var(--color-gold, #d4af37);
  color: var(--color-dark-blue, #2c3e50);
  transform: scale(1.06);
}

.footer-contact-item:hover a {
  color: var(--color-gold, #d4af37);
}

/* ===== COLONNE DROITE - PHOTO ===== */
.footer-right {
  flex: 1;
  position: relative;
  background-color: #000;                       /* fallback */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;                       /* remplit la colonne (rognage possible) */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: grayscale(100%) contrast(1.1);        /* style N&B comme la maquette */
  
}

/* Si tu veux voir TOUTE la photo sans recadrage, remplace cover par contain */
.contact-list{ align-items: center; }

.footer-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* Texte par-dessus la photo */
/* Texte manuscrit sur la photo */
.footer-script {
  position: absolute;
  bottom: 1rem;
  left: 10rem;
  z-index: 2;
  font-family: 'PrestigeSignature', cursive !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 100rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  line-height: 1.2;
}


/* ===== LOGO CENTRÉ ENTRE LES DEUX COLONNES ===== */
.footer-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 160px;
  height: 160px;
  border: 5px solid var(--color-gold, #d4af37);
  background: #0b0e17;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}

.footer-logo-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
}


/* ===== BAS DE PAGE ===== */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-left { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-credits { font-family: var(--font-text, Arial, sans-serif); font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-dev-credit { font-family: var(--font-text, Arial, sans-serif); font-size: 0.85rem; color: rgba(255,255,255,0.5); font-style: italic; }

.footer-dev-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;

}


.footer-dev-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--color-gold, #d4af37); transition: width 0.3s ease;
}
.footer-dev-link:hover { color: var(--color-gold, #d4af37); }
.footer-dev-link:hover::after { width: 100%; }

/* ===== RESPONSIVE ===== */

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    min-height: auto;
  }

  .footer-left {
    padding: 2.5rem 1rem;
    gap: 2rem;
    order: 1;
  }

  .footer-headline {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
  }

  .contact-list {
    gap: 1.5rem;
    align-items: center;
  }

  .footer-contact-item {
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 0.8rem;
  }

  .footer-contact-item i {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    border-width: 2px;
  }

  .footer-contact-item > div {
    align-items: center;
  }

  .footer-contact-item small {
    font-size: 0.7rem;
  }

  .footer-contact-item a {
    font-size: 0.95rem;
    text-align: center;
  }

  .footer-right {
    min-height: 500px;
    background-position: center top;
    background-size: contain;
    order: 2;
    position: relative;
  }

  .footer-logo-center {
    width: 90px;
    height: 90px;
    border-width: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .footer-logo-center img {
    filter: grayscale(100%) contrast(1.1);
  }

  .footer-script {
    font-family: 'PrestigeSignature', cursive !important;
    font-size: 2rem;
    bottom: 1.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-2deg);
    text-align: center;
    width: 90%;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 1.2rem 1rem;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-left {
    align-items: center;
  }

  .footer-credits {
    font-size: 0.8rem;
  }

  .footer-dev-credit {
    font-size: 0.75rem;
  }
}

/* Mobile Large (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    min-height: auto;
  }

  .footer-left {
    padding: 3rem 1.5rem;
    gap: 2.5rem;
    order: 1;
  }

  .footer-headline {
    font-size: 2rem;
    text-align: center;
  }

  .contact-list {
    gap: 2rem;
  }

  .footer-contact-item i {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }

  .footer-contact-item a {
    font-size: 1.05rem;
  }

  .footer-right {
    min-height: 550px;
    background-position: center top;
    background-size: contain;
    order: 2;
  }

  .footer-logo-center {
    width: 110px;
    height: 110px;
    border-width: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .footer-script {
    font-family: 'PrestigeSignature', cursive !important;
    font-size: 2.5rem;
    bottom: 2rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-2deg);
    text-align: center;
    width: 85%;
  }

  .footer-bottom {
    padding: 1.5rem 1.5rem;
    gap: 1.5rem;
  }

  .footer-credits {
    font-size: 0.85rem;
  }

  .footer-dev-credit {
    font-size: 0.8rem;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    min-height: auto;
  }

  .footer-left {
    padding: 4rem 2rem;
    gap: 3rem;
    order: 1;
  }

  .footer-headline {
    font-size: 2.5rem;
    text-align: center;
  }

  .contact-list {
    gap: 2.2rem;
  }

  .footer-contact-item i {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }

  .footer-contact-item a {
    font-size: 1.1rem;
  }

  .footer-right {
    min-height: 600px;
    background-position: center top;
    background-size: contain;
    order: 2;
  }

  .footer-logo-center {
    width: 140px;
    height: 140px;
    border-width: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .footer-script {
    font-family: 'PrestigeSignature', cursive !important;
    font-size: 3rem;
    bottom: 3rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-1deg);
    text-align: center;
    width: 80%;
  }

  .footer-bottom {
    padding: 1.5rem 2rem;
  }
}

/* Desktop Small (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .footer-container {
    min-height: 480px;
  }

  .footer-left {
    padding: 4rem 2rem;
  }

  .footer-headline {
    font-size: 2.8rem;
  }

  .footer-contact-item i {
    width: 72px;
    height: 72px;
  }

  .footer-logo-center {
    width: 150px;
    height: 150px;
  }

  .footer-script {
    font-family: 'PrestigeSignature', cursive !important;
    font-size: 3.2rem;
    bottom: 7rem;
  }
}

/* Desktop Medium (1367px - 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
  .footer-container {
    min-height: 520px;
  }

  .footer-left {
    padding: 5rem 2.5rem;
  }

  .footer-headline {
    font-size: 3.2rem;
  }

  .footer-contact-item i {
    width: 75px;
    height: 75px;
  }

  .footer-logo-center {
    width: 160px;
    height: 160px;
  }

  .footer-script {
    font-family: 'PrestigeSignature', cursive !important;
    font-size: 5.5rem;
    bottom: 4rem;
  }
}

/* Desktop Large (1921px - 2560px) [2K] */
@media (min-width: 1921px) and (max-width: 2560px) {
  .footer-container {
    min-height: 580px;
  }

  .footer-left {
    padding: 6rem 3rem;
    gap: 4rem;
  }

  .footer-headline {
    font-size: 3.8rem;
  }

  .contact-list {
    gap: 2.8rem;
  }

  .footer-contact-item i {
    width: 85px;
    height: 85px;
    font-size: 2rem;
  }

  .footer-contact-item small {
    font-size: 0.9rem;
  }

  .footer-contact-item a {
    font-size: 1.35rem;
  }

  .footer-logo-center {
    width: 180px;
    height: 180px;
    border-width: 6px;
  }

  .footer-script {
    font-family: 'PrestigeSignature', cursive !important;
    font-size: 4rem;
    bottom: 12rem;
    right: 3rem;
  }

  .footer-bottom {
    padding: 2rem 3rem;
  }

  .footer-credits {
    font-size: 1rem;
  }

  .footer-dev-credit {
    font-size: 0.95rem;
  }
}

/* Desktop XL (2561px+) [4K+] */
@media (min-width: 2561px) {
  .footer-container {
    min-height: 650px;
  }

  .footer-left {
    padding: 7rem 4rem;
    gap: 4.5rem;
  }

  .footer-headline {
    font-size: 4.5rem;
  }

  .contact-list {
    gap: 3.5rem;
  }

  .footer-contact-item i {
    width: 95px;
    height: 95px;
    font-size: 2.3rem;
  }

  .footer-contact-item small {
    font-size: 1rem;
  }

  .footer-contact-item a {
    font-size: 1.5rem;
  }

  .footer-logo-center {
    width: 200px;
    height: 200px;
    border-width: 7px;
  }

  .footer-script {
    font-family: 'PrestigeSignature', cursive !important;
    font-size: 4.5rem;
    bottom: 15rem;
    right: 4rem;
  }

  .footer-bottom {
    padding: 2.5rem 4rem;
  }

  .footer-credits {
    font-size: 1.1rem;
  }

  .footer-dev-credit {
    font-size: 1rem;
  }
}


/* Animation d'entrée */
.site-footer { animation: fadeIn 0.7s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
