@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Bebas+Neue&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000000;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  width: 100%;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.brand-niawal {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 28px;
}

.brand-dkr {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 19px;
  margin-top: 2px;
}

/* Logo en haut : DKR légèrement plus petit que NIAWAL */
.brand .brand-niawal {
  font-size: 24px;
}

.brand .brand-dkr {
  font-size: 21px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu a {
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

.menu a:hover {
  opacity: 1;
}

.lang-switch {
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  padding: 160px 40px 80px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    #000000;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 28px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(36px, 5.8vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  color: rgba(255, 255, 255, 0.78);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-secondary {
  background: transparent;
  color: #ffffff;
}

.brand-footer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  margin: 0 6px;
}

.brand-footer .brand-niawal {
  font-size: 18px;
}

.brand-footer .brand-dkr {
  font-size: 14px;
  margin-top: 1px;
}

.footer {
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

@media (max-width: 900px) {
  .nav {
    position: static;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 80px 24px;
  }
}

@media (max-width: 520px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 42px;
  }

  .brand .brand-niawal {
    font-size: 22px;
  }

  .brand .brand-dkr {
    font-size: 19px;
  }
}