@import "colors.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: var(--color-body-text);
  position: relative;
  background: url('desktop.jpg') no-repeat center center fixed;
  background-size: cover;
}

@media (max-width: 768px) {
  body {
    background: url('mobile.jpg') no-repeat center center fixed;
    background-size: cover;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: -1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-header-bg);
  z-index: 9999;
}

.header-container {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.main-content {
  min-height: calc(100vh - 160px);
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.loading-container {
  font-size: 32px;
  color: var(--popup-text);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

#cookie-popup {
  background-color: var(--popup-bg-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 600px;
}
#cookie-popup p {
  color: var(--popup-text);
}

.button-group {
  margin-top: 20px;
}

.btn-orange {
  background-color: var(--color-btn-orange-bg);
  color: var(--color-btn-orange-text);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.btn-orange:hover {
  opacity: 0.8;
}

.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  text-align: center;
  padding: 20px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.hidden {
  display: none;
}
