/* ===================================================
   KUDSHIBA — main.css
   =================================================== */

/* ========== RESET / BASE ========== */
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  background: #fafafa;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== HEADER ========== */
.site-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 2rem;
  min-height: 80px;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
}

/* --- Colonnes gauche / droite --- */
.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  justify-self: start;
}

.header-right {
  justify-self: end;
  padding-right: 1rem;
}

/* --- Titre du site --- */
.site-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  justify-self: center;
  text-align: center;
}

.site-title a {
  color: #000;
  text-decoration: none;
}

.site-title a:hover {
  opacity: 0.7;
}

/* --- Logo --- */
.site-logo {
  display: block;
  justify-self: end;
}

.site-logo img {
  height: 185px;
  width: auto;
  border-radius: 0;
}

/* --- Bouton hamburger --- */
.menu-toggle {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.hamburger {
  justify-self: start;
}

/* --- Navigation déroulante --- */
.site-nav {
  position: absolute;
  top: 8rem;
  left: 3rem;
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 100;
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li + li {
  margin-top: 0.6rem;
}

.site-nav a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
}

.site-nav a:hover {
  color: #000;
  text-decoration: underline;
}

/* ========== HOMEPAGE — HERO ========== */
.home-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.home-text {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.home-cta {
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.85;
  margin: 0;
}

/* ========== IMAGE PLEINE LARGEUR ========== */
.full-width-image {
  width: 100%;
  overflow: hidden;
}

.full-width-image img {
  width: 100%;
  display: block;
  border-radius: 0;
  margin: 0;
}

/* ========== FOOTER ========== */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  font-size: 0.85rem;
  color: #999;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .site-header {
    padding: 0.8rem 1.5rem;
    min-height: auto;
  }

  .site-logo img {
    height: 65px;
  }

  .site-nav {
    top: 7rem;
    left: 1.5rem;
  }
}
