/*
Theme Name: Karolina Tiszler Theme
Author: Twój Gabinet
Description: Szablon dla gabinetu psychologicznego
Version: 1.0
*/

<style>
        :root {
            --primary-green: #143628; 
            --accent-pink: #F28482;    
            --soft-purple: #84A59D;    
            --bg-cream: #FAF9F6;       
            --text-dark: #2D2D2D;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Montserrat', sans-serif; 
            line-height: 1.7; 
            color: var(--text-dark); 
            background-color: var(--bg-cream);
            scroll-behavior: smooth;
        }
        h1, h2, h3 { font-family: 'Playfair Display', serif; }

        /* NAWIGACJA */
        nav {
            position: fixed;
            top: 0; width: 100%;
            background: rgba(255, 255, 255, 0.98);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .logo { font-weight: 800; font-size: 1.2rem; color: var(--primary-green); text-decoration: none; letter-spacing: 1px; }
        .nav-links a { text-decoration: none; color: var(--text-dark); margin-left: 25px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; transition: 0.3s; }
        .nav-links a:hover { color: var(--accent-pink); }

        /* HERO */
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(20, 54, 40, 0.2), rgba(242, 132, 130, 0.1)), url('gabinet1.jpg');
            background-size: cover;
            background-position: center;
            padding: 0 20px;
        }
        .hero-content { max-width: 900px; background: rgba(255,255,255,0.9); padding: 50px; border-radius: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .hero h1 { font-size: 3rem; margin-bottom: 20px; color: var(--primary-green); line-height: 1.2; }
        .btn { 
            display: inline-block; 
            padding: 18px 40px; 
            background: var(--primary-green); 
            color: white; 
            text-decoration: none; 
            border-radius: 50px; 
            font-weight: 600;
            transition: 0.4s;
            margin-top: 25px;
            border: none;
        }
        .btn:hover { background: var(--accent-pink); transform: translateY(-3px); }

        /* SEKCJE OGÓLNE */
        section { padding: 100px 10%; }
        .section-title { text-align: center; margin-bottom: 60px; font-size: 2.8rem; color: var(--primary-green); position: relative; }
        .section-title::after { content: ''; width: 60px; height: 4px; background: var(--accent-pink); position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }

        /* O MNIE & FORMY POMOCY */
        .about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
        .about-img img { width: 100%; border-radius: 40px; box-shadow: -20px 20px 0 var(--soft-purple); }
        .about-text h3 { color: var(--primary-green); margin: 30px 0 15px; font-size: 1.8rem; border-bottom: 1px solid var(--accent-pink); display: inline-block; }
        
        .experience-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
        .tag { background: var(--primary-green); color: white; padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }

        /* FAQ */
        .faq-container { max-width: 900px; margin: 0 auto; }
        .faq-item { background: white; margin-bottom: 20px; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid #eee; }
        .faq-question { padding: 25px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--primary-green); font-size: 1.1rem; }
        .faq-answer { padding: 0 25px 25px; display: none; color: #555; border-top: 1px solid #fafafa; }
        .faq-item.active .faq-answer { display: block; }
        .faq-item.active .faq-question { background: #fdfdfd; color: var(--accent-pink); }

        /* BLOG */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .blog-card { background: white; border-radius: 30px; overflow: hidden; transition: 0.3s; border: 1px solid #eee; }
        .blog-card:hover { transform: translateY(-10px); }
        .blog-card img { width: 100%; height: 220px; object-fit: cover; }
        .blog-card-content { padding: 30px; }
        .blog-card h4 { margin-bottom: 15px; color: var(--primary-green); font-size: 1.4rem; }
        .blog-link { color: var(--accent-pink); text-decoration: none; font-weight: 600; }

        /* KONTAKT */
        #kontakt { background: #fff; }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        .contact-info h3 { margin-bottom: 25px; color: var(--primary-green); }
        .contact-item { margin-bottom: 20px; font-size: 1.1rem; display: flex; align-items: center; }
        .contact-item span { color: var(--accent-pink); margin-right: 15px; font-weight: bold; }
        
        .map-wrapper { margin-top: 30px; border-radius: 30px; overflow: hidden; height: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .contact-form { background: var(--bg-cream); padding: 40px; border-radius: 40px; }
        .contact-form input, .contact-form textarea { width: 100%; padding: 18px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 15px; font-family: inherit; font-size: 1rem; }
        
        /* FOOTER */
        footer { background: var(--primary-green); color: white; padding: 80px 10% 40px; text-align: center; }
        .rodo-box { max-width: 850px; margin: 40px auto 0; font-size: 0.8rem; opacity: 0.7; line-height: 1.5; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }

        /* MOBILE */
        @media (max-width: 992px) {
            .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
            section { padding: 80px 5%; }
            .nav-links { display: none; }
        }
    </style>