/* style.css - thème "cute collage" */
/* Couleurs globales : changez ici pour recolorer (voir plus bas) */
:root{
  --bg-1: #fff8fb;
  --accent: #f6b4d9;
  --accent-2: #fde8f5;
  --text: #3a2b3d;
  --card-bg: rgba(255,255,255,0.85);
  --shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Reset minimal */
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--bg-1) url('/images/checkered-bg.png') repeat;
  color: var(--text);
  line-height:1.4;
  padding-bottom:60px;
}

/* Header */
.site-header{padding:18px 12px;background:linear-gradient(180deg,var(--accent-2),transparent)}
.header-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between}
.logo{font-weight:800;letter-spacing:2px;color:var(--accent)}
.main-nav a{margin-left:14px;text-decoration:none;color:var(--text);font-weight:600}

/* Container (zone où on colle tout) */
.container-collage{max-width:1100px;margin:24px auto;position:relative;padding:24px}

/* Hero card */
.hero-card{
  background:var(--card-bg);
  border:2px dashed rgba(0,0,0,0.08);
  padding:20px;border-radius:10px;box-shadow:var(--shadow);
  width:70%;
  margin-bottom:18px;
}

/* Stickers - petites images "collées" */
.sticker{
  position:absolute;
  width:100px;
  height:auto;
  transform:rotate(-6deg);
  box-shadow: 2px 8px 18px rgba(0,0,0,0.18);
  transition: transform .2s;
}
.sticker:hover{transform:rotate(0deg) scale(1.05)}

/* Exemples de positions - tu peux ajouter les tiennes */
.sticker-1{left:2%; top:160px}
.sticker-2{right:6%; top:40px; width:120px; transform:rotate(10deg)}

/* Polaroid style */
.polaroid{background:white;padding:8px;border-radius:8px;display:inline-block;margin:8px;box-shadow:var(--shadow);width:160px;text-align:center}
.polaroid img{width:140px;height:110px;object-fit:cover;border-radius:6px}

/* Boutons */
.button-sticker{display:inline-block;padding:8px 12px;border-radius:10px;background:var(--accent);color:white;text-decoration:none;font-weight:700;box-shadow: 0 6px 12px rgba(0,0,0,0.12);border:2px solid rgba(255,255,255,0.25);}

/* Cartes */
.card{background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));padding:12px;border-radius:8px;border:1px dotted rgba(0,0,0,0.06);margin-bottom:12px}

/* Footer */
.site-footer{text-align:center;margin-top:26px;color:rgba(0,0,0,0.6)}

/* Responsive simple */
@media (max-width:720px){
  .sticker{display:none}
  .hero-card{width:100%}
}
