/* Ogólne style dla strony */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Możesz dostosować font */
    background-color: #A3D8DA; /* Główny kolor tła z logo */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden; /* Aby tło z wzorem było w pełni kontrolowane */
}

.landing-page {
    position: relative;
    width: 100%;
    max-width: 800px; /* Maksymalna szerokość dla czytelności na dużych ekranach */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('background-pattern.png'); /* Wzorzyste tło */
    background-size: cover; /* Dostosowanie rozmiaru obrazu tła */
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Zapewnienie, że strona zajmuje całą wysokość */
}

/* Logo */
.logo {
    width: 100%; /* Rozmiar logo */
/*    margin-bottom: 30px; */
}

/* Treść główna */
.content {
    max-width: 600px;
}

h1 {
    font-family: 'Bebas Neue', cursive; /* Font jak w logo */
    font-size: 3em;
    color: #333; /* Ciemniejszy tekst */
    margin-bottom: 10px;
    line-height: 1.2;
}

p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #555;
}

/* Przycisk CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FF7F50; /* Pomarańczowy z logo */
    color: #FFF;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 3px solid #FFD700; /* Złota obwódka */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: #FF6347; /* Ciemniejszy pomarańcz po najechaniu */
}

.facebook-icon {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.small-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
}

.website-link {
    font-size: 1em;
    font-weight: bold;
    color: #555;
    margin-top: 5px;
}

/* Responsywność */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    p {
        font-size: 1em;
    }
    .cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .logo {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 0.9em;
    }
    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .logo {
        width: 100%;
    }
}