@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --basic-blue: #5b8db2;
  --basic-dark-blue: #1f3447;
  --basic-white: #e9eae9;
  --basic-black: #171717;
  --basic-light-green: #e1c65e;
  --basic-medium-green: #bfa631;
}

/* RESET I PODSTAWY */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  scrollbar-color: transparent transparent; /* thumb i track */
  scrollbar-width: 0;

  -ms-overflow-style: none; /* IE i Edge */
}

*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

html,
body {
  /* overscroll-behavior-y: contain;
  overscroll-behavior-x: none;
  overflow-x: hidden;
  overflow-y: auto; */
  overscroll-behavior: auto;
  overflow-x: hidden;
}

/* CZCIONKI I NAGŁÓWKI */
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  padding: 10px 0;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
}

h3 {
  font-family: "Noto Serif", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

a {
  font-family: "Noto Serif", sans-serif;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  font-size: 8px;
}

.new-page-btn {
  cursor: pointer;
  color: initial; /* lub inny domyślny kolor */
  transition: color 0.3s ease;
}

.new-page-btn:hover {
  cursor: pointer!;
  color: #333333!; /* ciemny szary */
  text-decoration: underline; /* opcjonalnie, żeby bardziej link przypominało */
}

/* KLASY DODATKOWE */
.bold {
  font-weight: 700;
}

.display-none {
  display: none;
}

.padding40 {
  padding: 40px;
}

/* KONTAINERY I UKŁADY */

.screen {
  height: 700px;
  transform: translateZ(0) scale(1);
  z-index: 8;
  display: flex;
  justify-content: center;
}

.screen iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.flex-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* STRONY DODATKOWE */

.new-page-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;

  transition: right 0.5s ease-in-out;
  background-color: var(--basic-white);
}

.new-page-container h1 {
  color: var(--basic-black);
}

/* RESPONSYWNOŚĆ */

@media (max-width: 600px) {
  .screen {
    height: 700px;
  }

  .text-container {
    width: 100%;
    height: 50%;
  }

  .welcome-screen .text-container {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .winnica-screen .right-side {
    width: 100%;
    height: 50%;
  }

  #grape {
    width: 150px;
    height: 150px;
    padding: 0 0 180px 0;
  }

  .winnica-screen .learnmore-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}


#gorastrony {
  position: absolute;
  left: 10%;
  bottom: 20%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  background: none; /* jeśli chcesz bez tła */
  border: none;     /* jeśli chcesz bez obramowania */
  cursor: pointer;
}

#gorastrony:hover {
  opacity: 0.8; /* lekki efekt po najechaniu */
}

#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white; /* lub inny kolor tła */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3; /* jasny kolor obramowania */
  border-top: 6px solid #333; /* ciemny kolor */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* animacja obracania */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
