/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #000;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
}

/* STRUCTURE DE PAGE */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* HEADER */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: rgb(0, 0, 0);
  padding: 0px 20px;
  position: relative;
}

/* BURGER À GAUCHE */
.burger-btn {
  justify-self: start;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.burger-btn span {
  height: 3px;
  background-color: #fff;
  transition: 0.1s ease;
  border-radius: 2px;
}

/* LOGO AU CENTRE */
.logo-img {
  height: 150px;
  object-fit: cover;
  justify-self: center; 
}

/* ANIMATION BURGER */
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MENU BURGER */
.burger-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 90px;
  left: 10px;
  background: #111;
  border: 1px solid #333;
  padding: 15px 20px;
  z-index: 100;
}

.burger-menu ul {
  list-style: none;
}

.burger-menu li {
  margin-bottom: 10px;
}

.burger-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.burger-menu a:hover {
  color: #f39c12;
}

/* FOOTER */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

.hero-video {
  flex: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1); /* le cœur du rognage doux */
  transition: transform 0.4s ease;
}

.hero-logo {
  position: absolute;
  z-index: 2;
  text-align: center;
}

.hero-logo img {
  width: 960px;
  height: auto;
  opacity: 0.9;
}



@media (max-width: 768px) {
  .hero-video video {
    transform: scale(1.2);
  }
}