/* =========================
   RESET
========================= */

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

/* =========================
   BODY
========================= */

body {
    font-family: Arial,sans-serif;
    background: #06061b;
    color: white;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        background-image: url("../assets/images/ForeGround.png");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(8,10,35,.65);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-container {
    max-width: 1450px;
    margin: auto;
    height: 80px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

    .nav-menu a {
        text-decoration: none;
        color: #d7d7d7;
    }

        .nav-menu a:hover {
            color: #9d7cff;
        }

.header-btn {
    background: linear-gradient( 90deg, #8a4dff, #2e8cff);
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* =========================
   PAGE
========================= */

.graphics-page {
    max-width: 1450px;
    margin: auto;
    padding: 120px 30px 60px;
}

.breadcrumb {
    margin-bottom: 25px;
    color: #b694ff;
}

/* =========================
   LAYOUT
========================= */

.graphics-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
}

/* =========================
   SIDEBAR
========================= */

.graphics-sidebar {
    background: rgba(20,24,60,.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 30px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.graphics-icon {
    width: 120px;
    margin-bottom: 25px;
}

.graphics-sidebar h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.graphics-sidebar p {
    color: #dddddd;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tool-card {
    background: rgba(255,255,255,.05);
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 15px;
}

    .tool-card h3 {
        color: #9d7cff;
        margin-bottom: 8px;
    }

/* =========================
   GALLERY
========================= */

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.artwork-card {
    background: rgba(20,24,60,.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: hidden;
}

    .artwork-card img {
        width: 100%;
        min-height: 700px;
        object-fit: cover;
        display: block;
    }

.artwork-info {
    padding: 25px;
}

    .artwork-info h2 {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .artwork-info p {
        color: #dddddd;
        line-height: 1.8;
    }


.title-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.graphics-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: -50px;
}

.title-row h1 {
    font-size: 55px;
    line-height: 1;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

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

@media(max-width:768px) {

    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .artwork-card img {
        min-height: 400px;
    }
}
