* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    height: 100vh;
    position: relative;
    background-color: #000;
}

.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: url('images/DSC_0649-2.jpeg');
}

.slide:nth-child(2) {
    background-image: url('images/DSC_1907.jpeg');
}

.slide:nth-child(3) {
    background-image: url('images/DSC_2448.jpeg');
}

.slide:nth-child(4) {
    background-image: url('images/DSC_2605.jpeg');
}

.slide:nth-child(5) {
    background-image: url('images/DSC_3048.jpeg');
}

.slide:nth-child(6) {
    background-image: url('images/DSC_3443-2.jpeg');
}

.slide:nth-child(7) {
    background-image: url('images/DSC_5199.jpeg');
}

.slide:nth-child(8) {
    background-image: url('images/DSC_6555.jpeg');
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.logo-container {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.8);
}

.social-icon {
    width: 32px;
    height: 32px;
    color: #888;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover .social-icon {
    color: white;
}

.social-text {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.social-handle {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

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

/* Responsywność */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    
    .social-link {
        padding: 12px 20px;
    }
    
    .social-name {
        font-size: 16px;
    }
    
    .social-handle {
        font-size: 12px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }
    
    .logo-container {
        margin-bottom: 40px;
    }
    
    .social-media {
        gap: 20px;
    }
}
