/* CSS critique - Above the Fold */

/* === CSS CRITIQUE - Above the Fold === */

/* Reset minimal */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

/* Variables principales */
:root{
  --gold:#c9a96e;
  --dark:#07090f;
  --text:#ffffff;
  --muted:#9fadca;
  --bg-primary:#07090f;
  --bg-secondary:#0d1117;
}

/* Body et typographie de base */


/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(7,9,15,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(201,169,110,0.2);
  padding:1rem 0;
}

.header-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:1.5rem;
  font-weight:700;
  color:var(--gold);
  text-decoration:none;
}

.nav-menu{
  display:flex;
  gap:2rem;
  list-style:none;
}

.nav-menu a{
  color:var(--text);
  text-decoration:none;
  transition:color 0.3s;
}

.nav-menu a:hover{
  color:var(--gold);
}

/* Hero Section (Above the Fold) */
.bl-hero-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  padding:80px 20px 40px;
}

.bl-hero-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
  opacity:0.3;
}

.bl-hero-content{
  max-width:800px;
  text-align:center;
  z-index:1;
}

.bl-hero-title{
  font-size:3rem;
  font-weight:700;
  margin-bottom:1.5rem;
  line-height:1.2;
}

.bl-hero-subtitle{
  font-size:1.25rem;
  color:rgba(255,255,255,0.9);
  margin-bottom:2rem;
}

/* Boutons */
.btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s;
  border:none;
  cursor:pointer;
  font-size:1rem;
}

.btn-primary{
  background:var(--gold);
  color:var(--dark);
}

.btn-primary:hover{
  background:#d4af78;
  transform:translateY(-2px);
  box-shadow:0 8px 16px rgba(201,169,110,0.3);
}

.btn-secondary{
  background:transparent;
  color:var(--text);
  border:2px solid var(--gold);
}

/* Skip link pour accessibilité */
.skip-link{
  position:absolute;
  left:-9999px;
  z-index:999;
  padding:1em;
  background:var(--gold);
  color:var(--dark);
  text-decoration:none;
  font-weight:700;
}

.skip-link:focus{
  left:1rem;
  top:1rem;
}

/* Responsive */
@media(max-width:768px){
  .bl-hero-title{font-size:2rem}
  .bl-hero-subtitle{font-size:1.1rem}
  .nav-menu{flex-direction:column;gap:1rem}
}

/* Loading state */
.loading{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
