/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Old Standard TT', serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #161616;
  color: #f7f7f7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

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

p {
  margin: 0;
}

/* =========================================
   Layout
   ========================================= */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .container {
    max-width: 984px;
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1160px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1280px;
  }
}

/* =========================================
   Header
   ========================================= */
.site-header {
  background-color: #161616;
}

/* =========================================
   Main
   ========================================= */
#main {
  flex: 1;
}

/* =========================================
   Hero / Coming Soon Section
   ========================================= */
.hero-section {
  background-color: #ffffff;
  min-height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 56vh;
  }
}

.hero-section .container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero-logo {
  display: block;
  margin: 0 auto 32px;
  width: 90%;
  max-width: 1030px;
}

.hero-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.hero-heading {
  font-family: 'Karla', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #1b1b1b;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0 0 40px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 19px;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    margin-top: 100px;
    margin-bottom: 100px;
    font-size: 19px;
  }
}

@media (min-width: 1536px) {
  .hero-heading {
    font-size: 21px;
  }
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background-color: #161616;
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.site-footer .container {
  text-align: center;
}

.copyright {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #f7f7f7;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 1536px) {
  .copyright {
    font-size: 16px;
  }
}

/* =========================================
   Cookie Banner
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  border-radius: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  transform: translateY(0);
}

.cookie-banner h4 {
  font-family: 'Old Standard TT', serif;
  font-size: 22px;
  color: #1b1b1b;
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.cookie-banner p {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #1b1b1b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-banner-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.btn-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b1b1b;
  background-color: transparent;
  border: 2px solid currentColor;
  border-radius: 48px;
  padding: 4px 24px;
  cursor: pointer;
  text-decoration: none;
  min-height: 40px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn-accept:hover {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    width: 400px;
    border-radius: 7px;
    margin: 24px;
  }
}
