/* ============================================
   LYKORA LLC — Main Stylesheet
   Dark Premium Design with Gold Accents
   ============================================ */

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

:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #111111;
    --bg-card: #161210;
    --bg-card-hover: #1a1714;
    --gold: #d4a853;
    --gold-light: #e0b860;
    --gold-dark: #b8903f;
    --green: #1d9e75;
    --green-light: #5dca5d;
    --green-dark: #0a140a;
    --green-bg: #0f1a0f;
    --green-border: #1a3a1a;
    --text-primary: #f0ece4;
    --text-secondary: #a09888;
    --text-muted: #706860;
    --text-dim: #504840;
    --border: #2a2520;
    --border-light: #3a3020;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--gold-light);
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

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


/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-llc {
    font-weight: 300;
    font-size: 14px;
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: var(--bg-card-hover);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
}


/* --- HERO SECTION --- */
.hero-section {
    padding-top: 150px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-logo-large {
    width: 200px;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.1));
}

.hero-photo-placeholder {
    width: 200px;
    height: 70px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.photo-initials {
    font-size: 20px;
    color: var(--gold);
    font-weight: 500;
}

.photo-label {
    font-size: 10px;
    color: var(--text-muted);
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

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

.stat-number {
    display: block;
    font-size: 26px;
    font-weight: 500;
    color: var(--gold);
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}


/* --- VISION CARDS --- */
.vision-section {
    background: var(--bg-primary);
}

.section-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.subsection-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 16px;
    margin-top: 40px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.vision-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color var(--transition), transform var(--transition);
}

.vision-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-card-hover);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.star-icon, .moon-icon {
    font-size: 18px;
}

.vision-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.vision-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.philosophy-quote {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.philosophy-quote p {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.quote-author {
    font-size: 13px;
    color: var(--text-muted);
}


/* --- TRADING SECTION --- */
.trading-section {
    background: var(--bg-secondary);
}

.trading-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.trading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.trading-chart-title {
    font-size: 15px;
    font-weight: 500;
}

.free-badge {
    font-size: 11px;
    padding: 4px 12px;
    background: var(--green-border);
    color: var(--green-light);
    border-radius: 16px;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 140px;
    padding-top: 10px;
}

.chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-width: 8px;
    transition: background var(--transition);
    cursor: pointer;
}

.chart-bar:hover {
    background: var(--gold) !important;
}

.chart-bar.green { background: #1d6e3a; }
.chart-bar.red { background: #6e1d1d; }

.chart-days {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-dim);
}

.platform-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.platform-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.platform-name {
    font-size: 18px;
    color: var(--gold);
    font-weight: 500;
}

.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.topic-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.topic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}


/* --- FUXION SECTION --- */
.fuxion-section {
    background: var(--bg-primary);
}

.fuxion-hero-card {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}

.fuxion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.fuxion-logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-dark);
    border: 2px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fuxion-logo-circle span {
    color: var(--green-light);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.fuxion-logo-circle small {
    font-size: 8px;
    color: #3d8a3d;
}

.partner-badge {
    display: inline-block;
    font-size: 10px;
    padding: 3px 10px;
    background: var(--green-border);
    color: var(--green-light);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.fuxion-title {
    font-size: 24px;
    color: var(--green-light);
    font-weight: 500;
}

.fuxion-desc {
    font-size: 14px;
    color: #608060;
    line-height: 1.8;
}

.nutraceutical-info {
    font-size: 13px;
    color: #506850;
    line-height: 1.7;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--green-border);
}

.nutraceutical-info strong {
    color: var(--green-light);
}

.fuxion-green {
    color: var(--green-light) !important;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.category-card {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color var(--transition);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--green-light);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cat-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: #1a2a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--green-light);
    flex-shrink: 0;
}

.category-card h4 {
    font-size: 14px;
    color: #c0d8c0;
    font-weight: 500;
}

.cat-products {
    font-size: 12px;
    color: #506850;
    line-height: 1.5;
    margin-top: 4px;
}

.cat-price {
    display: inline-block;
    font-size: 13px;
    color: var(--green-light);
    font-weight: 500;
    margin-top: 8px;
}


/* --- FAQ --- */
.faq-container {
    margin-bottom: 16px;
}

.faq-item {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #c0d8c0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-main);
    transition: background var(--transition);
}

.faq-question:hover {
    background: #142014;
}

.faq-arrow {
    color: var(--green-light);
    font-size: 12px;
    transition: transform var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 16px;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer p {
    font-size: 13px;
    color: #608060;
    line-height: 1.7;
}

.fuxion-quote {
    border-color: var(--green-border) !important;
}


/* --- ETSY / LYKORAMEMORIES --- */
.etsy-section {
    background: var(--bg-secondary);
}

.etsy-banner {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border-light);
    position: relative;
    padding: 60px 24px;
    background: linear-gradient(135deg, #2a1f14 0%, #1a1410 40%, #2a1f14 100%);
    text-align: center;
}

.glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.glow-1 { top: -20px; left: 15%; }
.glow-2 { top: -30px; right: 20%; }
.glow-3 { bottom: -40px; left: 50%; transform: translateX(-50%); }

.etsy-flourish {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
}

.etsy-tagline {
    font-family: var(--font-display);
    font-size: 32px;
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.etsy-sub {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 3px;
}

.handcrafted-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #1a1410;
    border-radius: var(--radius);
    border: 1px solid #2a2015;
    margin-bottom: 32px;
}

.handcrafted-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2a1f14;
    border: 1.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.handcrafted-text h3 {
    font-size: 16px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 4px;
}

.handcrafted-text p {
    font-size: 14px;
    color: #8a7860;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.gallery-img {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a1410;
}

.lamp-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 160, 0.2) 0%, rgba(212, 168, 83, 0.06) 50%, transparent 70%);
}

.lamp-icon {
    position: relative;
    z-index: 1;
    font-size: 40px;
    color: var(--gold);
}

.gallery-info {
    padding: 16px;
}

.gallery-tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 10px;
    background: #2a1f14;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.gallery-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.gallery-price {
    display: block;
    font-size: 16px;
    color: var(--gold);
    font-weight: 500;
    margin-top: 8px;
}


/* --- CONTACT --- */
.contact-section {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: border-color var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
}

.contact-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-card a {
    font-size: 13px;
    color: var(--text-secondary);
    word-break: break-all;
}

.contact-card a:hover {
    color: var(--gold);
}


/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg-primary);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover {
    background: var(--bg-card-hover);
    color: var(--gold-light);
}

.btn-green {
    background: var(--green);
    color: #fff;
}
.btn-green:hover {
    background: #24b888;
    color: #fff;
}

.cta-center {
    text-align: center;
    margin-top: 32px;
}

.cta-url {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.etsy-url {
    color: var(--text-muted);
}


/* --- FOOTER --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-brand-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--border-light);
}

.fb-icon {
    width: 18px;
    height: 18px;
    background: #1877f2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--text-dim);
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }

    .nav-menu.open {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-description {
        margin: 0 auto 28px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

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

    .platform-cards,
    .topics-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .etsy-tagline {
        font-size: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
    }

    .handcrafted-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 9px;
    }
}
