/* WONART Main Styles */
body {
    background-color: #060606;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.tagline {
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 15px;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 20px;
}


.social-icons img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.social-icons img:hover {
    opacity: 0.8;
    transform: scale(1.1);
    filter: brightness(1.2);
}

.contact-email {
    margin-bottom: 30px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.contact-email a {
    color: #fff;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.footer {
    font-size: 12px;
    color: #666;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
