/* =========================================================
   SIBEN KUMAR PORTFOLIO
   Theme: Emerald Ink + Champagne
========================================================= */


/* =========================================================
   1. VARIABLES
========================================================= */

:root {
    --emerald-ink: #032c25;
    --emerald-dark: #021f1a;
    --emerald-card: #073b31;

    --champagne: #f3e4c5;
    --champagne-light: #fff8e9;
    --gold: #e9b95d;

    --green: #38a879;
    --green-light: #62c292;

    --text: #eee7d8;
    --muted: #a7afa8;

    --border: rgba(243, 228, 197, 0.18);

    --container: 1160px;

    --transition: 0.25s ease;
}


/* =========================================================
   2. RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


body {
    min-height: 100vh;
    overflow-x: hidden;

    background: var(--emerald-ink);
    color: var(--text);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;
}


body::before {
    content: "";

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--gold);

    z-index: 9999;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
}


button,
input,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


ul {
    list-style: none;
}


::selection {
    background: var(--champagne);
    color: var(--emerald-dark);
}


/* =========================================================
   3. HEADER
========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom: 1px solid var(--border);

    background:
        rgba(3, 44, 37, 0.88);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


.navbar {
    width: min(92%, var(--container));

    min-height: 72px;

    margin: auto;

    display: flex;
    align-items: center;
}


/* ---------- Logo ---------- */

.logo {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-right: auto;

    color: var(--champagne);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    font-weight: 700;

    text-decoration: none;
}


.logo span {
    color: var(--gold);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-weight: 400;
}


/* ---------- Navigation ---------- */

.nav-links {
    display: flex;
    align-items: center;

    gap: 32px;
}


.nav-link {
    position: relative;

    display: block;

    padding: 27px 0;

    color: var(--text);

    font-size: 12px;

    text-decoration: none;

    transition:
        color var(--transition);
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 16px;

    width: 100%;
    height: 2px;

    background: var(--gold);

    transform: scaleX(0);

    transition:
        transform var(--transition);
}


.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}


.nav-link.active::after {
    transform: scaleX(1);
}


/* ---------- Theme switch ---------- */

.theme-toggle {
    width: 62px;
    height: 29px;

    margin-left: 32px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    border: 1px solid var(--gold);

    border-radius: 50px;

    background: transparent;

    color: var(--gold);

    font-size: 13px;
}


.theme-toggle span {
    position: relative;
}


.theme-toggle span:first-child {
    color: var(--gold);
}


.theme-toggle span:last-child {
    color: var(--emerald-dark);
}


.theme-toggle span:first-child::after {
    content: "";

    position: absolute;

    width: 21px;
    height: 21px;

    top: -5px;
    left: -5px;

    border-radius: 50%;

    background: var(--champagne);

    z-index: -1;
}


/* ---------- Mobile menu ---------- */

.menu-toggle {
    display: none;

    width: 42px;
    height: 40px;

    margin-left: 15px;

    border: none;

    background: transparent;

    color: var(--champagne);

    font-size: 25px;
}


/* =========================================================
   4. HERO
========================================================= */

.hero {
    width: min(92%, var(--container));

    min-height: calc(100vh - 72px);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(420px, 1.05fr);

    align-items: center;

    gap: 15px;

    padding-top: 35px;
}


/* ---------- Hero content ---------- */

.hero-content {
    position: relative;

    z-index: 5;

    padding-bottom: 30px;
}


.eyebrow {
    margin-bottom: 13px;

    color: var(--green-light);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 13px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.eyebrow::before {
    content: "// ";

    color: var(--green-light);
}


/* ---------- Main heading ---------- */

.hero h1 {
    margin-bottom: 13px;

    color: var(--champagne);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(58px, 6vw, 84px);

    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -0.045em;
}


.cursor {
    color: var(--champagne);

    font-family: Arial, sans-serif;

    font-weight: 300;

    animation: cursorBlink 0.9s infinite;
}


@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}


/* ---------- Subtitle ---------- */

.hero h2 {
    margin-bottom: 17px;

    color: var(--gold);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: clamp(21px, 2.2vw, 29px);

    font-weight: 400;

    line-height: 1.35;
}


