/*
Theme Name: Light & Composition
Theme URI: https://www.lightandcomposition.com
Description: Bespoke, ultra-high-performance flagship theme for Light & Composition — International Photography University, Museum-Grade Fine Art, Global Expeditions, and Prestigious Awards.
Version: 1.0.7
Author: Light & Composition
Author URI: https://www.lightandcomposition.com
Text Domain: lc-theme
Requires at least: 6.0
Requires PHP: 7.4
*/

:root {
    /* ── Dark Canvas Tokens ── */
    --lc-dark: #0d0d0d;
    --lc-dark2: #161616;
    --lc-dark3: #1f1f1f;
    --lc-mid: #2a2a2a;
    --lc-border: rgba(255, 255, 255, 0.08);
    --lc-border-hover: rgba(232, 130, 12, 0.4);
    --lc-fg: #ffffff;
    --lc-fg2: rgba(255, 255, 255, 0.75);
    --lc-fg3: rgba(255, 255, 255, 0.45);

    /* ── Light Canvas Tokens ── */
    --lc-light: #ffffff;
    --lc-light-bg: #f5f5f7;
    --lc-light-card: #ffffff;
    --lc-light-border: #e5e5ea;
    --lc-light-fg: #1d1d1f;
    --lc-light-fg2: #6e6e73;
    --lc-light-fg3: #86868b;

    /* ── Brand Accent Palette ── */
    --lc-blue: #0071e3;
    --lc-blue-dk: #005bb5;
    --lc-amber: #e8820c;
    --lc-amber-dk: #c56d09;
    --lc-gold: #d4af37;
    --lc-green: #34c759;
    --lc-red: #ff3b30;

    /* ── Heritage Accent Palette (3-Stripe) ── */
    --lc-tri-blue: #0071e3;
    --lc-tri-gold: #e8820c;
    --lc-tri-black: #0d0d0d;

    /* ── Typography & Layout ── */
    --lc-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --lc-serif: "New York", "Charter", "Georgia", serif;
    --lc-radius-sm: 8px;
    --lc-radius-md: 14px;
    --lc-radius-lg: 20px;
    --lc-radius-pill: 980px;
    --lc-container: 1280px;
    --lc-header-height: 64px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: var(--lc-font);
    background-color: #ffffff;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #1d1d1f;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.site-content {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

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

.lc-container {
    max-width: var(--lc-container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* 3-Color Heritage Accent Stripe */
.lc-heritage-stripe {
    height: 3px;
    background: linear-gradient(90deg, #0071e3 0%, #0071e3 33.33%, #e8820c 33.33%, #e8820c 66.66%, #0d0d0d 66.66%, #0d0d0d 100%);
    width: 100%;
}
