/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #331712;
    background-color: #f9f2ec;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

.center-logo {
    display: block;
    max-width: 600px;
    width: auto;
    height: auto;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    width: 49px;
    height: 49px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.tagline {
    font-family: 'Marion', Georgia, serif;
    color: #331712;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 1rem;
}

.bottom-right-image {
    position: fixed;
    bottom: 5px;
    right: 5px;
    max-width: 200px;
    width: auto;
    height: auto;
    z-index: 10;
    transform: scale(0.4);
    transform-origin: bottom right;
    padding: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .center-logo {
        max-width: 500px;
    }

    .social-icon {
        width: 39px;
        height: 39px;
    }

    .tagline {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .center-logo {
        max-width: 350px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .bottom-right-image {
        max-width: 200px;
        padding: 6px;
    }
}
