@charset "UTF-8";
/* CSS Document */

/* ==========================================
   Lion Confidence - Complete Custom Styles
   Modern HTML5/CSS3 | Bootstrap 5
   ENRICHED COLOR SYSTEM
   ========================================== */

/* Font Awesome Integration */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Primary Gold Spectrum */
    --crown-gold: #D4AF37;
    --crown-gold-light: #F0D875;
    --crown-gold-dark: #B8941F;
    
    /* Fire Spectrum */
    --ember-orange: #E67E22;
    --ember-bright: #F39C12;
    --ember-deep: #C0392B;
    
    /* Dark Spectrum */
    --midnight-black: #0A0A0A;
    --void-black: #000000;
    --iron-grey: #2C3E50;
    --stone-grey: #34495E;
    
    /* Light Spectrum */
    --bone-white: #F8F6F0;
    --ivory: #FFFFFF;
    
    /* Accent (Sparingly) */
    --blood-red: #8B0000;
    --crimson: #C41E3A;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F0D875 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(240, 216, 117, 0.2) 100%);
    --gradient-fire: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #E74C3C 100%);
    --gradient-ember: linear-gradient(180deg, #E67E22 0%, #C0392B 100%);
    --gradient-depth: linear-gradient(180deg, #0A0A0A 0%, #1a1a2e 100%);
    --gradient-royal: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    
    /* Typography */
    --font-hero: 'Playfair Display', serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cinzel', serif;
    
    /* Spacing */
    --section-padding: 100px;
}

/* ==========================================
   Base Styles
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-depth);
    background-attachment: fixed;
    color: var(--bone-white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Enhanced texture overlay with shimmer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.02) 2px,
            rgba(212, 175, 55, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    animation: shimmer 15s linear infinite;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

body > * {
    position: relative;
    z-index: 2;
}

/* ==========================================
   Typography
   ========================================== */

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--crown-gold);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--bone-white);
    font-weight: 400;
    opacity: 0.9;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--crown-gold);
    font-weight: 600;
    line-height: 1.3;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--bone-white);
    opacity: 0.8;
}

.section-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--bone-white);
    opacity: 0.85;
    line-height: 1.8;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--crown-gold);
    font-weight: 600;
}

/* ==========================================
   Section Icons & Decorative Elements
   ========================================== */

.hero-icon,
.section-icon {
    font-size: 3rem;
    line-height: 1;
    position: relative;
    display: inline-block;
}

/* Add glow effect to icons */
.hero-icon,
.section-icon {
    filter: drop-shadow(0 0 20px rgba(207, 174, 101, 0.3));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(207, 174, 101, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(207, 174, 101, 0.5));
    }
}

/* ==========================================
   Navigation
   ========================================== */

.navbar {
    background-color: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(207, 174, 101, 0.1);
}

.navbar.scrolled {
    background-color: rgba(12, 12, 12, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.brand-text {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--crown-gold);
    letter-spacing: 2px;
    font-weight: 400;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bone-white) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--crown-gold) !important;
}

.btn-nav-cta {
    background-color: transparent;
    border: 1px solid var(--crown-gold);
    padding: 0.5rem 1.5rem !important;
    border-radius: 4px;
    margin-left: 1rem !important;
}

.btn-nav-cta:hover {
    background-color: var(--crown-gold);
    color: var(--midnight-black) !important;
}

.navbar-toggler {
    border-color: var(--crown-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23CFAE65' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   Hero Section
   ========================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--iron-grey) 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Layered background effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(207, 174, 101, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative corner elements */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(207, 174, 101, 0.1) 0%, transparent 70%);
    border-radius: 0 0 100% 0;
    pointer-events: none;
}
.hero-section {
    position: relative;
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);*/
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   Buttons
   ========================================== */

