.banner {
    background-image: url('banner-bg-jesien.webp'); /* nazwa pliku tła */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
}

/* Stylizacja całego paska */
::-webkit-scrollbar {
    width: 10px; /* Szerokość paska przewijania */
  }
  
  /* Tło paska przewijania */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Suwak paska przewijania */
  ::-webkit-scrollbar-thumb {
    background: #a7a7a7;
    border-radius: 5px;
  }
  
  /* Suwak przy najechaniu */
  ::-webkit-scrollbar-thumb:hover {
    background: #e4ae1c;
  }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}


.info {
    text-align: center;
    padding: 1rem;
}

.founders {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
}

.founder {
    text-align: center;
    font-style: bold;
}

.founder img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.team {
    padding: 2rem;
    text-align: center;
}

.team-member {
    display: inline-block;
    width: 150px;
    margin: 1rem;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.cytat {
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    letter-spacing: -0.4px;
    word-spacing: 2px;
    color: #000000;
    font-weight: normal;
    text-decoration: none;
    font-style: italic;
    font-variant: normal;
    text-transform: none;
    }

.divcytat {
    background-color: #7e7e7e31; /* Szary kolor tła */
    border-radius: 10px; /* Zaokrąglone krawędzie */
    width: 300px; /* Szerokość 300 px */
    margin: 0 auto; /* Wycentrowanie */
    padding: 20px; /* Opcjonalne: Dodanie wewnętrznego marginesu dla lepszego wyglądu */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Opcjonalne: Dodanie delikatnego cienia dla głębi */
    text-align: center; /* Opcjonalne: Wyśrodkowanie tekstu wewnątrz */
    }
    
.Nox {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    letter-spacing: -0.4px;
    word-spacing: 2px;
    color: #000000;
    font-weight: normal;
    text-decoration: none;
    font-style: bold;
    font-variant: normal;
    text-transform: none; 
    text-align: right;
}

.owners {
text-align: center;
font-style: bold;
}

/* styles.css */
.onas-section {
    display: flex;
    width: 100%;
    border: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
}

.onas-left {
    flex: 1;
    max-width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
    border-right: 1px solid #ccc;
}

.onas-right {
    flex: 2;
    padding-left: 20px;
}

.onas-image {
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.onas-caption {
    text-align: center;
    margin-top: 10px;
}

.onas-caption h2 {
    margin: 5px 0;
    font-size: 24px;
}

.onas-caption p {
    margin: 0;
    font-size: 18px;
    color: #777;
}

.onas-social-links {
    margin-top: 20px;
}

.onas-social-links a {
    margin-right: 10px;
    text-decoration: none;
    color: #e4ae1c;
}

.onas-social-links a:hover {
    text-decoration: underline;
}


/* styles.css */
.kontakt-section {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.kontakt-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.kontakt-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.kontakt-info p {
    font-size: 18px;
    margin: 5px 0;
}

.kontakt-email {
    color: #e4ae1c;
    text-decoration: none;
}

.kontakt-email:hover {
    text-decoration: underline;
}

.kontakt-social-links {
    margin-top: 20px;
}

.kontakt-social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #0073b1;
}

.kontakt-social-links a:hover {
    text-decoration: underline;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #000; /* Czarna linia */
    margin: 20px 0; /* Margines góra-dół */
}

.privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}

.privacy-notice p {
    margin: 0;
    padding: 0;
}

.privacy-notice a {
    color: #f0ca62;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.privacy-notice button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #e4ae1c;
    border: none;
    color: white;
    cursor: pointer;
}

.privacy-notice button:hover {
    background-color: #8a6910;
}

.hidden {
    display: none;
}

/* CSS for the footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
}

.footer-content .social-media {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
}

.footer-content .social-media li {
    margin: 0 10px;
}

.footer-content .social-media li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-content .social-media li a:hover {
    color: #ff5733; /* Change to desired hover color */
}

.buy-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e4ae1c;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #7c5f0f;
}


.indexpromo-image-section {
    position: relative;
    height: 500px; /* Wysokość kontenera */
    /*background-color: #e7e7e7; /* Neutralne tło sekcji */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .indexpromo-square {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.6;
    z-index: 0.6;
  }
  
  /* Style dla pierwszego kwadratu */
  .square1 {
    background-color: #86A3C3; /* Czerwony */
    top: 50px;
    left: 550px;
    width: 350px;
    height: 350px;
    transform: rotate(0deg); /* Obrót, aby uzyskać efekt */
  }
  
  /* Style dla drugiego kwadratu */
  .square2 {
    background-color: #6B3074; /* Niebieski */
    top: 110px;
    left: 100px;
    width: 200px;
    height: 200px;
    transform: rotate(0deg); /* Inny obrót */
  }
  
  /* Style dla trzeciego kwadratu */
  .square3 {
    background-color: #7268A6; /* Zielony */
    top: 180px;
    left: 320px;
    width: 300px;
    height: 300px;
    transform: rotate(0deg); /* Jeszcze inny obrót */
  }
  
  .indexpromo-image-section img {
    position: relative;
    z-index: 2; /* Obrazek nad kwadratami */
    max-width: 800px; /* Maksymalna szerokość obrazu */

  }

  .invite {
    background-color: #dab972;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 70%;
    margin: auto;

}
.invite h2 {
    margin: 0 0 10px 0;
}
.invite a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #c7950c;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.invite a:hover {
    background-color: #80610e;
    
}

#about-nox {
    width: 96.8%;
    padding: 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.nox-team-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.nox-team-description h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.nox-team-description p {
    font-size: 16px;
    color: #333;
}
.name {
    font-weight: bold;
}

/*Haloween*/
.leaf {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('leaves.webp'); /* Podmień na swoją grafikę liścia */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index:-999999;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0);
    }
    100% {
        transform: translateY(180vh) rotate(360deg); /* Liść opada do pełnej wysokości widoku */
    }
}

.menusocials {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.menusocials a {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.menusocials a:hover {
    background-color: #555;
}

.menusocials a img {
    width: 30px;
    height: 30px;
}

/* Dodatkowe style kolorów dla poszczególnych przycisków */
.menusocials .tt:hover { background-color: #9e9e9e; }
.menusocials .spoti:hover { background-color: #9e9e9e; }
.menusocials .instagram:hover { background-color: #9e9e9e; }
.menusocials .yt:hover { background-color: #9e9e9e; }


.buttonlink {
    display: flex;
    justify-content: center;
    align-items: center; /* opcjonalnie do centrowania pionowego */
    height: 70px; /* opcjonalne */
    background-color:#ffffff;
  }

