/* Import czcionek Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@400;700&display=swap');

/* Ogólne ustawienia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('background.jpg') no-repeat center center/cover;
    color: #333;
    line-height: 1.8;
    padding: 2rem;
}

/* Pasek na górze */
.top-bar {
    background-color: #6a8caf;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #4f7298;
}

.top-bar .contact-link {
    text-transform: uppercase;
    padding: 0.5rem;
    background-color: #4f7298;
    border-radius: 4px;
}

.top-bar .contact-link:hover {
    background-color: #6a8caf;
}

/* Nagłówek z tłem */
header {
    background: url('header-background.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-radius: 8px;
    position: relative;
}

header .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 8px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Sekcje */
section {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #6a8caf;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #6a8caf;
    padding-bottom: 0.5rem;
}

/* Kontener "O mnie" */
.about-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Stylizacja zdjęcia */
.about-image {
    width: 250px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dostosowanie tekstu */
.about p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
}

/* Lista obszarów wsparcia */
ul {
    list-style: none;
    padding-left: 1rem;
}

ul li {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

ul li::before {
    content: "🌿";
    padding-right: 0.8rem;
    font-size: 1.2rem;
}

/* Cytat motywacyjny */
.quote {
    font-style: italic;
    text-align: center;
    background: #6a8caf;
    color: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.quote blockquote {
    font-size: 2rem;
}

/* Formularz kontaktowy */
.contact-form {
    background-color: white;
    padding: 2.5rem;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background-color: #6a8caf;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #4f7298;
}

/* Sekcja kontaktowa (modyfikacja) */
.contact {
    display: flex;
    flex-direction: column;  /* Ułożenie elementów w kolumnie */
    align-items: center;
    gap: 1rem;  /* Odstęp między elementami */
}

.contact a {
    font-size: 1.2rem;
    color: #6a8caf;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact a:hover {
    text-decoration: underline;
    color: #4f7298;
}

/* Stopka */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #6a8caf;
    color: white;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1rem;
}

/* Responsywność */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .about p {
        font-size: 1.2rem;
    }
    .quote blockquote {
        font-size: 1.7rem;
    }
}