/* Importowanie czcionek Google Fonts - styl paryski */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    max-width: 1090px;
    margin: 0 auto;
    background-color: #f9f7f4;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.container {
    padding: 4rem 2rem;
}

/* Blok 1: Hero Section - Ciemny elegancki styl paryski */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #f9f7f4;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
}

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

.hero-section h1 {
    color: #f9f7f4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #e8dcc4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p {
    color: #d4c5a9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Stylizacja przycisku CTA w hero */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* Blok Specjalistów - Jasny kremowy */
.specialists-section {
    background-color: #f9f7f4;
    color: #2c2c2c;
}

.specialists-section h2 {
    color: #1a1a2e;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialist-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #d4af37;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.specialist-card h3 {
    color: #1a1a2e;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.specialist-title {
    color: #d4af37;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.specialist-card p:last-child {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Blok Opinii - Ciemny granatowy */
.reviews-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: #f9f7f4;
}

.reviews-section h2 {
    color: #f9f7f4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.02);
}

.review-text {
    font-style: italic;
    color: #e8dcc4;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.review-author {
    color: #d4af37;
    font-weight: 700;
    text-align: right;
    font-size: 0.95rem;
}

/* Blok Produktów - Elegancki beżowy */
.products-section {
    background: linear-gradient(to bottom, #e8dcc4 0%, #d4c5a9 100%);
    color: #1a1a1a;
}

.products-section h2 {
    color: #1a1a2e;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #d4af37;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.product-card h3 {
    color: #16213e;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e8dcc4;
}

/* Wyróżnienie artykułu */
.expert-article {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
    margin-top: 4rem;
    border-left: 6px solid #16213e;
    position: relative;
}

.expert-article::before {
    content: '✦';
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 2rem;
    color: #d4af37;
    background: white;
    padding: 0 10px;
}

.expert-article h2 {
    color: #16213e;
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.expert-article p {
    color: #2c2c2c;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Blok Media - Jasny szary */
.media-section {
    background-color: #f4f4f4;
    color: #2c2c2c;
}

.media-section h2 {
    color: #1a1a2e;
}

.media-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
    color: #3a3a3a;
}

/* Blok Newsletter - Złoty akcent */
.newsletter-section {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    text-align: center;
}

.newsletter-section h2 {
    color: #1a1a2e;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #1a1a2e;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #16213e;
    box-shadow: 0 0 0 3px rgba(22, 33, 62, 0.2);
}

.submit-button {
    padding: 1rem 3rem;
    background: #1a1a2e;
    color: #f9f7f4;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.submit-button:hover {
    background: #16213e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.4);
}

/* Blok Kontakt - Jasny z mapą */
.contact-section {
    background-color: #ffffff;
    color: #2c2c2c;
}

.contact-section h2 {
    color: #1a1a2e;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #3a3a3a;
}

.contact-info strong {
    color: #1a1a2e;
    font-weight: 700;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    margin-top: 2rem;
}

.map-container iframe {
    display: block;
}

/* Footer - Ciemny elegancki */
.footer-section {
    background: #1a1a2e;
    color: #d4c5a9;
    text-align: center;
    padding: 2rem;
}

.footer-section p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Responsywność - wersja mobilna */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 2.5rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-section {
        min-height: 520px;
        padding: 2rem 1rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .specialists-grid,
    .reviews-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .specialist-card,
    .review-card,
    .product-card {
        padding: 1.5rem;
    }

    .product-card h3 {
        min-height: auto;
    }

    .product-description {
        min-height: auto;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .expert-article {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .expert-article h2 {
        font-size: 1.5rem;
    }

    .expert-article p {
        font-size: 1rem;
        text-align: left;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        min-width: 100%;
    }

    .submit-button {
        width: 100%;
        padding: 1rem 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 470px;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .expert-article {
        padding: 1.5rem 1rem;
    }

    .product-price {
        font-size: 1.4rem;
    }
}

/* Dodatkowe style dla płynności */
@media (min-width: 769px) and (max-width: 1090px) {
    .container {
        padding: 4rem 3rem;
    }

    .specialists-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Akcent kolorystyczny na linki */
a {
    color: inherit;
}

a:not(.cta-button):not(.submit-button):hover {
    color: #d4af37;
    transition: color 0.3s ease;
}
