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

/* Clearfix for sections */
section::after {
    content: "";
    display: table;
    clear: both;
}

/* General Styles */
body {
    background: url('kosmos.gif') repeat; /* Kafelkowe tło GIF-a */
    font-family: Verdana, Geneva, sans-serif;
    color: #ccc;
    text-align: center;
}



.container {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    border: 3px solid #555;
    background-color: rgba(0, 0, 0, 0.8); /* Transparentne tło */
    padding: 20px; /* Więcej przestrzeni w kontenerze */
    border-radius: 10px;
}

.floating-img {
    float: left; /* Ustaw obraz po lewej stronie */
    margin-right: 15px; /* Odstęp między obrazem a tekstem */
    margin-bottom: 10px; /* Odstęp pod obrazem */
    max-width: 40%; /* Obraz będzie zajmował maksymalnie 40% szerokości sekcji */
    height: auto; /* Zachowaj proporcje obrazu */
}

/* Dla małych ekranów obraz zajmie całą szerokość */
@media (max-width: 768px) {
    .floating-img {
        float: none; /* Usuń pływanie obrazu */
        display: block; /* Ustaw obraz jako blok */
        margin: 0 auto 15px auto; /* Wyśrodkuj obraz */
        max-width: 100%; /* Obraz zajmie całą szerokość */
    }
}


/* Header */
header {
    padding: 20px; /* Więcej przestrzeni wokół nagłówka */
    background: rgba(50, 50, 50, 0.9);
    border-bottom: 3px solid #777;
}

header h1 {
    font-size: 2.5em;
    color: #e6e6e6;
    text-shadow: 2px 2px #000000;
    font-family: Georgia, 'Times New Roman', serif; /* Serifowa czcionka dla nagłówka */

}

marquee {
    font-size: 1.2em;
    color: #bbb;
    font-weight: bold;
}

/* Marquee Section Styling */
.marquee-container {
    width: 100%; /* Rozciągnięcie na pełną szerokość */
    background: linear-gradient(90deg, #444, #222); /* Gradientowe tło */
    padding: 10px 0; /* Odstępy wokół marquee */
    border-top: 3px solid #555;
    border-bottom: 3px solid #555;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.7);
}

.marquee-container marquee {
    font-size: 1.2em;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px #000;
}


/* Navigation */
nav {
    background: rgba(40, 40, 40, 0.9);
    border: 2px solid #444;
    margin: 10px auto; /* Większy odstęp między sekcjami */
    padding: 10px;
}

/* Navigation Bar Styling */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Wyśrodkowanie przycisków */
    gap: 20px; /* Odstępy między przyciskami */
}

/* Links inside navigation */
nav ul li a {
    text-decoration: none;
    color: #e6e6e6;
    font-weight: bold;
    background: rgba(70, 70, 70, 0.9);
    padding: 5px 15px;
    border: 2px solid #555;
    border-radius: 5px;
    box-shadow: 2px 2px #333;
    transition: 0.3s;
}

/* Hover effect */
a:hover {
    color: #FFD700; /* Kolor podświetlenia */
}
  
  /* selected link */
a:active {
    color: blue;
}

/* Responsive Navigation for Small Screens */
@media (max-width: 768px) {
    nav ul {
        flex-direction:column; /* Przycisk w kolumnach */
        align-items: center;
        gap: 20px; /* Zmniejsz odstępy */
        padding: 8px;
    }

    nav ul li a {
        padding: 15px;
        font-size: 1em; /* Mniejszy rozmiar czcionki */
        padding: 8px 8em; /* Zmniejszenie odstępów */
    }
}


/* Main Content */
main {
    padding: 0px;
    text-align: center;
}

main section {
    margin-bottom: 30px; /* Większy odstęp między sekcjami */
    padding: 20px; /* Więcej przestrzeni w każdej sekcji */
    border: 2px dashed #888;
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 0px 0px 10px 10px;
}

main section h2 {
    font-size: 2em;
    font-family: Georgia, 'Times New Roman', serif; /* Serifowa czcionka dla nagłówków */
    color: #e6e6e6;
    text-decoration: underline;
    margin-bottom: 15px; /* Większy odstęp pod tytułem sekcji */
}

main section p {
    margin-top: 10px; /* Odstęp między akapitami */
    text-align: justify; /* Wyjustowanie dla lepszej czytelności */
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.gallery img {
    border: 3px solid #777;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #444;
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 10px;
    background: rgba(50, 50, 50, 0.9);
    color: #bbb;
    font-size: 0.9em;
}

footer .heart {
    color: #f00;
    font-size: 1.2em;
}
