/* Zmienne CSS - Paleta Pastelowa z poprawionym kontrastem */
:root {
    --primary-color: #FFB5A7; /* Pastelowy róż/brzoskwinia */
    --primary-hover: #ff9b8a;
    --secondary-color: #A9DEF9; /* Pastelowy błękit */
    --accent-color: #E4C1F9; /* Pastelowy fiolet */
    
    --text-dark: #2B2D42;
    --text-light: #4A5568; /* PODBITY KONTRAST */
    --bg-light: #FAFAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #1E1E2F;
    
    --shadow-soft: 0 15px 35px rgba(43, 45, 66, 0.05);
    --shadow-hover: 0 20px 40px rgba(255, 181, 167, 0.25);
    --border-radius: 16px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animacje */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(255, 181, 167, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 181, 167, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 181, 167, 0); }
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.slide-in-bottom {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Nawigacja */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

.logo i {
    color: var(--secondary-color);
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links > li > a:hover {
    color: var(--primary-color);
}

/* --- Sekcja Dropdown --- */
.nav-links .dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 11px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 24px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-hover);
    padding-left: 28px;
}

/* Desktop Hover Trigger */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(5px);
    }
    .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--text-dark);
    height: 3px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }


/* =========================================
   STYLE STRONY GŁÓWNEJ (index.html)
   ========================================= */

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at top, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%;
    width: 400px; height: 400px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; right: -10%;
    width: 300px; height: 300px;
    background: var(--secondary-color);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.highlight-pink {
    position: relative;
    z-index: 1;
}
.highlight-pink::after {
    content: ''; position: absolute; left: -5%; right: -5%; bottom: 10%;
    height: 30%; background-color: var(--primary-color); z-index: -1;
    border-radius: 4px; opacity: 0.6;
}

.highlight-blue {
    position: relative;
    z-index: 1;
}
.highlight-blue::after {
    content: ''; position: absolute; left: -5%; right: -5%; bottom: 10%;
    height: 30%; background-color: var(--secondary-color); z-index: -1;
    border-radius: 4px; opacity: 0.6;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Features Section */
.features { padding: 80px 0; text-align: center; }
.features-header { margin-bottom: 60px; }
.features-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.features-header p { color: var(--text-light); font-size: 1.1rem; }

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; margin-bottom: 80px;
}

.feature-card {
    background: var(--bg-white); padding: 30px;
    border-radius: var(--border-radius); box-shadow: var(--shadow-soft);
}

.feature-img-wrapper {
    border-radius: 12px; overflow: hidden; margin-bottom: 25px; height: 200px;
}
.feature-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
}
.feature-card:hover .feature-img-wrapper img { transform: scale(1.05); }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 35px 20px; border-radius: 20px; color: var(--text-dark);
    font-size: 1.4rem; box-shadow: 0 15px 30px rgba(169, 222, 249, 0.3);
}
.promo-banner strong {
    color: #1E1E2F; font-weight: 800; background: #fff; padding: 5px 15px;
    border-radius: 30px; margin: 0 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Info Section */
.info-section { padding: 100px 0; background-color: var(--bg-white); text-align: center; }
.info-section h2 { font-size: 2.5rem; margin-bottom: 25px; line-height: 1.3; }
.info-desc { max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: var(--text-light); }

/* Testimonial Section */
.testimonial-section { padding: 100px 0; background-color: var(--bg-light); }
.testimonial-header { text-align: center; margin-bottom: 60px; }
.testimonial-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.testimonial-header p { color: var(--text-light); font-size: 1.1rem; }

.testimonial-content {
    display: flex; align-items: center; gap: 60px; background: var(--bg-white);
    padding: 40px; border-radius: 24px; box-shadow: var(--shadow-soft);
}
.testimonial-image { flex: 1; position: relative; border-radius: 20px; overflow: hidden; }
.testimonial-image img { width: 100%; height: 350px; object-fit: cover; display: block; }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: rgba(255,255,255,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    color: var(--primary-color); cursor: pointer; transition: var(--transition);
}
.testimonial-image:hover .play-btn {
    background: var(--primary-color); color: #fff; transform: translate(-50%, -50%) scale(1.1);
}
.testimonial-text { flex: 1; }
.testimonial-text blockquote {
    font-size: 1.3rem; font-weight: 500; font-style: italic; line-height: 1.6;
    margin-bottom: 30px; position: relative;
}
.testimonial-text blockquote::before {
    content: '"'; font-size: 6rem; color: var(--secondary-color); position: absolute;
    top: -30px; left: -20px; opacity: 0.3; font-family: serif;
}
.author strong { display: block; font-size: 1.1rem; color: var(--text-dark); }
.author span { font-size: 0.9rem; color: var(--text-light); }

/* CTA Section */
.cta-section {
    padding: 100px 0; background-color: var(--bg-dark); color: #fff;
    text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; width: 300px; height: 300px;
    background: var(--primary-color); filter: blur(100px); border-radius: 50%;
    top: -50px; left: -50px; opacity: 0.2;
}
.cta-subtitle {
    font-size: 0.9rem; font-weight: 700; letter-spacing: 2px;
    color: var(--secondary-color); text-transform: uppercase; display: block; margin-bottom: 20px;
}
.cta-section h2 { font-size: 3rem; margin-bottom: 25px; color: #fff; }
.cta-section p { font-size: 1.1rem; margin-bottom: 40px; color: rgba(255,255,255,0.7); }
.btn {
    display: inline-block; padding: 15px 40px; border-radius: 30px;
    font-weight: 600; font-size: 1.1rem; cursor: pointer;
}
.btn-primary {
    background-color: var(--primary-color); color: #fff;
    box-shadow: 0 10px 20px rgba(255, 181, 167, 0.3);
}
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-3px); }
.pulse-btn { animation: pulse-shadow 2s infinite; }

