/* Plik: style.css */

:root {
    --primary-color: #0d2c4f;
    --secondary-color: #e55b86;
    --text-color: #3C3C3C;
    --background-light: #F8F9FA;
    --white-color: #fff;
    --yellow-color: #fcc900;
    --blue-button: #507ff2;
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Nunito', sans-serif;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container { 
    max-width: 1140px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
}

h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary-color);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
}

h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary-color);
}

section { 
    padding: 100px 0; 
    position: relative;
    overflow: hidden;
}

/* --- Top Banner --- */
.top-banner {
    background-color: var(--yellow-color);
    text-align: center;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- Header --- */
.main-header {
    background-color: var(--white-color);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo-header img { height: 100px; }
.main-nav ul { list-style: none; display: flex; gap: 35px; }
.main-nav a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--blue-button); }

/* --- Hero Section --- */
.hero {
    padding: 60px 0;
    text-align: center;
    background: url('https://kasiakucwaj.pl/ArtLab/images/1cc.png') no-repeat center center/cover;
}
.hero-logo { max-width: 480px; margin: 0 auto; }
.hero-subtitle { font-size: 1.5rem; font-weight: 500; margin: 30px 0 40px; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 50px; align-items: center; }
.hero-benefit { font-size: 1.1rem; font-weight: 500; }
.hero-benefit img { 
    display: block; 
    margin: 0 auto 15px;
    height: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--blue-button);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    padding: 15px 50px;
    border-radius: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* --- Why Section --- */
#why-us { background-color: #f0f3f9; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.feature-card { 
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}
.feature-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; }

.card-image-top {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.img-1 { background-image: url('https://artlab53.pl/images/foto_1.jpeg'); }
.img-2 { background-image: url('https://artlab53.pl/images/foto_2.jpeg'); }
.img-3 { background-image: url('https://artlab53.pl/images/foto_3.jpeg'); }

.card-content {
    padding: 35px;
    text-align: center;
}

.color-green { color: #3FBE91; }
.color-orange { color: #FF622B; }
.color-blue { color: #4B76FF; }

/* Animation Trigger */
[data-animate] { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animated { opacity: 1 !important; transform: none !important; }

/* --- Dekoracyjny pasek-separator --- */
.section-divider {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Program Section --- */
#program { background-color: var(--white-color); }
.program-description { text-align: center; max-width: 800px; margin: -30px auto 50px; font-size: 1.1rem; }
.program-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}
.program-list-wrapper ul { list-style: none; padding: 0; margin: 0; }
.program-list-wrapper li { position: relative; padding-left: 35px; margin-bottom: 15px; font-size: 1rem; }
.program-list-wrapper li::before {
    content: ''; position: absolute; left: 0; top: 3px; width: 22px; height: 22px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3ccircle cx='12' cy='12' r='11' fill='%23E55B86'/%3e%3cpath d='M7 13l3 3 7-7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-size: contain;
}

/* --- About Instructor Section --- */
#about .container { max-width: 800px; text-align: center; }
#about h3 { font-size: 1.5rem; margin-bottom: 10px; }
.quote-wrapper { background-color: #fff4d4; padding: 40px; margin-top: 30px; border-radius: 10px; transform: rotate(-1.5deg); position: relative; border: 2px solid var(--primary-color); box-shadow: 6px 6px 0 var(--primary-color); }
.quote-wrapper::before { content: ''; position: absolute; top: -15px; left: 30px; width: 80px; height: 30px; background-color: #f9d42399; transform: rotate(-15deg); }
.quote { font-style: italic; font-size: 1.1rem; }

/* Plik: style.css - ZASTĄP CAŁĄ SEKCJĘ #details */

/* --- Details Section (Cele i tematyka) --- */
#details {
    background-color: #f0f3f9;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 950px;
    margin: 0 auto;
}

.detail-block {
    background-color: var(--white-color);
    padding: 35px;
    border-radius: 20px; /* ZMIANA: Większe zaokrąglenie */
    border: none; /* ZMIANA: Usunięcie ramki */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); /* ZMIANA: Subtelny cień */
    text-align: left;
}

.detail-block h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.detail-block ul {
    list-style: none;
    padding: 0;
}

.detail-block li {
    padding-left: 25px; /* ZMIANA: Miejsce na nowy punktor */
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #666; /* ZMIANA: Rozjaśniony tekst dla lepszego kontrastu */
}

/* ZMIANA: Nowy, kolorowy punktor */
.detail-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #4B76FF; /* Kolor podany przez Ciebie */
    border-radius: 50%; /* Tworzy kółko */
}

.details-summary {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Info Section --- */
#info { 
    background-color: var(--white-color); 
}
.info-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px; 
}
.info-item { 
    background: var(--white-color); 
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: left;
}
.info-item h3 { 
    color: var(--secondary-color); 
    font-size: 1.5rem; 
    margin-bottom: 15px;
    font-weight: 900;
}
.info-item p {
    line-height: 1.7;
    font-size: 1rem;
}

/* --- Bottom CTA Section --- */
#cta-lesson {
    background-color: #f0f3f9;
    padding: 10px 0;
    text-align: center;
}
.trial-lesson-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: #3FBE91;
}

/* --- CTA & Form Section --- */
#cta {
    background-color: var(--yellow-color);
}
#cta h2 { 
    color: var(--primary-color);
}
#cta p { 
    color: var(--primary-color);
}
.form-wrapper { 
    background-color: var(--white-color);
    color: var(--text-color);
    max-width: 600px; 
    margin: 40px auto 0; 
    padding: 40px; 
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    border: 1px solid #e0e0e0;
    position: relative;
}
.form-wrapper::after {
    content: none;
}
.form-wrapper h3 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--primary-color);
}
.form-group { 
    margin-bottom: 20px; 
    text-align: left;
}
.form-group label { 
    display: block; 
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
}
.form-group input { 
    width: 100%; 
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: var(--font-body); 
    font-size: 1rem; 
    transition: all 0.3s ease; 
}
.form-group input:focus { 
    border-color: var(--blue-button);
    box-shadow: 0 0 0 3px rgba(80, 127, 242, 0.2);
    outline: none; 
}
#cta .btn { 
    width: 100%; 
    padding-top: 16px;
    padding-bottom: 16px;
}
.form-wrapper p {
    color: #555;
    text-align: center;
    margin-top: 20px;
}
.form-wrapper p a {
    color: var(--secondary-color);
    font-weight: bold;
}

/* --- Bottom CTA Section --- */
#cta-bottom {
    background-color: var(--yellow-color);
    padding: 60px 0;
    text-align: center;
}

/* --- Footer --- */
.footer { background: var(--primary-color); color: var(--white-color); text-align: center; padding: 40px 0; }
.footer a { color: var(--yellow-color); }

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .hero-benefits { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr; gap: 25px; }
}
@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    .main-header .container { flex-direction: column; gap: 15px; }
    .main-nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .hero-logo { max-width: 90%; }
    .program-list-wrapper {
        grid-template-columns: 1fr; /* POPRAWKA */
    }
}