/* Beauty Expert Academy — nowy czysty styl
   Kolorystyka: rose/burgundy + ciepłe beże
*/
:root {
    --accent: #c92042;
    --accent-dark: #a01835;
    --accent-soft: #f5e6ea;
    --text: #2a2a2a;
    --text-muted: #666;
    --bg: #ffffff;
    --bg-soft: #fdf7f5;
    --bg-dark: #1a1a1a;
    --border: #e8dcde;
    --success: #7fa968;
    --max-width: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: 2.4rem; margin-bottom: 1rem; line-height: 1.15; }
h2 { font-size: 1.9rem; margin: 2.2rem 0 1rem; color: var(--accent-dark); }
h3 { font-size: 1.35rem; margin: 1.5rem 0 0.6rem; color: var(--accent); }
h4 { font-size: 1.1rem; margin: 1rem 0 0.4rem; }

p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.4rem; }
li { margin-bottom: 0.4rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.logo {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.02em;
}
.logo span { color: var(--text); font-weight: 400; font-style: italic; }

nav.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin: 0;
}
nav.main-nav li { margin: 0; }
nav.main-nav a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.15s;
}
nav.main-nav a:hover {
    background: var(--accent-soft);
    color: var(--accent-dark);
    text-decoration: none;
}
nav.main-nav a.active {
    background: var(--accent);
    color: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #fbeaef 0%, #f5d7dd 100%);
    padding: 4rem 0 4.5rem;
    text-align: center;
}
.hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.hero .eyebrow {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero h1 { font-size: 3rem; color: var(--text); }
.hero h1 span { color: var(--accent-dark); }
.hero p.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 1rem auto 1.8rem;
    max-width: 700px;
}
.hero-image {
    margin-top: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(145, 60, 80, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.92rem;
    transition: background 0.15s, transform 0.15s;
    border: 2px solid var(--accent);
}
.btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.btn.btn-outline {
    background: transparent;
    color: var(--accent-dark);
}
.btn.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* Sections */
main { padding: 3rem 0 4rem; }
section { margin-bottom: 2.5rem; }

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.section-heading h2 { margin-top: 0; }
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* Service grid on homepage */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(145, 60, 80, 0.12);
}
.service-card h3 {
    margin-top: 0.8rem;
    margin-bottom: 0.6rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.8rem;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: Georgia, serif;
}

/* Content article */
.content-article {
    max-width: 860px;
    margin: 0 auto;
}
.content-article h1 { margin-bottom: 0.4rem; }
.article-intro {
    color: var(--text-muted);
    font-size: 1.08rem;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    margin: 1.5rem 0 2rem;
    font-style: italic;
}

.highlight-box {
    background: var(--bg-soft);
    border-left: 4px solid var(--accent);
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
}
.highlight-box strong { color: var(--accent-dark); }

.price-box {
    background: var(--accent);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    margin: 1.2rem 0;
    font-weight: 500;
}
.price-box strong {
    display: block;
    font-size: 1.8rem;
    font-family: Georgia, serif;
    margin-bottom: 0.2rem;
}
.price-old { text-decoration: line-through; opacity: 0.7; font-size: 1rem; margin-left: 0.5rem; }

/* Trust bar */
.trust-bar {
    background: var(--bg-dark);
    color: #fff;
    padding: 2.2rem 0;
    text-align: center;
}
.trust-bar h2 { color: #fff; margin: 0 0 0.4rem; font-size: 1.6rem; }
.trust-bar p { margin: 0; color: #ccc; font-size: 1.05rem; }
.trust-bar .trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    font-family: Georgia, serif;
}
.trust-bar .badge-item strong {
    display: block;
    font-size: 2rem;
    color: var(--accent);
}
.trust-bar .badge-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #bbb;
}

/* Course curriculum (kurs-stylizacji-rzes) */
.curriculum {
    background: var(--bg-soft);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}
.curriculum h3 {
    color: var(--accent-dark);
    margin-top: 0;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--accent);
}
.curriculum ol { margin-left: 1.6rem; }
.curriculum li { margin-bottom: 0.3rem; color: var(--text); }
.curriculum-day {
    margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.contact-card {
    background: var(--bg-soft);
    padding: 1.8rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.contact-card h3 { margin-top: 0; }

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #cdcdcd;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
}
.site-footer h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-family: Georgia, serif;
}
.site-footer p, .site-footer li { font-size: 0.93rem; color: #b0b0b0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: #e0c9cd; }
.site-footer a:hover { color: #fff; }
.site-footer .logo { color: #fff; }
.site-footer .logo span { color: #e14a68; }

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.88rem;
    color: #888;
}
.footer-bottom a { color: #e0c9cd; }

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 2.5rem 0 3rem; }
    .hero h1 { font-size: 2rem; }
    .hero p.lead { font-size: 1.05rem; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    .site-header .container { flex-direction: column; align-items: flex-start; }
    nav.main-nav ul { width: 100%; }
    .contact-grid { grid-template-columns: 1fr; }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .trust-bar .trust-badges { gap: 1.4rem; }
}
