@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

body {
    font-family: "Avenir Next Condensed", "Arial Narrow", Arial, sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
}

.logo-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 120px;
}

.logo {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
}

.logo4 {
    z-index: 2;
}

.logo-main {
    z-index: 1;
}

/* Zachowujemy miejsce dla logo */
.logo-container::after {
    content: '';
    display: block;
    padding-bottom: 56.25%; /* Dostosuj ten procent do proporcji twojego logo */
}

.title {
    font-size: 32px;
    margin-bottom: 12px;
    white-space: nowrap;
    font-family: "Avenir Next Condensed", "Arial Narrow", Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: bold;
}

.motion { 
    color: #1B5E20;
    font-weight: 400;
}
.designer { 
    color: #9C27B0;
    font-weight: 400;
}
.plus { 
    color: #4AA3D5;
    font-weight: 400;
}
.illustrator { 
    color: #F39C12;
    font-weight: 400;
}

.email {
    margin-bottom: 60px;
}

.email a {
    color: #E53935;
    text-decoration: none;
    font-size: 32px;
    transition: opacity 0.3s ease;
    font-family: "Avenir Next Condensed", "Roboto Condensed", Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

.email a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 45px;
    color: white;
}

.instagram {
    background-color: #4AA3D5;
}

.artstation {
    background-color: #F5A9B8;
}

.google-drive {
    background-color: #8E44AD;
}

.linkedin {
    background-color: #F39C12;
}

/* Responsywność */
@media (max-width: 768px) {
    .title {
        font-size: 30px;
    }
    
    .email a {
        font-size: 30px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .social-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        max-width: 90vw;
    }
    .title, .email {
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        box-sizing: border-box;
    }
    .title {
        font-size: 19.2px;
    }
    .email a {
        font-size: 19.2px;
    }
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 21.6px;
    }
    .social-links {
        gap: 15px;
    }
} 