/**
 * Base — Variables, Reset, Typography, Layout
 * @copyright     cliqable.com
 * @project       DJCliq
 * @version       0.1.1
 * @author        Strange Shapes Studio
 * @author_url    https://www.strangeshapesstudio.com
 * @developer     Strange Shapes Studio
 * @developer_url info@strangeshapes.com
 * @file          css/base.css
 */

/* ── Variables ──────────────────────────────────────────── */
:root {
    --orange:       #d85b00;
    --orange-light: #f06a00;
    --orange-glow:  #fda900;
    --gold:         #fda900;
    --black:        #080808;
    --dark:         #0e0e0e;
    --dark-2:       #141414;
    --dark-3:       #1c1c1c;
    --charcoal:     #262626;
    --border:       rgba(255,255,255,0.07);
    --white:        #ffffff;
    --grey-1:       #f0f0f0;
    --grey-2:       #a0a0a0;
    --grey-3:       #5a5a5a;
    --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --font-cond:    'Barlow Condensed', 'Barlow', sans-serif;
    --radius:       8px;
    --radius-lg:    16px;
    --radius-pill:  50px;
    --shadow:       0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg:    0 8px 48px rgba(0,0,0,0.6);
    --glow-orange:  0 0 30px rgba(216,91,0,0.35);
    --glow-gold:    0 0 40px rgba(253,169,0,0.2);
    --transition:   0.25s ease;
    --header-h:     72px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Form elements base ─────────────────────────────────── */
input, textarea, select {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
input::placeholder, textarea::placeholder { color: var(--grey-3); }
input:focus, textarea:focus, select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(216,91,0,0.15);
}
select { cursor: pointer; appearance: none; }
textarea { resize: vertical; min-height: 90px; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-pad { padding: 100px 0; }
.section-dark { background: var(--dark-2); }
.section-cta  { text-align: center; margin-top: 3rem; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.section-label {
    display: inline-block;
    font-family: var(--font-cond);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.section-header p {
    color: var(--grey-2);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* ── Animations ─────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Placeholder label ───────────────────────────────────── */
.placeholder-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    font-family: var(--font-cond);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-3);
    pointer-events: none;
}
.placeholder-label svg { width: 16px; height: 16px; color: var(--orange); }
