@import url('https://fonts.googleapis.com/css2?family=Century+Gothic:wght@400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', sans-serif;
    background-color: #1B1B22;
    color: #FFFFFF;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Century Gothic', sans-serif;
    background-color: #1B1B22;
    color: #FFFFFF;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.topbar {
    width: 100%;
    height: 108px;
    background-image: url('images/topbar.png');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.main-content {
    flex: 1;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background-697dc2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.logo-container {
    width: 100%;
    max-width: 592px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.logo {
    width: 100%;
    max-width: 600px;
    height: 425px;
    background-image: url('images/artisan-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.construction-text {
    width: 100%;
    max-width: 1096px;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.construction-text h1 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.22607421875em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.bottombar {
    width: 100%;
    height: 106px;
    background-image: url('images/bottombar.png');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.social-icons-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 11;
    pointer-events: none;
}

.social-icons {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 11;
    pointer-events: auto;
}

.social-icon {
    width: 160px;
    height: 160px;
    cursor: pointer;
    transition: transform 0.3s ease;
}



.facebook-icon {
    background-image: url('images/facebook-logo-236955.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.instagram-icon {
    background-image: url('images/instagram-logo-2afa5b.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mail-icon {
    background-image: url('images/mail-logo-5f761c.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-links {
    position: absolute;
    bottom: 28px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 31px;
    z-index: 11;
}

.footer-link {
    background-color: #1B1B22;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Century Gothic', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.22607421875em;
    text-align: center;
    padding: 2px 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.datenschutz {
    width: 209px;
    height: 25px;
}

.impressum {
    width: 106px;
    height: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .logo {
        height: 280px;
    }
    
    .construction-text {
        height: auto;
        min-height: 78px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icon {
        width: 120px;
        height: 120px;
    }
    
    .footer-links {
        padding: 0 40px;
    }
    
    .footer-link {
        font-size: 16px;
    }
} 