:root {
    /* Primary Brand Colors */
    --color-deep-blue: #215ba5;
    --color-vibrant-green: #61b987;
    /* Accessible Accent Colors */
    --color-soft-sky-blue: #4a90e2;
    --color-teal-green: #3da06e;
    /* Neutral Colors */
    --color-dark-charcoal: #1d1d1d;
    --color-light-gray: #f5f5f5;
    --color-white: #ffffff;
    --color-pink: #f8b8d0;
    /* Call-to-Action / Accent */
    --color-coral-red: #e76f6f;
}

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

body {
    font-family: 'Libertinus Serif Display', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--color-pink);
    color: var(--color-dark-charcoal);
    line-height: 1.5;
}

/* ===============================
   Container and Layout
   =============================== */
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    padding: 50px 70px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    max-width: 90%;
}

/* ===============================
   Logo Section
   =============================== */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 240px;
    max-height: 240px;
    width: auto;
    height: auto;
}

/* ===============================
   Divider
   =============================== */
.divider {
    width: 3px;
    height: 15vh;
    /* scales with viewport height */
    max-height: 240px;
    background-color: #000;
    margin: 0 60px;
}

/* ===============================
   Text Section
   =============================== */
.text-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.text-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

/* Contact link focus style */
.text-section a:focus {
    outline: 3px solid var(--color-deep-blue);
    outline-offset: 3px;
}

/* ===============================
   Social Links
   =============================== */
.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a:focus {
    outline: none;
}

.social-links a img {
    width: 40px;
    height: 40px;
    display: block;
}

/* ===============================
   Mobile Responsiveness
   =============================== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .divider {
        width: 80%;
        height: 3px;
        margin: 30px 0;
    }

    .text-section {
        align-items: center;
        text-align: center;
    }

    .logo {
        max-width: 180px;
        max-height: 180px;
    }

    .social-links {
        justify-content: center;
    }
}