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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f3cfc3;
    color: #3d231d;
    line-height: 1.6;
}

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

/* Nagłówek i Zdjęcia */
.site-header {
    padding: 40px 0 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.header-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Sekcja Główna / Hero */
.hero-section {
    text-align: center;
    padding: 30px 0 40px 0;
}

.main-title {
    font-size: 2.2rem;
    color: #3d231d;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.sub-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #5a3830;
}

.tagline {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #3d231d;
    font-style: italic;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.intro-text p {
    margin-bottom: 12px;
}

/* Sekcja Kart / Cech */
.features-section {
    padding: 20px 0 40px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(61, 35, 29, 0.08);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3d231d;
    border-bottom: 2px solid #f3cfc3;
    padding-bottom: 8px;
}

.card p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.sanepid-note {
    margin-top: auto;
    font-size: 0.85rem !important;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #3d231d;
}

.location-box {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed #3d231d;
}

.location-box h4 {
    margin-bottom: 5px;
}

/* Sekcja Kontaktowa */
.contact-section {
    padding: 20px 0 50px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-card {
    background-color: #3d231d;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-name {
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-brand {
    font-size: 1.1rem;
    color: #f3cfc3;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 20px 0;
}

.phone-link, .email-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background-color: rgba(243, 207, 195, 0.15);
    padding: 10px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 207, 195, 0.3);
}

.phone-link:hover, .email-link:hover {
    background-color: #f3cfc3;
    color: #3d231d;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 15px 0;
    flex-wrap: wrap;
}

.social-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #f3cfc3;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #f3cfc3;
    color: #3d231d;
}

.contact-invite {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-top: 20px;
}

/* Stopka */
.site-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(61, 35, 29, 0.1);
}

.footer-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-slogan {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Responsywność dla Mniejszych Ekranów */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    .logo-wrapper {
        order: -1;
    }

    .header-img {
        max-width: 220px;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .sub-title {
        font-size: 1.1rem;
    }

    .phone-link, .email-link {
        font-size: 1.1rem;
        padding: 8px 18px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 250px;
    }
}