/* style.css */
:root {
    --color-brand-bg: #FDE7E0;
    --color-text: #000000;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-bodoni: 'Bodoni Moda', serif;
}

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

body {
    background-color: var(--color-brand-bg);
    color: var(--color-text);
    font-family: var(--font-montserrat);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    overflow-y: auto;
}

/* LOGO SECTION */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10rem;
    user-select: none;
}

.logo-m {
    font-family: var(--font-bodoni);
    font-size: 160px;
    font-weight: 400;
    line-height: 0.75;
    letter-spacing: -0.05em;
}

.logo-text {
    font-family: var(--font-bodoni);
    font-size: 28px;
    letter-spacing: 0.55em;
    margin-top: 1.25rem;
    margin-left: 0.55em; /* Compensate for letter spacing to center */
}

.logo-subtext {
    font-family: var(--font-montserrat);
    font-size: 15px;
    letter-spacing: 0.25em;
    margin-top: 0.75rem;
}

/* INFO & SOCIALS */
.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    width: 100%;
}

.email-link {
    font-family: var(--font-montserrat);
    font-weight: 600; /* Semibold as requested */
    font-size: 20px;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.email-link:hover {
    opacity: 0.7;
}

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

.social-links a {
    color: var(--color-text);
    transition: opacity 0.2s ease;
    display: inline-flex;
}

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

.social-links svg {
    width: 28px;
    height: 28px;
}

/* ADDRESS & VAT */
.address-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    margin-top: auto; /* Push to bottom if content is short */
}

.address {
    font-family: var(--font-montserrat);
    font-weight: 500; /* Medium as requested */
    font-size: 20px;
    line-height: 1.6;
}

.vat {
    font-family: var(--font-montserrat);
    font-weight: 400; /* Regular as requested */
    font-size: 20px;
}

/* Responsive Adjustments */
@media (min-width: 640px) {
    .container {
        padding: 3rem 2.5rem;
    }

    .logo-section {
        margin-bottom: 6rem;
    }

    .info-section {
        margin-bottom: 5rem;
    }
    
    .logo-m {
        font-size: 180px;
    }

    .logo-text {
        font-size: 32px;
        margin-top: 1.5rem;
    }

    .logo-subtext {
        font-size: 17px;
        margin-top: 1rem;
    }

    .address-section {
        margin-top: 0;
    }
}