/* ---------- Description ---------- */

.hero-description {
    max-width: 570px;

    margin-bottom: 24px;

    color: var(--text);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 12px;

    line-height: 1.8;
}


/* ---------- Buttons ---------- */

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}


.button {
    min-height: 42px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    font-size: 12px;

    text-decoration: none;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}


.button-primary {
    border: 1px solid var(--champagne);

    background: var(--champagne);

    color: var(--emerald-dark);
}


.button-primary:hover {
    border-color: var(--gold);

    background: var(--gold);

    transform: translateY(-2px);
}


.button-outline {
    border: 1px solid var(--champagne);

    background: transparent;

    color: var(--champagne);
}


.button-outline:hover {
    background: var(--champagne);

    color: var(--emerald-dark);

    transform: translateY(-2px);
}


/* ---------- Social links ---------- */

.social-links {
    display: flex;

    gap: 20px;

    margin-top: 20px;
}


.social-links a {
    color: var(--champagne);

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color var(--transition),
        transform var(--transition);
}


.social-links a:hover {
    color: var(--gold);

    transform: translateY(-2px);
}


/* =========================================================
   5. HERO IMAGE
========================================================= */

.hero-image {
    position: relative;

    min-height: 550px;

    margin: 0;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    isolation: isolate;
}


/* ---------- Champagne circle ---------- */

.photo-circle {
    position: absolute;

    right: 12%;
    bottom: 9%;

    width: 425px;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            var(--champagne) 0 49%,
            transparent 50%
        );

    z-index: -3;
}


/* ---------- Decorative rings ---------- */

.photo-ring {
    position: absolute;

    right: 8%;
    bottom: 8%;

    width: 455px;
    aspect-ratio: 1;

    border: 1px solid var(--green);

    border-radius: 50%;

    z-index: -2;
}


.photo-ring-one {
    transform:
        rotate(20deg)
        scaleX(1.08);
}


.photo-ring-two {
    transform:
        rotate(-20deg)
        scaleX(0.93);

    opacity: 0.45;
}


/* ---------- Dots ---------- */

.photo-dots {
    position: absolute;

    top: 19%;
    right: 3%;

    width: 150px;
    height: 120px;

    background-image:
        radial-gradient(
            var(--gold) 1.3px,
            transparent 1.3px
        );

    background-size: 14px 14px;

    opacity: 0.55;

    z-index: -1;
}


/* ---------- Profile image ---------- */

.hero-image img {
    position: relative;

    z-index: 2;

    width: min(100%, 520px);

    max-height: 570px;

    object-fit: contain;

    object-position: bottom;

    filter:
        drop-shadow(
            0 25px 30px rgba(0, 0, 0, 0.3)
        );
}


/* ---------- Hero annotation ---------- */

.hero-image figcaption {
    position: absolute;

    top: 26%;
    right: 0;

    z-index: 5;

    color: var(--champagne);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 11px;

    line-height: 1.5;
}


.hero-arrow {
    position: absolute;

    top: 34%;
    right: 2%;

    z-index: 5;

    color: var(--champagne);

    font-size: 36px;

    transform: rotate(-18deg);
}


/* =========================================================
   6. COMMON SECTIONS
========================================================= */

.section {
    width: min(92%, var(--container));

    margin: auto;

    padding:
        25px 0;

    border-top: 1px solid var(--border);
}


.section-title {
    margin-bottom: 20px;
}


