/* Nowoczesny styl strony Hoduj.com */

/* Importowanie fontów Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #6d4c41; /* Brązowy */
    color: #4a4a4a;
    margin: 0;
    padding: 0;
}

header {
    background-color: #6d4c41; /* Brązowy */
    color: #ffffff;
    padding: 20px;
    text-align: center;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

header .header-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section:nth-child(1) {
    background-color: #e8e2dc; /* Jasny brąz */
}

section:nth-child(2) {
    background-color: #d9f2d9; /* Pastelowa zieleń */
}

section:nth-child(3) {
    background-color: #dacaba; /* Ciepły brąz */
}

section:nth-child(4) {
    background-color: #e2f5e2; /* Jasna pastelowa zieleń */
}

section h2 {
    color: #388e3c; /* Zieleń */
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

section h3 {
    color: #4a4a4a;
    font-size: 1.4rem;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.img-container {
    text-align: center;
    margin: 20px 0;
}

.img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.highlight {
    background-color: #e8f5e9; /* Jasny zielony */
    border-left: 5px solid #388e3c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.highlight strong {
    color: #6d4c41;
}

footer {
    background-color: #6d4c41;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #f5f5f5;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
