/* ========================== */
/*   GŁÓWNE ELEMENTY STRONY   */
/* ========================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family:cursive;
    font-size: 18px;
    background-image: url('tlo_cyberpunk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: auto;
    padding: 0;
    color: white;
    height: 100%;
    width: auto;
    
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row; /* ZAMIANA z column na row */
    gap: 30px; /* odstępy między przyciskami */
    padding-top: 50px;
    padding-bottom: 20px;
    font-family:monospace;
    flex-wrap: wrap;
}

section 
        {width: 43%; 
            margin:auto; 
            margin-top: 3%;
            border-radius: 15px;
            background-color:rgba(64, 0, 77, 0.8)
            }
            
.tekst {
    padding: 30px 30px 20px;
    text-align: justify;
    
}
            
/* ========================== */
/*        HEADER              */
/* ========================== */

h1 {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: bold;
    margin: auto;
    width: 100%; /* rozciągnięcie na całą szerokość ekranu */
    background-color: #33003f;
    padding: 15px 20px;
    text-align: center;
    border-radius: 10px;
}

/* ========================== */
/*         NAWIGACJA          */
/* ========================== */

button {
    width: 220px;
    height: 220px;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    font-family:cursive;
    line-height: 1.5;
    border: none;
    border-radius: 30px;
    background-color: rgba(39, 1, 51, 0.4); /* transparentne tło */
    color: #ffffffb8;
    backdrop-filter: blur(5px); /* opcjonalnie: rozmycie tła */
    box-shadow: 0 4px 12px rgba(255, 2, 204, 0.658);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

button:hover {
    transform: scale(1.15);
    background-color: rgba(94, 3, 121, 0.4); /* jaśniejsze przy najechaniu */
    box-shadow: 0 8px 20px rgba(255, 0, 238, 0.871); 
    color: #c100bb;
}



/* ========================== */
/*           STOPKA           */
/* ========================== */

footer {
    background-color: #33003f;
    color: #F2F2F2;
    padding: 10px 0px 40px;
    text-align: center;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
  
footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}