/* =========================
   MYSTERY FREEDOM
   GLOBAL STYLE
   ========================= */


/* FONT (Montserrat)
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap" rel="stylesheet">
*/


/* =========================
   GLOBAL RESET
   ========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/* =========================
   TYPOGRAPHY
   ========================= */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

p {
  color: #bdbdbd;
  line-height: 1.8;
  font-size: 15px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

a:hover {
  opacity: 0.6;
}


/* =========================
   HEADER
   ========================= */

.site-header {
  padding: 28px 40px;
  border-bottom: 1px solid #1a1a1a;
  background: #000;
  text-align: center;
}

.site-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}


/* =========================
   HERO
   ========================= */

.hero {
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.hero h1 {
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1;
}


/* =========================
   PAGE CONTAINER
   ========================= */

.container {
  max-width: 950px;
  margin: auto;
  padding: 70px 40px;
}

.container h1 {
  font-size: 42px;
  margin-bottom: 40px;
}

.container h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 20px;
}

.container hr {
  border: 0;
  border-top: 1px solid #1f1f1f;
  margin: 35px 0;
}


/* =========================
   BUTTONS
   ========================= */

button,
.button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

button:hover,
.button:hover {
  background: #111;
  border-color: #555;
  transform: translateY(-1px);
}


/* =========================
   COOKIE BANNER
   ========================= */

#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 900px;
  margin: auto;
  background: #0d0d0d;
  border: 1px solid #222;
  padding: 26px;
  z-index: 9999;
}

#cookie-banner p {
  margin: 0 0 18px 0;
  color: #bdbdbd;
}


/* =========================
   COOKIE BOX PAGE
   ========================= */

.cookie-box {
  background: #0d0d0d;
  border: 1px solid #222;
  padding: 28px;
  margin-top: 30px;
}

.cookie-box label {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
}

.cookie-box label:last-child {
  border-bottom: none;
}

.cookie-box input {
  transform: scale(1.1);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .hero h1 {
    letter-spacing: 4px;
  }

  .container {
    padding: 50px 24px;
  }

  .site-header {
    padding: 24px;
  }

  .site-logo {
    font-size: 15px;
    letter-spacing: 3px;
  }
}