/* Help Section */
.help-section { padding: 100px 0; text-align: center; background: var(--bg-light); }
.help-section h2 { font-size: 2.5rem; margin-bottom: 60px; }
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.help-card {
    background: var(--bg-white); padding: 40px 30px; border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft); text-align: left; border-top: 4px solid transparent;
    transition: var(--transition);
}
.help-card:hover { border-top-color: var(--secondary-color); }
.help-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.help-card p { color: var(--text-light); margin-bottom: 25px; min-height: 70px; }
.link-more {
    color: #F07167; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center;
}
.link-more:hover { color: var(--primary-hover); text-decoration: underline; }

/* Contact Section */
.contact-section { padding: 80px 0; text-align: center; background: var(--bg-white); }
.contact-section h2 { font-size: 2.2rem; margin-bottom: 20px; }
.contact-section p { color: var(--text-light); margin-bottom: 40px; }
.contact-section p span { color: var(--primary-color); font-weight: 600; }
.contact-details { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.contact-link {
    font-size: 1.8rem; font-weight: 700; color: var(--text-dark); text-decoration: underline;
    text-decoration-color: var(--accent-color); text-decoration-thickness: 4px; text-underline-offset: 4px;
}
.contact-link:hover { color: var(--primary-color); text-decoration-color: var(--primary-color); }

/* Footer */
.footer { background-color: var(--bg-dark); color: rgba(255,255,255,0.6); padding: 80px 0 30px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.brand-col p { margin: 20px 0; line-height: 1.8; }
.footer-logo { font-size: 20px; color: #fff; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.footer-logo i { color: var(--secondary-color); }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 35px; height: 35px; background: rgba(255,255,255,0.1); display: flex;
    align-items: center; justify-content: center; border-radius: 50%; color: #fff;
}
.social-links a:hover { background: var(--primary-color); transform: translateY(-3px); }
.footer h4 { color: #fff; margin-bottom: 25px; font-size: 1.1rem; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; gap: 20px;
}
.footer-bottom-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.status { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; background: #00E676; border-radius: 50%; display: inline-block; }


/* =========================================
   STYLE NOWEJ PODSTRONY (opis.html)
   ========================================= */

.page-content {
    padding: 80px 0 100px;
    background-color: var(--bg-white);
}

.text-block {
    margin-bottom: 40px;
    /* Ustawienie szerokości dokładnie na 1200px */
    max-width: 1200px;
    width: 100%;
}

.text-block h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.custom-list {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.custom-list li::before {
    content: '•';
    color: #E63946; /* Intensywny czerwony punkt z projektu */
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -12px;
}

/* Galeria trzech obrazów */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.image-gallery img {
    width: 100%;
    height: 350px; 
    object-fit: cover;
}

/* Karty informacyjne (Szare karty z przyciskiem) */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background-color: #F4F5F7; /* Jasnoszare tło z mockupu */
    border-radius: 16px;
    padding: 40px 30px 90px 30px; /* Dodatkowe miejsce na dole na przycisk */
    position: relative;
    transition: var(--transition);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Przycisk ze strzałką wewnątrz karty */
.card-arrow-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #E2E8F0; /* Tło przycisku nieznacznie ciemniejsze od tła karty */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 1.1rem;
}

.card-arrow-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

/* Media Queries - Responsywność */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .testimonial-content { flex-direction: column; }
    .testimonial-image { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    /* Podstrona */
    .image-gallery { grid-template-columns: repeat(2, 1fr); }
    .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle-label { display: block; }
    
    .nav-links {
        position: absolute; 
        top: 100%; left: 0; right: 0; 
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column; 
        padding: 20px 20px; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); 
        transition: clip-path 0.4s ease-in-out;
        align-items: center; 
        display: flex;
    }
    
    .nav-links > li {
        width: 100%;
        text-align: center;
        margin: 2px 0; 
    }
    
    .dropdown-menu li {
        margin: 2px 0 !important;
    }
    
    .nav-links a {
        display: inline-block;
        width: auto;
    }
    
    .nav-toggle:checked ~ .nav-links { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }
    
    /* Zmiany mobilne dla Dropdown */
    .dropdown-menu {
        position: static; 
        transform: none; 
        box-shadow: none; 
        max-height: 0; 
        overflow: hidden;
        opacity: 0; 
        visibility: hidden; 
        padding: 0; 
        transition: max-height 0.3s ease, opacity 0.3s ease;
        background: transparent; 
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu li a {
        text-align: center;
        padding: 6px 0; 
        font-size: 12px; 
    }
    
    .dropdown-menu li a:hover {
        padding-left: 0;
        color: var(--primary-hover);
    }
    
    .dropdown.active .dropdown-menu { 
        max-height: 400px; 
        opacity: 1; 
        visibility: visible; 
        padding: 5px 0; 
    }
    
    .dropdown.active .dropdown-toggle i { transform: rotate(180deg); }
    
    .hero { padding: 80px 0 60px; }
    .hero h1 { font-size: 2.5rem; }
    .features-grid, .help-grid { grid-template-columns: 1fr; }
    .promo-banner { font-size: 1.1rem; }
    .cta-section h2 { font-size: 2rem; }
    .contact-link { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    
    /* Podstrona - Mobile */
    .image-gallery { grid-template-columns: 1fr; gap: 15px; margin: 40px 0; }
    .info-cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .text-block h2 { font-size: 1.8rem; }
    .page-content { padding: 50px 0; }
}
