
@import "./components/nav.css";
@import "./components/footer.css";
@import "./pages/index.css";

@media screen and (min-width: 2150px) {
  html {
    font-size: 0.9vw;
  }
}

@media screen and (max-width: 1023px) {
  .wraper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.2em;
  }

  header {
    height: 86px;
  }
}

@media screen and (min-width: 1024px) {
  .wraper {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
    padding-bottom: 3em;
  }

  header {
    height: 76px;
  }
}

:root {
  --bs-dark-rgb: 46, 46, 45;
}

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

body {
  text-align: center;
  margin: auto;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

main {
  margin: auto;
  margin-bottom: 20px;
}

.container {
  padding: 0px 15px 0;
  margin: 2em auto;
}

a {
  text-decoration: none;
}

.modal-cookies {
  padding-top: 60px;
  height: 20vh;
}

.counter {
  visibility: hidden;
}

p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  p {
    font-size: clamp(0.875rem, 0.85rem + 0.25vw, 1rem);
  }
}

@media screen and (min-width: 2150px) {
  p {
    font-size: clamp(1.1rem, 1rem + 0.25vw, 1.35rem);
  }
}

.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2e2e2d;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.3s ease-in-out;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-consent p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-consent a {
  color: #fff;
  text-decoration: underline;
}

.cookie-btn {
  background: white;
  border: none;
  color: #2e2e2d;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  margin-left: 1rem;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover {
  background: #f0f0f0;
}

@media screen and (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
  }

  .cookie-btn {
    width: 100%;
    margin-left: 0;
    padding: 0.75rem;
  }
}



