@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* === First-Class DJ - Design System === */
/* Based on brand color palette: Graphite, Twilight Indigo, Porcelain, Shadow Grey, Taupe */
/* Google Fonts - must be first import */
/* Color Palette - Edit palette.css to switch color schemes */
/* ========================================
   Color Palette Configuration
   ========================================
   
   To switch palettes, replace the color values below with colors from:
   - /color-palletes/pallete-1/palette.scss (Current - Twilight Indigo theme)
   - /color-palletes/pallete-2/palette.scss (Prussian Blue theme)
   - /color-palletes/pallete-3/palette.scss (Soft Linen theme)

   Each palette file contains HEX, HSL, and RGB versions.
   Copy the CSS HEX values and update the mapping below.
   
   CURRENT PALETTE: Palette 1 (Twilight Indigo)
   ======================================== */
:root {
   /* === PALETTE COLORS ===
       These are the base colors from your palette.
       Update these when switching palettes.
    */

   /* Palette 1: Twilight Indigo Theme */
   --palette-1: #393842;
   /* Graphite - dark background */
   --palette-2: #34415A;
   /* Twilight Indigo - primary accent */
   --palette-3: #FDFDFA;
   /* Porcelain - light/text */
   --palette-4: #30292B;
   /* Shadow Grey - darkest background */
   --palette-5: #857974;
   /* Taupe - muted accent */


   /* Palette 2: Prussian Blue Theme */
   /* --palette-1: #393842; */
   /* Graphite - dark background */
   /* --palette-2: #12264A; */
   /* Prussian Blue - primary accent */
   /* --palette-3: #34415A; */
   /* Twilight Indigo (as secondary) */
   /* --palette-4: #FBFCFC; */
   /* Porcelain - light/text */
   /* --palette-5: #6F5642; */
   /* Coffee Bean - muted accent */



   /* Palette 3: Soft Linen Theme (Lighter) */
   /* --palette-1: #30292B; */
   /* Shadow Grey */
   /* --palette-2: #E9E1D6; */
   /* Soft Linen */
   /* --palette-3: #C9C4C2; */
   /* Silver */
   /* --palette-4: #FBFBF9; */
   /* Porcelain */
   /* --palette-5: #857974; */
   /* Taupe */



   /* === SEMANTIC MAPPING ===
       These map palette colors to their semantic purpose.
       Adjust based on your palette's color characteristics.
    */

   /* Primary Brand Color */
   --color-primary: var(--palette-2);
   --color-primary-light: color-mix(in srgb, var(--palette-2) 80%, white);
   --color-primary-dark: color-mix(in srgb, var(--palette-2) 80%, black);

   /* Background/Surface Colors */
   --color-graphite: var(--palette-1);
   --color-shadow: var(--palette-4);

   /* Light/Text Color */
   --color-porcelain: var(--palette-3);

   /* Accent Colors */
   --color-taupe: var(--palette-5);
   --color-taupe-light: color-mix(in srgb, var(--palette-5) 70%, white);

   /* Surface Colors (derived from palette) */
   --surface-bg: var(--color-shadow);
   --surface-card: var(--color-graphite);
   --surface-elevated: color-mix(in srgb, var(--palette-1) 85%, white);
   --surface-border: color-mix(in srgb, var(--palette-1) 75%, white);

   /* Text Colors */
   --text-primary: var(--color-porcelain);
   --text-secondary: var(--color-taupe-light);
   --text-muted: var(--color-taupe);
}
/* ========================================
   CSS Variables & Design Tokens
   ======================================== */
:root {
    /* === Accent Colors (consistent across palettes) === */

    /* Gold (for highlights/CTAs) */
    --color-gold: #edca9a;
    --color-gold-light: #976135;
    --color-gold-dark: #dab384;

    /* Semantic Colors */
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-error: #F44336;
    --color-info: #2196F3;

    /* === Typography === */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', var(--font-sans);
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

    /* === Spacing === */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* === Border Radius === */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* === Shadows === */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.2);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px -2px rgb(0 0 0 / 0.2);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.2), 0 4px 6px -4px rgb(0 0 0 / 0.2);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.2), 0 8px 10px -6px rgb(0 0 0 / 0.2);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-glow-sm: 0 0 15px rgba(212, 175, 55, 0.2);

    /* === Transitions === */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* === Z-Index Scale === */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
    --z-notification: 500;
}
/* ========================================
   Global Resets & Base Styles
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background-color: var(--surface-bg);
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
}
h1 {
    font-size: var(--text-5xl);
}
h2 {
    font-size: var(--text-4xl);
}
h3 {
    font-size: var(--text-3xl);
}
h4 {
    font-size: var(--text-2xl);
}
h5 {
    font-size: var(--text-xl);
}
h6 {
    font-size: var(--text-lg);
}
p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}
a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--color-gold-light);
}
/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    line-height: 1;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-shadow);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--color-gold);
}
.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-shadow);
}
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: var(--space-2) var(--space-4);
}
.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--surface-elevated);
}
.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}
/* ========================================
   Card Styles
   ======================================== */