.btn-primary {
    background-color: var(--crown-gold);
    border: none;
    color: var(--midnight-black);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Shine effect on button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: #E0BE75;
    color: var(--midnight-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 174, 101, 0.4);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--crown-gold);
    color: var(--crown-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline-primary:hover {
    background-color: var(--crown-gold);
    color: var(--midnight-black);
    border-color: var(--crown-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 174, 101, 0.3);
}

/* ==========================================
   Content Sections
   ========================================== */

.about-section {
    background-color: var(--midnight-black);
    position: relative;
}

.content-block {
    background-color: var(--iron-grey);
    border-radius: 8px;
    border: 1px solid rgba(207, 174, 101, 0.2);
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect on hover */
.content-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(207, 174, 101, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.content-block:hover::before {
    opacity: 1;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--bone-white);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    opacity: 0.9;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--crown-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Decorative quote marks for blockquotes */
.king-quote {
    padding: 2rem;
    border-left: 4px solid var(--crown-gold);
    margin: 2rem 0;
    position: relative;
}

.king-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 2rem;
    color: var(--crown-gold);
    opacity: 0.2;
}

.king-quote::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 2rem;
    color: var(--crown-gold);
    opacity: 0.2;
}

/* ==========================================
   Modules Section
   ========================================== */

.modules-section {
    background: linear-gradient(180deg, var(--midnight-black) 0%, var(--iron-grey) 100%);
    position: relative;
    overflow: hidden;
}

/* Geometric pattern background */
.modules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, transparent 48%, rgba(207, 174, 101, 0.02) 49%, rgba(207, 174, 101, 0.02) 51%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(207, 174, 101, 0.02) 49%, rgba(207, 174, 101, 0.02) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

.module-card {
    background-color: var(--iron-grey);
    border: 1px solid rgba(207, 174, 101, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent */
.module-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(207, 174, 101, 0.1) 0%, transparent 100%);
    border-radius: 0 8px 0 100%;
    transition: all 0.4s ease;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--crown-gold), var(--ember-orange));
    transition: height 0.4s ease;
}

.module-card:hover::before {
    height: 100%;
}

.module-card:hover::after {
    width: 80px;
    height: 80px;
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--crown-gold);
    box-shadow: 0 12px 40px rgba(207, 174, 101, 0.15);
    background: linear-gradient(135deg, var(--iron-grey) 0%, rgba(207, 174, 101, 0.03) 100%);
}

.module-number {
    font-family: var(--font-hero);
    font-size: 3rem;
    color: var(--crown-gold);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
}

.module-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--crown-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.module-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--bone-white);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.module-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--crown-gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.module-link:hover {
    color: var(--ember-orange);
    transform: translateX(5px);
}

/* ==========================================
   Footer
   ========================================== */

.footer-section {
    background-color: var(--iron-grey);
    border-top: 1px solid rgba(207, 174, 101, 0.2);
}

.footer-brand {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--crown-gold);
    letter-spacing: 2px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--crown-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bone-white);
    opacity: 0.7;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bone-white);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--crown-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-newsletter .form-control {
    background-color: var(--midnight-black);
    border: 1px solid rgba(207, 174, 101, 0.3);
    color: var(--bone-white);
    padding: 0.7rem 1rem;
}

.footer-newsletter .form-control:focus {
    background-color: var(--midnight-black);
    border-color: var(--crown-gold);
    color: var(--bone-white);
    box-shadow: 0 0 0 0.2rem rgba(207, 174, 101, 0.15);
}

.footer-newsletter .btn-primary {
    padding: 0.7rem 1.5rem;
}

.footer-divider {
    border-color: rgba(207, 174, 101, 0.2);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--bone-white);
    opacity: 0.6;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-legal li a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--bone-white);
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-legal li a:hover {
    color: var(--crown-gold);
    opacity: 1;
}

/* ==========================================
   Sales Page Specific Styles
   ========================================== */

.sales-hero {
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--iron-grey) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.sales-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(207, 174, 101, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.other-list {
    list-style: none;
    padding: 0;
}

.other-list li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--bone-white);
    padding: 0.6rem 0;
    opacity: 0.6;
    text-decoration: line-through;
}

.sales-module-card {
    background-color: var(--iron-grey);
    border: 1px solid rgba(207, 174, 101, 0.15);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.sales-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--crown-gold), var(--ember-orange));
    transition: height 0.4s ease;
}

.sales-module-card:hover::before {
    height: 100%;
}

.sales-module-card:hover {
    transform: translateY(-8px);
    border-color: var(--crown-gold);
    box-shadow: 0 12px 40px rgba(207, 174, 101, 0.15);
}

.signature-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--crown-gold), var(--ember-orange));
    color: var(--midnight-black);
    padding: 0.4rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-radius: 0 8px 0 8px;
}

.included-item {
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    border-color: var(--crown-gold);
}

.included-item h4 {
    color: var(--crown-gold);
    font-size: 1.1rem;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 991px) {
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .btn-nav-cta {
        margin-left: 0 !important;
        margin-top: 1rem !important;
    }
    
    .module-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */

.text-gold {
    color: var(--crown-gold);
}

.text-ember {
    color: var(--ember-orange);
}

.bg-iron {
    background-color: var(--iron-grey);
}

.bg-midnight {
    background-color: var(--midnight-black);
}