.section-title p {
    margin-bottom: 5px;

    color: var(--green);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 10px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.section-title h2 {
    color: var(--champagne);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    font-weight: 600;

    line-height: 1.15;
}


/* =========================================================
   7. ABOUT
========================================================= */

.about-content {
    display: grid;

    grid-template-columns: 220px 1fr;

    align-items: center;

    gap: 35px;
}


.about-symbol {
    position: relative;

    width: 155px;
    height: 130px;

    display: grid;

    place-items: center;

    border: 1px dashed
        rgba(56, 168, 121, 0.5);

    border-radius: 50%;

    color: var(--gold);
}


.about-symbol span {
    font-size: 55px;

    font-weight: 300;
}


.about-symbol small {
    position: absolute;

    bottom: 22px;

    color: var(--gold);

    font-family: monospace;

    font-size: 14px;
}


.about-text {
    max-width: 720px;

    padding-left: 35px;

    border-left: 1px solid var(--border);
}


.about-text p {
    margin-bottom: 12px;

    color: var(--text);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 12px;

    line-height: 1.65;
}


.about-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   8. SKILLS
========================================================= */

.skills-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.skill-card {
    min-height: 112px;

    display: flex;

    gap: 13px;

    padding: 15px;

    border: 1px solid var(--border);

    border-radius: 7px;

    background:
        rgba(2, 31, 26, 0.25);

    transition:
        transform var(--transition),
        border-color var(--transition);
}


.skill-card:hover {
    border-color:
        rgba(233, 185, 93, 0.5);

    transform: translateY(-3px);
}


.skill-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 1px solid
        rgba(233, 185, 93, 0.45);

    border-radius: 50%;

    color: var(--gold);

    font-size: 16px;
}


.skill-card h3 {
    margin-bottom: 5px;

    color: var(--champagne);

    font-size: 13px;
}


.skill-card ul {
    padding-left: 15px;

    color: var(--text);

    font-size: 11px;
}


.skill-card li {
    margin-bottom: 2px;
}


.skill-card li::marker {
    color: var(--gold);
}


/* =========================================================
   9. PROJECT
========================================================= */

.featured-project {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 30px;

    padding: 18px 20px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background:
        rgba(2, 31, 26, 0.2);
}


.project-number {
    color: var(--green-light);

    font-family: monospace;

    font-size: 10px;
}


.project-info h3 {
    margin:
        3px 0 1px;

    color: var(--champagne);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;
}


.project-subtitle {
    margin-bottom: 11px;

    color: var(--gold);

    font-size: 11px;
}


.project-description {
    max-width: 580px;

    margin-bottom: 12px;

    color: var(--text);

    font-size: 11px;

    line-height: 1.65;
}


.project-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 6px 25px;

    margin-bottom: 15px;
}


.project-features li {
    color: var(--text);

    font-size: 10px;
}


.project-features li::before {
    content: "●";

    margin-right: 8px;

    color: var(--green);

    font-size: 8px;
}


/* ---------- Technologies ---------- */

.tech-list {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.tech-list li {
    padding:
        4px 11px;

    border: 1px solid
        rgba(233, 185, 93, 0.35);

    border-radius: 5px;

    color: var(--champagne);

    font-size: 9px;
}


/* ---------- Project image ---------- */

.project-visual {
    margin: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;
}


.project-visual > img {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    border: 1px solid
        rgba(233, 185, 93, 0.45);

    border-radius: 8px;

    background: #f5f5f2;
}


.project-visual figcaption {
    margin-top: 13px;
}


.project-visual nav {
    display: flex;

    justify-content: flex-end;

    gap: 15px;
}


.project-visual nav a {
    min-width: 115px;

    padding:
        7px 12px;

    border: 1px solid var(--champagne);

    border-radius: 5px;

    text-align: center;

    color: var(--champagne);

    font-size: 10px;

    text-decoration: none;

    transition:
        background var(--transition),
        color var(--transition);
}


.project-visual nav a:hover {
    background: var(--champagne);

    color: var(--emerald-dark);
}


.project-visual nav a:last-child {
    background: var(--champagne);

    color: var(--emerald-dark);
}


.project-visual nav a:last-child:hover {
    background: var(--gold);

    border-color: var(--gold);
}


/* =========================================================
   10. EDUCATION
========================================================= */

.education-list {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 8px;
}


.education-item {
    display: grid;

    grid-template-columns:
        48px 1fr auto;

    align-items: center;

    gap: 15px;

    padding:
        13px 17px;

    border-bottom:
        1px solid var(--border);
}


.education-item:last-child {
    border-bottom: none;
}


.education-icon {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border: 1px solid
        rgba(233, 185, 93, 0.4);

    border-radius: 10px;

    color: var(--gold);

    font-size: 16px;
}


.education-content h3 {
    margin-bottom: 2px;

    color: var(--champagne);

    font-size: 12px;

    font-weight: 600;
}


.education-content p {
    color: var(--muted);

    font-size: 10px;
}


.education-item strong {
    color: var(--text);

    font-family: monospace;

    font-size: 10px;

    white-space: nowrap;
}


/* =========================================================
   11. CONTACT
========================================================= */

.contact-layout {
    display: grid;

    grid-template-columns:
        1fr 1.25fr;

    gap: 40px;
}


.contact-info {
    padding-right: 35px;

    border-right: 1px solid var(--border);

    font-style: normal;
}


.contact-info p {
    display: grid;

    grid-template-columns:
        28px 1fr;

    column-gap: 10px;

    margin-bottom: 17px;
}


.contact-info p > span {
    grid-row: 1 / 3;

    color: var(--green-light);

    font-weight: 700;
}


.contact-info strong {
    color: var(--champagne);

    font-size: 11px;
}


.contact-info a {
    color: var(--text);

    font-size: 10px;

    text-decoration: none;
}


.contact-info a:hover {
    color: var(--gold);
}


/* ---------- Form ---------- */

.contact-form {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}


.form-field {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.form-field.full {
    grid-column: 1 / -1;
}


.form-field label {
    color: var(--muted);

    font-family:
        "SFMono-Regular",
        Consolas,
        monospace;

    font-size: 9px;
}


.form-field input,
.form-field textarea {
    width: 100%;

    padding:
        9px 11px;

    outline: none;

    border: 1px solid var(--border);

    border-radius: 5px;

    background:
        rgba(2, 31, 26, 0.4);

    color: var(--champagne);

    transition:
        border-color var(--transition);
}


.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--gold);
}


