@charset "utf-8";

/* =========================================================
   BASE GLOBALE ONICKZ ARTWORKS – Identité Modernisée 2025
   ========================================================= */

/* Couleurs + Variables */
:root{
  --bg:#000;
  --fg:#fff;
  --fg-soft:#cfcfcf;
  --maxw:1080px;
}

/* Reset */
html, body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  overflow-x:hidden;
}

/* Typo globale */
body{
  font-family:'Roboto Condensed',sans-serif;
  font-size:18px;
  font-weight:300;
  line-height:1.55;
  letter-spacing:0.01em;
  text-align:center;
}

/* Paragraphes */
p{
  margin:0 0 16px;
  color:var(--fg-soft);
}

/* Liens */
a{
  color:var(--fg);
  text-decoration:none;
  transition:0.2s ease;
}

a:hover{
  color:#000;
  background:#fff;
}

/* Conteneur centralisé */
.wrap{
  max-width:var(--maxw);
  margin:auto;
  padding:24px;
}

/* TITRES */
h1, h2, h3, h4{
  font-family:'Raleway',sans-serif;
  font-weight:300;
  margin:0 0 14px;
  color:var(--fg);
}

h1{
  font-size:clamp(32px,6vw,64px);
  letter-spacing:-0.02em;
  text-transform:uppercase;
}

h2{
  font-size:clamp(22px,4.5vw,40px);
  letter-spacing:-0.01em;
  text-transform:uppercase;
}

h3{
  font-size:clamp(18px,3.5vw,28px);
}

h4{
  font-size:clamp(16px,3vw,22px);
}

/* Images */
img{
  max-width:100%;
  height:auto;
  margin:24px auto;
}

/* Vidéos responsive */
.video{
  position:relative;
  width:100%;
  padding-top:56.25%;
  margin:24px auto;
}

.video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* MOBILE */
@media (max-width:768px){
  body{ font-size:16px; }
}
