/* Resetowanie stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-family: 'Great Vibes', cursive;
}

header h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

#about {
    padding: 50px 0;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-content img {
    max-width: 300px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-content p {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

#contact {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff7eb3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

form button:hover {
    background: #ff758c;
}

footer {
    background: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
    font-size: 1rem;
}

/* Styl dla sekcji przesyłania zdjęć */
#upload {
    padding: 50px 0;
    text-align: center;
}

#upload h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

#upload form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#upload input[type=file] {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#upload input[type=submit] {
    display: inline-block;
    padding: 10px 20px;
    background: #ff7eb3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

#upload input[type=submit]:hover {
    background: #ff758c;
}
/* Styl dla komunikatów */
.message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 1.2rem;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Styl dla przycisku powrotu */
.button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff7eb3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.button:hover {
    background: #ff758c;
}
/* Styl dla galerii */
#gallery {
    padding: 50px 0;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
/* Styl dla formularza logowania */
#login {
    padding: 50px 0;
    text-align: center;
}

#login h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Great Vibes', cursive;
}

#login form {
    max-width: 300px;
    margin: 0 auto;
    text-align: left;
}

#login label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

#login input[type='password'] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#login button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff7eb3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

#login button:hover {
    background: #ff758c;
}