/* Importujemy eleganckie fonty */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #1a2238;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
}

header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

.cta {
    display: inline-block;
    background-color: #b71c1c;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #a31515;
}

section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
}

.feature {
    flex: 1 1 250px;
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

blockquote {
    font-style: italic;
    border-left: 4px solid #b71c1c;
    padding-left: 1rem;
    margin: 1rem 0;
}

details {
    margin-bottom: 1rem;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button[type="submit"] {
    background-color: #b71c1c;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #a31515;
}

/* Responsywność */
@media (max-width: 600px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Footer dopasowany do kolorystyki headera */
.footer {
    background-color: #1a2238;
    color: #fff;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.footer-section:nth-child(1) { animation-delay: 0s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.4s; }
.footer-section:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h2, .footer-section h3, .footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #f5a623;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f1c40f;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.footer .social-icons a[href*="facebook"] img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(88%) saturate(1845%) hue-rotate(202deg) brightness(95%) contrast(94%);
}

.footer .social-icons a[href*="instagram"] img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(76%) saturate(3345%) hue-rotate(313deg) brightness(92%) contrast(97%);
}

.footer .social-icons a[href*="tiktok"] img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(96%) saturate(1000%) hue-rotate(160deg) brightness(100%) contrast(101%);
}

.footer .social-icons a[href*="maps"] img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(91%) saturate(475%) hue-rotate(83deg) brightness(92%) contrast(91%);
}
