:root {
    --accent: #b88a2d; /* gold */
    --accent-2: #7a4b1f; /* bronze */
    --muted: #cfc7bb;
    --bg: #0b0b0f;
    --panel: #0f1114;
    --glass: rgba(255, 255, 255, 0.03);
    --text: #e9e6df;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Roboto, "Helvetica Neue", Arial;
    background: radial-gradient(ellipse at 10% 10%, rgba(188, 138, 46, 0.06) 0%, transparent 20%), linear-gradient(180deg, #050507 0%, #0b0b0f 60%);
    color: var(--text);
}

/*Overlay behind*/
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 100%), url('https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/8bf9a1f3-9ad2-48a9-b650-f2686e410ec0/d2nym1x-43432ba4-3ebb-4429-be28-b9d6ab3b6f99.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiIvZi84YmY5YTFmMy05YWQyLTQ4YTktYjY1MC1mMjY4NmU0MTBlYzAvZDJueW0xeC00MzQzMmJhNC0zZWJiLTQ0MjktYmUyOC1iOWQ2YWIzYjZmOTkuanBnIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.EGBJy5cAb-WdkIK1sFeFLUCLw5f2OUoBWCLfXrA1pzE');
    background-size: cover;
    opacity: 100;
    mix-blend-mode: overlay;
}

header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: linear-gradient(180deg, rgba(6, 6, 8, 0.6), rgba(6, 6, 8, 0.35));
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand .sig {
    font-family: Cinzel, serif;
    font-size: 20px;
    color: var(--gold)
}

nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600
}

.nav-link {
    color: var(--muted);
}

nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) inset
}

/*Main portrait*/
.hero {
    max-width: 1100px;
    margin: 36px auto;
    padding: 20px;
    display: grid;
    grid-template-columns:280px 1fr;
    gap: 28px;
    align-items: center
}

.portrait {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(3, 3, 6, 0.6);
    position: relative;
    border: 4px solid rgba(184, 138, 46, 0.12)
}

.portrait .frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0b0b0b, #121212);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02)
}

/* Ornate frame border */
.portrait:before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    pointer-events: none;
    background: conic-gradient(from 200deg at 50% 50%, rgba(184, 138, 46, 0.08), transparent 40%);
    filter: blur(10px)
}

.intro {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.intro h1 {
    margin: 0;
    font-family: Cinzel, serif;
    font-size: 34px;
    letter-spacing: 0.6px;
    color: var(--accent)
}

.intro p {
    margin: 12px 0 18px;
    color: var(--muted);
    line-height: 1.45
}

.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.chip {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600
}

.cta {
    margin-top: 18px;
    display: flex;
    gap: 12px
}

.btn {
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    color: #0b0b0b;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(122, 75, 31, 0.12)
}

.btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--muted)
}

/* carousel area */
.tools-panel {
    margin-top: 18px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.tools-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--muted);
    font-weight: 700
}

/* sections */
section.content {
    max-width: 1100px;
    margin: 24px auto;
    padding: 12px
}

.grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px
}

.card {
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(203, 72, 72, 0.01), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.2s ease-in-out;
}

.card h3 {
    color: rgba(255,255,255, 1);
}

.card p {
    color: rgba(255,255,255, 0.7);
}

a .card:hover {
    background-color: rgba(235, 170, 0, 0.10);
    transform: scale(1.05);
}

footer {
    max-width: 1100px;
    margin: 30px auto;
    color: var(--muted);
    padding: 12px;
    text-align: center
}

.navbar-nav a {
    color: var(--muted);
}

section p {
    color: white;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 30px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos-slide {
    display: inline-block;
    animation: 25s slide infinite linear;
}

.logos-slide img {
    height: 50px;
    margin: 0 10px;
}

.tools-used img {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.carouselContainer {
    width: 60vw;
}

/* responsive */
@media (max-width: 880px) {
    .hero {
        grid-template-columns:1fr;
        gap: 16px
    }

    .portrait {
        width: 220px;
        height: 220px;
        margin: 0 auto
    }

    .nav {
        padding: 10px
    }
}

@media (min-width: 1200px) {
    .carouselContainer {
        width: 50vw
    }
}

@media (min-width: 1920px) {
    .carouselContainer {
        width: 30vw
    }
}

@media (min-width: 2560px) {
    .carouselContainer {
        width: 20vw
    }
}