.form-field textarea {
    min-height: 90px;

    resize: vertical;
}


.contact-form .button {
    border: none;
}


.form-message {
    align-self: center;

    color: var(--green-light);

    font-size: 10px;
}


/* =========================================================
   12. FOOTER
========================================================= */

.site-footer {
    min-height: 58px;

    padding:
        12px max(
            4%,
            calc((100% - var(--container)) / 2)
        );

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 20px;

    border-top: 1px solid var(--border);
}


.site-footer p,
.site-footer a {
    color: var(--muted);

    font-size: 9px;

    text-decoration: none;
}


.site-footer nav {
    display: flex;

    gap: 28px;
}


.site-footer nav a:hover {
    color: var(--gold);
}


.back-to-top {
    justify-self: end;

    border: none;

    background: transparent;

    color: var(--text);

    font-size: 9px;
}


.back-to-top:hover {
    color: var(--gold);
}


/* =========================================================
   13. TABLET
========================================================= */

@media (max-width: 900px) {

    .nav-links {
        gap: 18px;
    }


    .hero {
        grid-template-columns: 1fr;

        padding-top: 50px;
    }


    .hero-content {
        padding-bottom: 0;
    }


    .hero-image {
        order: -1;

        min-height: 430px;
    }


    .skills-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .featured-project {
        grid-template-columns: 1fr;
    }


    .contact-layout {
        grid-template-columns: 1fr;
    }


    .contact-info {
        padding-right: 0;

        padding-bottom: 20px;

        border-right: none;

        border-bottom:
            1px solid var(--border);
    }

}


