/* =========================
   GLOBAL RESET
========================= */

@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender-Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender-BlackItalic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: "Bender";
    src: url("/assets/fonts/bender/Bender-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

html, body {
    font-family: "Bender", sans-serif;
    letter-spacing: 0.4px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0a0a0a;
    color: white;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    width: 100%;
    height: 60px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 200, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar .logo {
    color: #d4a017;
    font-size: 24px;
    font-weight: bold;
}

.navbar .menu {
    display: flex;
    gap: 30px;
}

.navbar .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s ease-in-out;
}

.navbar .menu a:hover {
    color: #d4a017;
}

.navbar .menu .gold {
    color: #d4a017;
    font-weight: bold;
}

/* =========================
   PAGE WRAPPER
========================= */

body {
    margin: 0;
    background: radial-gradient(circle at top, #1a1408 0%, #050505 55%, #000000 100%);
    color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px; /* 120 ca să nu intre sub navbar */
}

/* =========================
   HERO LUXURY
========================= */

.hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-content {
    max-width: 100%;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: rgba(255, 220, 120, 0.8);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero h1 span {
    color: #d4a017;
}

.hero-sub {
    font-size: 15px;
    color: #c5c5c5;
    max-width: 460px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn.primary {
    background: #d4a017;
    color: #050505;
    border-color: #d4a017;
    font-weight: bold;
}

.btn.primary:hover {
    background: #f0c433;
    border-color: #f0c433;
    transform: translateY(-1px);
}

.btn.ghost {
    background: transparent;
    color: #f5f5f5;
    border-color: rgba(255, 220, 120, 0.5);
}

.btn.ghost:hover {
    border-color: #d4a017;
    color: #d4a017;
    transform: translateY(-1px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #b0b0b0;
}

.hero-meta span::before {
    content: "• ";
    color: #d4a017;
}

/* SIDE PANEL */

.hero-side {
    display: flex;
    justify-content: flex-end;
}

.glass-panel {
    width: 100%;
    max-width: 320px;
    padding: 18px 18px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212,160,23,0.09), rgba(20,20,20,0.95));
    border: 1px solid rgba(212, 160, 23, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.panel-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 220, 120, 0.85);
    margin-bottom: 8px;
}

.glass-panel h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

.panel-text {
    font-size: 13px;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.panel-link {
    font-size: 13px;
    color: #f0c433;
    text-decoration: none;
}

.panel-link:hover {
    text-decoration: underline;
}

/* =========================
   SECTIONS
========================= */

.section {
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 6px;
}

.section-sub {
    font-size: 14px;
    color: #bdbdbd;
    max-width: 520px;
}

/* PROJECTS GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(255, 220, 120, 0.15);
    padding: 18px 18px 20px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.6);
}

.project-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.project-card p {
    font-size: 13px;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    color: #f5f5f5;
}

.tag-gold {
    border-color: #d4a017;
    color: #f0c433;
}

/* ABOUT & CONTACT */

.about-preview .section-text {
    margin-top: 10px;
    font-size: 14px;
    color: #d0d0d0;
    max-width: 580px;
    line-height: 1.7;
}

.contact-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(255, 220, 120, 0.25);
    padding: 16px 24px 22px;
    text-align: center;
    font-size: 12px;
    color: #aaaaaa;
    background: #050505;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-side {
        justify-content: flex-start;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0 16px;
    }

    .page-wrapper {
        padding: 90px 16px 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* PROJECT CARD REWORK — PREMIUM FEEL */

.project-card {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(255, 220, 120, 0.15);
    padding: 18px 18px 20px;

    /* smooth shadow + subtle depth */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.55);
    transition: 
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.project-card:hover {
    transform: translateY(-3px) scale(1.012); /* mic zoom elegant */
    box-shadow: 0 0 22px rgba(255,220,140,0.25); /* shadow mai deep */
    border-color: rgba(212, 160, 23, 0.45); /* gold highlight */
}

.project-card h3 {
    transition: color 0.2s ease;
}

.project-card:hover h3 {
    color: #f0c433;
}

.glass-panel {
    padding: 18px 18px 20px;

    /* smooth shadow + subtle depth */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.55);
    transition: 
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

h1, .title-xl {
    font-family: "Bender", sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f5c542; /* aurul pe care îl folosim */
}

h2, .title-lg {
    font-family: "Bender", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
p {
    font-family: "Bender", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #c7c7c7;
}
nav a, button, .btn {
    font-family: "Bender", sans-serif;
    font-weight: 700;
    letter-spacing: .6px;
}


.glass-panel:hover {
    transform: translateY(-3px) scale(1.007); /* mic zoom elegant */
    box-shadow: 0 0 22px rgba(255,220,140,0.25); /* shadow mai deep */
    border-color: rgba(212, 160, 23, 0.45); /* gold highlight */
}

/* mic zoom elegant */
.studio-container {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 24px;
}

.studio-header {
    margin-bottom: 40px;
}

.studio-sub {
    font-weight: 300;
    font-size: 1.1rem;
    color: #bbb;
    margin-top: 6px;
}

/* GRID */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD STYLE */
.studio-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 215, 100, 0.18);
    padding: 22px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: 0.25s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .5);
}

.studio-card h3 {
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.studio-card p {
    font-weight: 300;
    color: #ccc;
}

/* GOLD FILL ON HOVER */
.studio-card:hover {
    background: linear-gradient(135deg, #d4a017, #f0d578);
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(212,160,23,.35);
    border-color: transparent;
}

.studio-card:hover p {
    color: #1a1a1a;
}
.profile-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.avatar-box {
    text-align: center;
}

.avatar-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #333;
    box-shadow: 0 5px 12px rgba(0,0,0,0.4);
}

.gold-border {
    border: 3px solid #d4a017 !important;
    box-shadow: 0 0 18px rgba(212,160,23,0.5);
}

/* AVATAR HOVER GLOW SUBTIL */
.avatar-img:hover {
    box-shadow: 0 0 18px rgba(212,160,23,0.45);
    transition: 0.25s;
    cursor: pointer;
}

.gold-border:hover {
    box-shadow: 0 0 28px rgba(212,160,23,0.75);
}

.avatar-box {
    position: relative;
}

.avatar-box span.badge-hover {
    display: none;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #d4a017;
    opacity: 0.9;
}

.avatar-img:hover + .badge-hover {
    display: block;
}

.badge-hover {
    display: block;
    opacity: 0;
    transition: 0.3s;
}

.avatar-img:hover + .badge-hover {
    opacity: 1;
}
.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.badge-hover {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 4px 12px;
    font-size: 12px;
    border: 1px solid #FFD700;
    border-radius: 12px;
    transition: 0.3s;
    backdrop-filter: blur(3px);
}

.badge-hover:hover {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.25);
    transform: translateX(-50%) scale(1.05);
}
