/* ========================== */
/*   GŁÓWNE ELEMENTY STRONY   */
/* ========================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
    
}

body {
    background-image: url('tlo_goth.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1500px;
    margin: auto;
    background-attachment: fixed;

}

main {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 20px;
    margin: 60px;

}




/* ========================== */
/*         NAWIGACJA          */
/* ========================== */

nav {
    text-align: center;
    color: white;
}

a {
    text-decoration: none;
    padding: 30px;
    margin: 6px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 13px;
    font-weight: bold;

}

a:link,a {
    color: white;
    
}

a:hover {
    color:white;
    font-size: 13px;
    background-color: #000000;
    border-radius: 10px;
    margin: 6px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    
    
}

/* ========================== */
/*          HEADER            */
/* ========================== */

h1 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: bold;
    margin: auto;
    width: 90%; 
    padding: 20px;
    text-align: center;
    color: white;

}

header {
    background-image: url(tlo_h1.jpg);
    padding: 50px 40px 40px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 120px;
    margin-right: 120px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================== */
/*          NAGŁÓWKI          */
/* ========================== */

h2 {

}

/* ========================== */
/*           SEKCJA           */
/* ========================== */

section {
    margin: auto;
    width: 60%;
    max-width: 60%;
    text-align:justify;
    justify-content: center;
}

p {
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    
}

.one {
    background-color: #030303a9;
    border-radius: 20px;
    padding: 20px;
    border-left: 6px solid  #ffffff;
    border-right: 6px solid  #ffffff;
}

.tlo {
    width: 100%;
    height: auto;
}

ol {

}

/* ========================== */
/*           GALERIA          */
/* ========================== */

.galeria {
    justify-content: center;
}

.galeria-zdjecia {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    padding: 10px;

}

.zdjecie {
    position: relative;
}

.galeria-zdjecia img {
    width: auto;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
}

.galeria-zdjecia img:hover {
    transform: scale(1.05);
}

/* ========================== */
/*           STOPKA           */
/* ========================== */

footer {
    color: #F2F2F2;
    padding: 10px 0px 40px;
    text-align: center;
    margin-top: 100px;
}
  
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
  
footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}