/* Import Google Fonts - Warsaw-inspired elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    max-width: 1180px;
    margin: 0 auto;
    background: #f8f9fa;
}

.container {
    padding: 0 20px;
    max-width: 100%;
}

/* Warsaw color palette inspired by the city's architecture and royal heritage */
:root {
    --primary-burgundy: #8b1538;
    --royal-gold: #d4af37;
    --warsaw-red: #dc2626;
    --noble-navy: #1e3a8a;
    --elegant-gray: #374151;
    --light-stone: #f5f5f0;
    --warm-cream: #fefdf8;
    --shadow-color: rgba(139, 21, 56, 0.1);
}

/* Hero Section - Offer Block */
.hero-section {
    background: linear-gradient(135deg,
        var(--primary-burgundy) 0%,
        var(--warsaw-red) 30%,
        var(--royal-gold) 70%,
        #f59e0b 100%);
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--warm-cream);
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* CTA Button in Hero */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--royal-gold), #f59e0b);
    color: var(--primary-burgundy);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #f59e0b, var(--royal-gold));
    border-color: white;
}

/* Section spacing and backgrounds */
section {
    padding: 80px 0;
}

/* Reviews Section - Light background */
.reviews-section {
    background: var(--warm-cream);
    border-top: 4px solid var(--royal-gold);
}

.reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    text-align: center;
    margin-bottom: 3rem;
}

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

.review-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border-left: 5px solid var(--royal-gold);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.review-item h3 {
    color: var(--primary-burgundy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.rating {
    color: var(--royal-gold);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Specialists Section - Navy background */
.specialists-section {
    background: linear-gradient(135deg, var(--noble-navy), #1e40af);
    color: white;
}

.specialists-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-gold);
}

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

.specialist-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.specialist-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.specialist-item h3 {
    color: var(--royal-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.specialist-item strong {
    color: var(--warm-cream);
}

/* Subscribe Section - Gradient background */
.subscribe-section {
    background: linear-gradient(45deg, var(--elegant-gray), var(--primary-burgundy));
    color: white;
    text-align: center;
}

.subscribe-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--royal-gold);
}

.subscribe-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.subscribe-form button {
    background: var(--royal-gold);
    color: var(--primary-burgundy);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.subscribe-form button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Products Section - Stone background with article highlight */
.products-section {
    background: var(--light-stone);
    border-top: 4px solid var(--primary-burgundy);
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-color);
}

.product-item.featured {
    border-color: var(--royal-gold);
    position: relative;
    transform: scale(1.05);
}

.product-item.featured::before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--royal-gold);
    color: var(--primary-burgundy);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-burgundy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warsaw-red);
    margin-bottom: 1.5rem;
}

.product-item ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.product-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.product-item li::before {
    content: '✓';
    color: var(--royal-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Article Section - Special highlight */
.article-section {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--warsaw-red));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 15px 40px var(--shadow-color);
}

.article-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--elegant-gray);
    color: white;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--royal-gold);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.address h3 {
    color: var(--royal-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.address p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: var(--primary-burgundy);
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid var(--royal-gold);
}

.footer p {
    margin: 0.5rem 0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

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

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    section {
        padding: 50px 0;
    }

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

    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
        min-width: auto;
        margin-bottom: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 15px;
    }

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

    .article-section {
        padding: 2rem;
        margin-top: 2rem;
    }

    .product-item.featured {
        transform: none;
    }

    h2 {
        font-size: 2rem !important;
    }

    .article-section h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 350px;
    }

    .hero-section .container {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    section {
        padding: 40px 0;
    }

    .container {
        padding: 0 10px;
    }
}
