/* ==============================
   SmartTrade Akademia – Styl "Paryż"
   ==============================
   Motyw: elegancja, złoto, granat, beż i biel.
   Styl inspirowany francuskim luksusem i klasą.
   ============================== */

/* Reset i podstawowe ustawienia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Didot", "Baskerville", "Georgia", serif;
    background-color: #fdfcf9;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==============================
   Kolory przewodnie
   ==============================
   Granat: #1b1f3b
   Złoty: #c8a951
   Beż: #f6f1e7
   Bordowy akcent: #7a1f3d
   Biały: #ffffff
   ============================== */

h1, h2, h3 {
    font-family: "Didot", "Baskerville", serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    color: #1b1f3b;
    font-size: 2.2rem;
}

h2 {
    color: #7a1f3d;
    margin-bottom: 1rem;
}

h3 {
    color: #1b1f3b;
}

/* ==============================
   Sekcje – kontrastowe kolory tła
   ============================== */

section {
    padding: 60px 20px;
    text-align: center;
}

#oferta {
    background-color: #f6f1e7;
    color: #1b1f3b;
}

#specjalisci {
    background-color: #1b1f3b;
    color: #f6f1e7;
}

#formularz {
    background-color: #c8a951;
    color: #1b1f3b;
}

#opinie {
    background-color: #fdfcf9;
    color: #1b1f3b;
}

#produkty {
    background-color: #7a1f3d;
    color: #f6f1e7;
}

#dzialalnosc {
    background-color: #f6f1e7;
    color: #1b1f3b;
}

#kontakt {
    background-color: #1b1f3b;
    color: #f6f1e7;
}

/* ==============================
   Linki i przyciski
   ============================== */

a, button {
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease all;
}

a.btn, button {
    background-color: #c8a951;
    color: #1b1f3b;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
}

a.btn:hover, button:hover {
    background-color: #1b1f3b;
    color: #f6f1e7;
}

/* ==============================
   Formularze
   ============================== */

form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input[type="email"], textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: "Georgia", serif;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==============================
   Listy i artykuły
   ============================== */

ul {
    list-style: none;
    margin-top: 1rem;
    line-height: 1.8;
}

article {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    text-align: justify;
}

/* ==============================
   Mapa i kontakt
   ============================== */

iframe {
    border: none;
    border-radius: 12px;
    margin-top: 1rem;
}

/* ==============================
   Stopka
   ============================== */

footer {
    background-color: #7a1f3d;
    color: #f6f1e7;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ==============================
   Efekty i animacje subtelne
   ============================== */

section {
    position: relative;
    transition: background-color 0.4s ease, color 0.4s ease;
}

section:hover {
    filter: brightness(1.03);
}

a.btn, button {
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* ==============================
   Wersja mobilna
   ============================== */

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }

    section {
        padding: 40px 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    form {
        width: 100%;
    }

    a.btn, button {
        width: 100%;
        padding: 14px;
    }

    iframe {
        height: 300px;
    }

    ul {
        text-align: left;
        padding-left: 10px;
    }

    footer {
        font-size: 0.8rem;
    }
}

/* ==============================
   Drobne akcenty estetyczne
   ============================== */

section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #c8a951;
    margin: 10px auto 20px auto;
    border-radius: 2px;
}

#oferta a.btn {
    margin-top: 20px;
}

#specjalisci li, #opinie li {
    margin: 8px 0;
    font-style: italic;
}

#produkty ul li {
    background-color: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
    padding: 10px;
    border-radius: 8px;
}

#zostaw-opinie {
    background-color: #c8a951;
    color: #1b1f3b;
    padding: 50px 20px;
}

#zostaw-opinie textarea {
    background-color: #fff8e7;
}
