/* Reset podstawowy i ogólne style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; /* Tylko systemowe szrifty */
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    max-width: 1090px;
    margin: 0 auto; /* Centrowanie strony */
    padding: 0 15px;
}

/* Kontener główny dla cieni i spójności */
.section {
    padding: 60px 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Styl górskiego kurortu – kontrastowe bloki */
#offer {
    min-height: 470px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%234a7c9e" width="1920" height="1080"/><path fill="%23ffffff" d="M0,400 L300,320 L600,480 L900,360 L1200,420 L1500,300 L1920,450 L1920,1080 L0,1080 Z"/></svg>'); /* Proste SVG jako tło gór */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#offer h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

#offer p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Kontrastowe kolory bloków – styl górski */
#specialists {
    background-color: #e8f4f8; /* Jasny błękit lodowca */
    color: #2c3e50;
}

#subscribe {
    background-color: #2c3e50; /* Ciemny granat nocy w górach */
    color: #ffffff;
}

#reviews {
    background-color: #ffffff; /* Czysty śnieg */
    color: #2c3e50;
    border: 1px solid #dcdcdc;
}

#products {
    background-color: #d4e4d4; /* Zielonkawy odcień lasów sosnowych */
    color: #2c3e50;
}

#contact {
    background-color: #4a7c9e; /* Głęboki błękit nieba */
    color: #ffffff;
}

footer {
    background-color: #1a2a3a; /* Ciemny grafit skał */
    color: #bdc3c7;
    text-align: center;
    padding: 30px;
    border-radius: 12px 12px 0 0;
    margin-top: 40px;
}

/* Przyciski i linki */
.btn {
    display: inline-block;
    background-color: #e74c3c; /* Akcent czerwony – jak ratrak lub ciepło kominka */
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Formularz subskrypcji */
#subscribe form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 30px auto 0;
}

#subscribe input[type="email"] {
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

#subscribe button {
    align-self: center;
}

/* Listy specjalistów, produktów i opinii */
.specialists-list,
.products-list {
    list-style: none;
    font-size: 1.2rem;
}

.specialists-list li,
.products-list li {
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.specialists-list li:last-child,
.products-list li:last-child {
    border-bottom: none;
}

.review {
    background-color: rgba(255,255,255,0.7);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

/* Wyróżnienie artykułu */
#products h2:nth-of-type(2) {
    margin-top: 60px;
    color: #e74c3c;
    font-size: 2.2rem;
}

#products ol {
    padding-left: 30px;
    font-size: 1.1rem;
}

#products ol li {
    margin-bottom: 15px;
}

/* Formularz opinii */
textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #bdc3c7;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Mapa */
iframe {
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsywność – mobilna wersja */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .section {
        padding: 40px 20px;
        margin-bottom: 20px;
    }

    #offer {
        min-height: 400px;
        padding: 40px 20px;
    }

    #offer h1 {
        font-size: 2.4rem;
    }

    #offer p {
        font-size: 1.1rem;
    }

    #subscribe form {
        max-width: 100%;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    #products h2:nth-of-type(2) {
        font-size: 1.8rem;
    }
}
