/* =========================================================
   Contact — single screen, centered, minimal
   Dark block + tan accent, no form, no icon cloud, no map.
   ========================================================= */
:root {
    --char: #1f1f1f;
    --tan: #d2b48c;
    --tan-deep: #a8845a;
    --display: "Josefin Sans", sans-serif;
    --mono: "Roboto Mono", monospace;
}

.content-container {
    background-color: #ececec;
}

.cc-sidebar-btn-active {
    background-color: var(--char);
    color: #ececec;
    border-color: var(--char);
}

/* ----- Dark centered block ----- */
.contact-main {
    flex: 1;
    height: 100%;
    background-color: var(--char);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle glow so the flat dark block feels intentional */
.contact-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210, 180, 140, 0.10) 0%, rgba(210, 180, 140, 0) 62%);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    width: 100%;
    max-width: 640px;
    text-align: center;
}

.contact-title {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 66px;
    line-height: 1;
    letter-spacing: -1px;
    color: #f2f0eb;
}

.contact-invite {
    margin: 22px auto 0;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.7;
    color: #a9a49c;
}

/* ----- Two big contact lines ----- */
.contact-methods {
    margin-top: 54px;
}

.contact-row {
    display: block;
    padding: 24px 0;
    text-decoration: none;
}

.contact-row-label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--tan-deep);
    margin-bottom: 12px;
}

.contact-row-value {
    font-family: var(--display);
    font-weight: 600;
    font-size: 30px;
    color: #ededed;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-row:hover .contact-row-value {
    color: var(--tan);
}

.contact-sep {
    height: 1px;
    max-width: 360px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.09);
}

/* ----- Optional quiet extras ----- */
.contact-extra {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.contact-social {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #8f8a82;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-social:hover {
    color: var(--tan);
}

.contact-dot {
    color: #4a463f;
}

.contact-loc {
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6a655c;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    /* fill the viewport height left over below the top nav */
    .contact-main {
        height: auto;
        min-height: 76vh;
        padding: 44px 18px;
        border-radius: 22px;
    }

    .contact-title { font-size: 42px; }
    .contact-invite { font-size: 14px; }
    .contact-methods { margin-top: 40px; }
    .contact-row { padding: 20px 0; }
    .contact-row-value { font-size: 19px; }
    .contact-extra { margin-top: 34px; }
}
