:root {
    --brand: #f36f24;

    --bg: #121212;
    --card: #1e1e1e;
    --text: #ffffff;

    --btn-bg: var(--brand);
    --btn-text: #ffffff;

    --social-bg: var(--brand);
    --social-icon: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

body.light {
    --bg: #f5f5f5;
    --card: #ffffff;
    --text: #222222;

    --btn-bg: var(--brand);
    --btn-text: #ffffff;

    /* 👇 THIS is what actually changes */
    --social-bg: #ffffff;
    --social-icon: var(--brand);
}

.contact-card {
    background: var(--card);
    width: 360px;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: background 0.3s;
}

body.light .contact-card {
    background: var(--card-light);
}

.logo img {
    width: 100px;
    margin-bottom: 15px;
}

h1 {
    margin: 5px 0;
    font-size: 24px;
    color: var(--brand);
}

.tagline {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.info {
    text-align: left;
    margin-top: 20px;
}

.info div {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
}

.info span {
    width: 28px;
    font-size: 18px;
    color: var(--brand);
}

.info a {
    color: inherit;
    text-decoration: none;
}

.actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.actions a {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    background: var(--btn-bg) !important;
    color: var(--btn-text) !important;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: transform 0.2s, opacity 0.2s;
}

.actions a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.socials {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--social-bg) !important;
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.toggle {
    margin-top: 20px;
    font-size: 13px;
    cursor: pointer;
    color: var(--brand);
}

.socials a i {
    color: var(--social-icon) !important;
    font-size: 18px;
}