/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 700px) {

    /* ---------- Header ---------- */

    .navbar {
        min-height: 66px;
    }


    .nav-links {
        display: none;

        position: absolute;

        top: 66px;
        left: 4%;

        width: 92%;

        padding: 7px;

        flex-direction: column;

        gap: 0;

        border:
            1px solid var(--border);

        border-radius: 8px;

        background:
            var(--emerald-dark);

        box-shadow:
            0 20px 50px
            rgba(0, 0, 0, 0.35);
    }


    .nav-links.open {
        display: flex;
    }


    .nav-link {
        width: 100%;

        padding: 13px;

        border-bottom:
            1px solid var(--border);
    }


    .nav-links li:last-child .nav-link {
        border-bottom: none;
    }


    .nav-link::after {
        display: none;
    }


    .theme-toggle {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    /* ---------- Hero ---------- */

    .hero {
        width: 90%;

        min-height: auto;

        padding:
            40px 0 60px;
    }


    .hero-image {
        min-height: 350px;
    }


    .photo-circle {
        width: 290px;

        right: 50%;

        transform:
            translateX(50%);
    }


    .photo-ring {
        width: 315px;

        right: 50%;

        transform:
            translateX(50%);
    }


    .photo-ring-one {
        transform:
            translateX(50%)
            rotate(20deg)
            scaleX(1.08);
    }


    .photo-ring-two {
        transform:
            translateX(50%)
            rotate(-20deg)
            scaleX(0.93);
    }


    .hero-image img {
        max-height: 390px;
    }


    .hero-image figcaption,
    .hero-arrow,
    .photo-dots {
        display: none;
    }


    .hero h1 {
        font-size:
            clamp(48px, 14vw, 70px);
    }


    .hero h2 {
        font-size: 19px;
    }


    .hero-description {
        font-size: 11px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .button {
        width: 100%;
    }


    /* ---------- Sections ---------- */

    .section {
        width: 90%;

        padding:
            35px 0;
    }


    .section-title h2 {
        font-size: 25px;
    }


    /* ---------- About ---------- */

    .about-content {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .about-symbol {
        width: 120px;
        height: 100px;
    }


    .about-text {
        padding-left: 0;

        padding-top: 20px;

        border-left: none;

        border-top:
            1px solid var(--border);
    }


    /* ---------- Skills ---------- */

    .skills-grid {
        grid-template-columns: 1fr;
    }


    /* ---------- Project ---------- */

    .project-features {
        grid-template-columns: 1fr;
    }


    .featured-project {
        padding: 15px;
    }


    .project-visual {
        margin-top: 10px;
    }


    .project-visual nav {
        justify-content: stretch;
    }


    .project-visual nav a {
        flex: 1;

        min-width: 0;
    }


    /* ---------- Education ---------- */

    .education-item {
        grid-template-columns:
            42px 1fr;
    }


    .education-item strong {
        grid-column: 2;

        justify-self: start;
    }


    /* ---------- Contact ---------- */

    .contact-form {
        grid-template-columns: 1fr;
    }


    .form-field.full {
        grid-column: auto;
    }


    /* ---------- Footer ---------- */

    .site-footer {
        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;

        padding: 20px;
    }


    .site-footer nav {
        gap: 20px;
    }


    .back-to-top {
        justify-self: center;
    }

}


/* =========================================================
   15. SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .logo {
        font-size: 19px;
    }


    .hero-image {
        min-height: 310px;
    }


    .photo-circle {
        width: 250px;
    }


    .photo-ring {
        width: 275px;
    }


    .hero-image img {
        max-height: 335px;
    }


    .hero h1 {
        font-size: 48px;
    }


    .section-title h2 {
        font-size: 23px;
    }


    .featured-project {
        padding: 13px;
    }


    .project-visual img {
        aspect-ratio: 16 / 10;
    }

}


/* =========================================================
   16. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
/* =========================================================
   LIGHT THEME
========================================================= */

body.light-theme {
    --emerald-ink: #f5efe2;
    --emerald-dark: #e8dfce;
    --emerald-card: #eee5d4;

    --champagne: #123d34;
    --champagne-light: #173f37;

    --gold: #a56b16;

    --green: #16704f;
    --green-light: #237c5d;

    --text: #26332f;
    --muted: #68716c;

    --border: rgba(18, 61, 52, 0.18);
}


/* Header */

body.light-theme .site-header {
    background: rgba(245, 239, 226, 0.88);
}


/* Hero image circle */

body.light-theme .photo-circle {
    background:
        radial-gradient(
            circle,
            #eadcc0 0 49%,
            transparent 50%
        );
}


/* Form */

body.light-theme .form-field input,
body.light-theme .form-field textarea {
    background: rgba(255, 255, 255, 0.55);
}


/* Project card */

body.light-theme .featured-project,
body.light-theme .skill-card {
    background: rgba(255, 255, 255, 0.25);
}


/* Project image */

body.light-theme .project-visual > img {
    background: #ffffff;
}