/* ========== Variables globales ========== */
:root {
  --bg: #0b0f12;
  --text: #e7eef5;
  --muted: #9fb0bb;
  --accent: #1de0b0;
  --accent2: #f3c623;
  --shadow: 0 10px 30px rgba(0,0,0,.4);

  /* Couleurs boutons spécifiques */
  --home-color: #ffd700;    /* doré lumineux pour Accueil */
  --gallery-color: #f3c623; /* jaune pour Galerie */
  --services-color: #1de0b0;/* vert/bleu pour Services */
  --contact-color: #e01d5a; /* rose/rouge pour Contact */
  --about-color: #1dc4e0;   /* bleu clair pour À propos */
}

/* Reset */
* { box-sizing:border-box; margin:0; padding:0; }
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { text-decoration:none; }

/* Hero */
.hero {
  min-height: 100svh;
  background:
    radial-gradient(80vmax 60vmax at 70% 40%, rgba(31,216,179,.15), transparent 60%),
    radial-gradient(40vmax 40vmax at 10% 90%, rgba(243,198,35,.12), transparent 60%),
    linear-gradient(180deg,#0b0f12,#0a0e10);
  animation: bgMove 12s ease-in-out infinite alternate;
}
@keyframes bgMove {
  from{background-position:0 0,0 0,0 0;}
  to{background-position:30px -40px,-20px 30px,0 0;}
}

.container {
  width: min(1100px,92%);
  margin-inline:auto;
  padding:20px 0 60px;
}

/* Topbar */
.topbar {
  display:flex; justify-content:flex-end; align-items:center; gap:20px; padding:20px 0;
}
.badge {
  display:inline-flex; align-items:center; gap:8px; padding:10px 14px;
  border-radius:999px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  font-weight:600; font-size:14px; color:var(--text); box-shadow: var(--shadow); transition: all .3s ease;
}
.badge .dot { width:8px; height:8px; border-radius:50%; background:var(--accent); }

/* ========== Boutons principaux ========== */
.home-link,
.gallery-link,
.services-link,
.contact-link,
.about-link {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Accueil bouton - version compacte */
.home-link {
  background: rgba(255, 220, 100, 0.15);
  border: 1px solid rgba(255, 220, 100, 0.4);
  color: var(--home-color);

  padding: 6px 12px;   /* moins d’espace intérieur */
  font-size: 13px;     /* texte plus petit */
  border-radius: 16px; /* coins légèrement moins arrondis */
}
.home-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 220, 100, 0.25);
}

/* Galerie bouton */
.gallery-link {
  background: rgba(243,198,35,0.15);
  border:1px solid rgba(243,198,35,0.4);
  color: var(--gallery-color);
}
.gallery-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(243,198,35,0.25);
}

/* Services bouton */
.services-link {
  background: rgba(29,224,176,0.12);
  border:1px solid rgba(29,224,176,0.4);
  color: var(--services-color);
}
.services-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(29,224,176,0.2);
}

/* Contact bouton - version plus compacte */
.contact-link {
  background: rgba(224,29,90,0.12);
  border: 1px solid rgba(224,29,90,0.4);
  color: var(--contact-color);

  padding: 4px 10px;   /* réduire l’espace intérieur */
  font-size: 13px;     /* texte un peu plus petit */
  border-radius: 16px; /* coins légèrement moins arrondis */
}
.contact-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(224,29,90,0.2);
}

/* À propos bouton - version plus compacte */
.about-link {
  background: rgba(29,196,224,0.12);
  border: 1px solid rgba(29,196,224,0.4);
  color: var(--about-color);
  
  padding: 6px 12px;     /* réduire le padding horizontal et vertical */
  font-size: 13px;       /* texte légèrement plus petit */
  border-radius: 16px;   /* coins moins arrondis pour réduire hauteur */
}
.about-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(29,196,224,0.2);
}

/* Contact Section */
.contact {
  text-align:center;
  margin-top:40px;
}
.contact h1 { font-size:clamp(26px,4vw,38px); color:var(--accent); margin-bottom:12px; }
.contact .intro { color:var(--muted); margin-bottom:40px; font-size:16px; }

/* Grid */
.grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:flex-start;
}
@media(max-width:768px){ .grid{grid-template-columns:1fr;} }

/* Formulaire */
.contact-form {
  display:flex;
  flex-direction:column;
  gap:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:28px;
  border-radius:20px;
  box-shadow:var(--shadow);
  animation: fadeUp 1s ease forwards;
}
.contact-form label { text-align:left; font-size:14px; color:var(--muted); }
.contact-form input,
.contact-form textarea {
  padding:12px 14px;
  border-radius:12px;
  border:none;
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-size:15px;
}
.contact-form textarea{ min-height:120px; resize:vertical; }
.contact-form button {
  padding:12px 20px;
  border:none;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  color:var(--bg);
  background:var(--accent);
  cursor:pointer;
  transition:.3s;
}
.contact-form button:hover { transform:scale(1.05); }

/* Info */
.info {
  text-align:left;
  padding:28px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  animation: fadeUp 1.2s ease forwards;
}
.info h2{ margin-bottom:16px; font-size:20px; color:var(--accent2); }
.info p{ margin-bottom:12px; color:var(--muted); font-size:15px; }
.info a{ font-weight:600; color:var(--accent); }
.info a:hover{ color:var(--accent2); }

@keyframes fadeUp {
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}
/* ===== FOOTER STYLES ===== */
.site-footer {
  padding: 40px 20px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.site-footer .container {
  max-width: 1200px;
  margin-inline: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  border-radius: 50%;
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #1de0b0;
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* On remplace la taille en font-size et on cible les images */
.footer-social a img {
  width: 50px;   /* largeur souhaitée */
  height: 50px;  /* hauteur souhaitée */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.2); /* petit effet au survol */
}


/* Responsive */
@media(max-width: 600px){
  .footer-top {
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav {
    justify-content: center;
  }
}

