/* Modern styles for Tina Bratmann Creative Direction */

:root {
    --primary-bg: #F4EFF3;
    --text-color: #000000;
    --font-family: 'Roboto', sans-serif;
}

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

html,
body {
    height: 100%;
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
}

.container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: visible;
}

.content {
    max-width: 95%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.main-image {
    max-height: 300px;
    width: auto;
    margin-bottom: 2rem;
    object-fit: contain;
}

.footer-image {
    width: 100%;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.copyright {
    font-size: 0.7rem;
    margin-top: 1rem;
    opacity: 0.6;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.monswyk-logo {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 120px;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1000;
    display: block;
}

.monswyk-logo:hover {
    opacity: 0.8;
}


/* Responsive Design */

@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    .main-image {
        max-height: 200px;
    }
    .container {
        padding: 1rem;
    }
    .monswyk-logo {
        width: 100px;
        top: 1rem;
        right: 1rem;
    }
    .footer-image {
        width: 100%;
    }
}


/* Animation */

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

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}