/* --- VARIABLES --- */
:root {
    --cyan: #00f2ff;
    --magenta: #ff0055;
    --yellow: #ffcc00;
    --dark-bg: #111111;
    --panel-bg: #1a1a1a;
    --text-main: #222;
    --text-white: #fff;
    --text-gray: #aaa;
    --gradient: linear-gradient(135deg, #00f2ff 0%, #ff0055 100%);
}

body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* UTILS */
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-cyan { color: var(--cyan); }
.text-magenta { color: var(--magenta); }
.text-yellow { color: var(--yellow); }
.text-gray { color: var(--text-gray); }
.bg-darker { background-color: var(--dark-bg); }
.bg-panel { background-color: var(--panel-bg); }
.bg-light-gray { background-color: #f8f9fa; }

/* HERO */
.art-hero { padding: 120px 0 100px; margin-top: 50px; position: relative; overflow: hidden; background: #fff; }
.dot-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px; z-index: 0;
}
.paint-splash {
    position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1), rgba(255, 0, 85, 0.05), transparent 70%);
    filter: blur(60px); z-index: 0;
}

.badge-art { background: #f0f0f0; color: #333; padding: 8px 16px; border-radius: 4px; font-weight: 700; border-left: 4px solid var(--magenta); display: inline-block; margin-bottom: 20px; font-size: 0.85rem; }

.btn-art {
    background: var(--dark-bg); color: white; padding: 12px 30px; border-radius: 0; font-weight: 700; text-decoration: none; border: 2px solid var(--dark-bg); transition: 0.3s;
}
.btn-art:hover { background: transparent; color: var(--dark-bg); }

.btn-outline-art {
    border: 2px solid var(--dark-bg); color: var(--dark-bg); padding: 12px 30px; border-radius: 0; font-weight: 700; text-decoration: none; transition: 0.3s;
}
.btn-outline-art:hover { background: var(--dark-bg); color: white; }

/* 3D COMPOSITION */
.tools-composition { position: relative; width: 350px; height: 350px; margin: 0 auto; perspective: 1000px; }
.layer-card {
    position: absolute; width: 120px; height: 120px; background: white; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center;
    border: 1px solid #eee; transition: 0.5s ease-in-out;
}
.card-1 { top: 20px; left: 20px; z-index: 3; transform: rotate(-5deg); }
.card-2 { top: 100px; right: 20px; z-index: 2; transform: rotate(10deg); }
.card-3 { bottom: 20px; left: 60px; z-index: 1; transform: rotate(-2deg); }

.tools-composition:hover .card-1 { transform: translateY(-20px) rotate(-10deg); }
.tools-composition:hover .card-2 { transform: translateX(20px) rotate(15deg); }
.tools-composition:hover .card-3 { transform: translateY(20px) rotate(0deg); }

.shape { position: absolute; opacity: 0.8; mix-blend-mode: multiply; }
.circle { width: 80px; height: 80px; background: var(--cyan); border-radius: 50%; top: 0; right: 0; filter: blur(20px); }
.triangle { width: 0; height: 0; border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 70px solid var(--yellow); bottom: 50px; left: 0; transform: rotate(-15deg); filter: blur(10px); }
.squiggle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; }

/* --- LAB --- */
.design-console { background: var(--panel-bg); border-radius: 12px; overflow: hidden; max-width: 900px; margin: 0 auto; border: 1px solid #333; }
.color-picker { display: flex; gap: 10px; }
.color-dot { width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: 0.2s; }
.color-dot.active { border-color: white; transform: scale(1.2); }
.bg-cyan { background: var(--cyan); } .bg-magenta { background: var(--magenta); } .bg-yellow { background: var(--yellow); }

.canvas-area { height: 400px; display: flex; align-items: center; justify-content: center; position: relative; transition: 0.5s; }
.theme-cyan { background: radial-gradient(circle, #222, #111); }
.theme-magenta { background: radial-gradient(circle, #33111a, #111); }
.theme-yellow { background: radial-gradient(circle, #332b11, #111); }

.biz-card { width: 300px; height: 180px; background: white; border-radius: 10px; padding: 25px; position: relative; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between; }
.logo-mark { font-size: 2rem; color: var(--cyan); transition: 0.3s; }
.brand-name { font-weight: 900; margin: 0; letter-spacing: 2px; }
.tagline { font-size: 0.7rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
.card-footer { font-size: 0.8rem; font-weight: bold; border-top: 1px solid #eee; padding-top: 10px; }

/* Font Styles */
.font-modern .brand-name { font-family: 'Montserrat', sans-serif; }
.font-classic .brand-name { font-family: 'Playfair Display', serif; }
.font-bold .brand-name { font-family: impact, sans-serif; text-transform: uppercase; }

/* Theme Styles applied by JS */
.theme-cyan .logo-mark { color: var(--cyan); } .theme-cyan .biz-card { border-left: 5px solid var(--cyan); }
.theme-magenta .logo-mark { color: var(--magenta); } .theme-magenta .biz-card { border-left: 5px solid var(--magenta); }
.theme-yellow .logo-mark { color: var(--yellow); } .theme-yellow .biz-card { border-left: 5px solid var(--yellow); }

/* --- TOOLS --- */
.tool-card { background: white; padding: 25px; border-radius: 12px; border: 1px solid #eee; transition: 0.3s; height: 100%; position: relative; overflow: hidden; }
.tool-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.tool-head { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.software-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; border-radius: 8px; color: #001e36; }
.ps { background: #31a8ff; color: #001e36; } .ai { background: #ff9a00; color: #330000; } .cdr { background: #00a45e; color: white; }

/* --- CAREER --- */
.project-item { background: white; padding: 15px; border: 1px solid #eee; border-radius: 8px; margin-bottom: 10px; font-weight: 600; font-size: 0.9rem; }
.salary-card { border: 1px solid #eee; }
.transform-hover { transition: 0.3s; }
.transform-hover:hover { transform: scale(1.05); }