/* ========================================
   SIKATIN - Global Styles (Minifolio-inspired)
   ======================================== */

/* Google Fonts - Display + Body fonts like Minifolio */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700;800&family=Bricolage+Grotesque:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --bg-primary: #060606;
    --bg-secondary: #171914;
    --bg-card: #111110;
    --bg-card-hover: #1a1a18;
    --text-primary: #ffffff;
    --text-secondary: #c1c1c1;
    --text-muted: #666666;
    --theme-color: #BFF747;
    --theme-color-hover: #a8d93e;
    --accent-green: #4ade80;
    --accent-teal: #14b8a6;
    --accent-cyan: #0891b2;
    --gradient-accent: linear-gradient(135deg, #BFF747, #4ade80, #14b8a6);
    --gradient-accent-hover: linear-gradient(135deg, #a8d93e, #22c55e, #0d9488);
    --gradient-accent-text: linear-gradient(135deg, #BFF747, #4ade80, #14b8a6);
    --border-color: rgba(193, 193, 193, 0.16);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(193, 193, 193, 0.16);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 100px;
    --font-heading: 'Big Shoulders Display', sans-serif;
    --font-body: 'Bricolage Grotesque', sans-serif;
    --font-ui: 'Manrope', sans-serif;
    --transition-fast: 0.3s ease-in-out;
    --transition-medium: 0.4s ease-in-out;
    --transition-slow: 0.6s ease-in-out;
    --max-width: 1280px;
    --navbar-height: 80px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--theme-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-ui);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: var(--font-body);
    outline: none;
    border: none;
    background: none;
    color: var(--text-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; line-height: 1.4; }
h6 { font-size: 1.125rem; font-weight: 600; }

p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

.gradient-text {
    background: var(--gradient-accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-text {
    color: var(--theme-color);
}

.text-stroke {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--text-primary);
    color: transparent;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--theme-color);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1.5px solid var(--theme-color);
    border-radius: var(--radius-xl);
}

/* Divider */
.section-divider {
    width: 100%;
    height: 1.5px;
    background: var(--border-color);
}

/* Selection */
::selection {
    background: var(--theme-color);
    color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 48px 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 36px 0;
    }

    .container {
        padding: 0 12px;
    }

    h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.15rem, 4vw, 1.5rem); }
    h4 { font-size: 1.15rem; }

    p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}
