/*
Theme Name: Artistry Academy
Theme URI: https://artistryacademy.com
Author: Artistry Academy
Author URI: https://artistryacademy.com
Description: Premium custom theme for Artistry Academy — Kathmandu's premier brow, lash, and beauty studio with an international training academy.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artistry-academy-theme
Tags: beauty, salon, academy, premium, custom
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
    /* Brand palette */
    --primary:        #DABD4E;   /* Gold */
    --primary-dark:   #9E7715;   /* Deep Gold */
    --accent:         #F0D860;   /* Highlight Gold */
    --dark:           #0F0F10;   /* Background */
    --dark-light:     #1A1A1C;   /* Cards */
    --white:          #FFFFFF;
    --text-muted:     #B8B8B8;

    /* Theme aliases (used throughout CSS) */
    --color-primary:       #FFFFFF;   /* text on dark bg */
    --color-accent:        #DABD4E;   /* gold CTAs & highlights */
    --color-accent-light:  #1A1A1C;   /* card / section bg */
    --color-bg:            #0F0F10;   /* page background */
    --color-bg-dark:       #0F0F10;   /* footer / dark sections */
    --color-white:         #FFFFFF;
    --color-muted:         #B8B8B8;

    --font-display:        'Cormorant Garamond', Georgia, serif;
    --font-body:           'DM Sans', system-ui, sans-serif;

    --radius-card:         4px;
    --radius-btn:          2px;

    --shadow-card:         0 8px 32px rgba(0,0,0,0.35);
    --shadow-card-hover:   0 16px 48px rgba(218,189,78,0.18);

    --section-padding:     100px 0;
    --transition-base:     0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

/* ============================================================
   SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 1rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center { text-align: center; }
.text-muted   { color: var(--color-muted); }

.section-header {
    margin-bottom: 4rem;
}
.section-header p {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 580px;
}
.section-header.centered {
    text-align: center;
}
.section-header.centered p {
    margin: 0 auto;
}
