@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #a8edea, #d299c2, #fbc2eb, #a6c1ee, #c1dfc4, #deaaff);
    background-size: 300% 300%;
    animation: colorWave 8s ease-in-out infinite;
    min-height: 100vh;
    color: #333;
}

@keyframes colorWave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: floatContent 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

@keyframes floatContent {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo-container {
    margin-bottom: 40px;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 100%;
    max-height: none;
    min-height: 400px;
    height: 50vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.2));
    animation: logoFloat 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #a8edea, #d299c2, #fbc2eb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 3s ease-in-out infinite;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes rainbowText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.5;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.facebook-button {
    display: inline-block;
    background: linear-gradient(135deg, #a8edea, #d299c2);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(168, 237, 234, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.facebook-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.facebook-button:hover::before {
    left: 100%;
}

.facebook-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 237, 234, 0.6);
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
}

.facebook-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.instagram-button {
    display: inline-block;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(131, 58, 180, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.instagram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.instagram-button:hover::before {
    left: 100%;
}

.instagram-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(131, 58, 180, 0.6);
    background: linear-gradient(135deg, #FD1D1D, #F77737, #833AB4);
}

.instagram-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.2);
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
        margin: 10px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .facebook-button, .instagram-button {
        font-size: 1rem;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .logo {
        max-width: 100%;
        max-height: 900px;
    }
    
    .facebook-button, .instagram-button {
        font-size: 0.9rem;
        padding: 14px 25px;
        width: 100%;
        max-width: 280px;
    }
} 