.card {
    background: var(--surface-card);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
}
.card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow-sm);
}
.card-glass {
    background: rgba(57, 56, 66, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 253, 250, 0.1);
}
/* ========================================
   Form Elements
   ======================================== */
.form-group {
    margin-bottom: var(--space-6);
}
.input,
.textarea,
.select {
    width: 100%;
    padding: var(--space-4);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--surface-elevated);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}
.input:focus,
.textarea:focus,
.select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.input::placeholder,
.textarea::placeholder {
    color: var(--text-muted);
}
.textarea {
    min-height: 120px;
    resize: vertical;
}
.label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
}
/* ========================================
   Layout
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}
.container-sm {
    max-width: 800px;
}
.container-lg {
    max-width: 1400px;
}
.section {
    padding: var(--space-20) 0;
}
.section-sm {
    padding: var(--space-12) 0;
}
/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(48, 41, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav-logo {
    height: 50px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    font-weight: var(--font-medium);
    transition: color var(--transition-fast);
}
.nav-link:hover {
    color: var(--color-gold);
}
.nav-cta {
    margin-left: var(--space-4);
}
/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}
/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(52, 65, 90, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.hero-logo {
    width: 100%;
    height: clamp(200px, 15vw, 300px);
    padding: 1rem 0px;
}
.hero-eyebrow {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gold);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}
.hero-title .highlight {
    background-image: linear-gradient(8deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-gold);
    /* Fallback */
    display: inline-block;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}
/* ========================================
   Features / Services Grid
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}
.feature-card {
    text-align: center;
    padding: var(--space-8);
}
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: var(--radius-xl);
    font-size: var(--text-2xl);
}
.feature-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}
.feature-description {
    color: var(--text-secondary);
    font-size: var(--text-base);
}
/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}
.section-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-4);
}
.section-title {
    margin-bottom: var(--space-4);
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-lg);
}
/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}
.testimonial-card {
    padding: var(--space-8);
}
.testimonial-quote {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: var(--color-gold);
}
.testimonial-name {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}
.testimonial-event {
    font-size: var(--text-sm);
    color: var(--text-muted);
}
/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-graphite);
    border-top: 1px solid var(--surface-border);
    padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}
.footer-brand {
    max-width: 300px;
}
.footer-logo {
    height: 40px;
    margin-bottom: var(--space-4);
}
.footer-tagline {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}
.footer-heading {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: var(--space-2);
}
.footer-links a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}
.footer-links a:hover {
    color: var(--color-gold);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--surface-border);
}
.footer-copyright {
    color: var(--text-muted);
    font-size: var(--text-sm);
}
.footer-social {
    display: flex;
    gap: var(--space-4);
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-elevated);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}
.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-shadow);
}
/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
.animate-fade-in {
    animation: fadeIn var(--transition-slow) ease-out;
}
.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}
/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.gap-2 {
    gap: var(--space-2);
}
.gap-4 {
    gap: var(--space-4);
}
.gap-6 {
    gap: var(--space-6);
}
.gap-8 {
    gap: var(--space-8);
}
.mt-4 {
    margin-top: var(--space-4);
}
.mt-8 {
    margin-top: var(--space-8);
}
.mb-4 {
    margin-bottom: var(--space-4);
}
.mb-8 {
    margin-bottom: var(--space-8);
}
.gradient-text {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ========================================
   Responsive Breakpoints
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}
@media (max-width: 768px) {

    h1,
    .hero-title {
        font-size: var(--text-4xl);
    }

    h2 {
        font-size: var(--text-3xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }

    .container {
        padding: 0 var(--space-4);
    }

    .section {
        padding: var(--space-12) 0;
    }

    /* Mobile navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--surface-bg);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        border-bottom: 1px solid var(--surface-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {

    h1,
    .hero-title {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    .btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }

    .btn-lg {
        padding: var(--space-4) var(--space-8);
        font-size: var(--text-base);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}