/* OLMACSEEDS - Neon Research & Development Theme */
:root {
    --neon-pink: #ff00aa;
    --neon-purple: #aa00ff;
    --neon-green: #00ff66;
    --neon-blue: #00ccff;
    --neon-cyan: #00ffff;
    --dark-bg: #050810;
    --darker-bg: #020408;
    --card-bg: rgba(20, 25, 35, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a8b0;
    --text-muted: #606878;
    --gradient-primary: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    --gradient-secondary: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    --gradient-accent: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --glow-pink: 0 0 20px rgba(255, 0, 170, 0.6), 0 0 40px rgba(255, 0, 170, 0.4), 0 0 60px rgba(255, 0, 170, 0.2);
    --glow-purple: 0 0 20px rgba(170, 0, 255, 0.6), 0 0 40px rgba(170, 0, 255, 0.4), 0 0 60px rgba(170, 0, 255, 0.2);
    --glow-green: 0 0 20px rgba(0, 255, 102, 0.6), 0 0 40px rgba(0, 255, 102, 0.4), 0 0 60px rgba(0, 255, 102, 0.2);
    --glow-blue: 0 0 20px rgba(0, 204, 255, 0.6), 0 0 40px rgba(0, 204, 255, 0.4), 0 0 60px rgba(0, 204, 255, 0.2);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.accent {
    background: var(--neon-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 102, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--neon-pink);
    box-shadow: var(--glow-pink);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: var(--glow-pink); }
    50% { opacity: 0.7; box-shadow: 0 0 30px rgba(255, 0, 170, 0.8); }
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 15px rgba(0, 255, 102, 0.8); }
    50% { opacity: 0.7; box-shadow: 0 0 30px rgba(0, 255, 102, 1); }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.kkr-link {
    margin-left: auto;
}

.kkr-link:hover {
    transform: scale(1.1);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    opacity: 0.7;
}

.neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--neon-pink);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(40px, 10vw, 80px);
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.2s both;
    background: linear-gradient(135deg, #aa00ff, #ff00aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(24px, 5vw, 48px);
    color: var(--neon-green);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.tagline {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 0, 170, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-secondary:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: var(--glow-green);
}

/* Footer */
.footer {
    background: #000000;
    padding: 12px 0;
    border-top: 1px solid rgba(170, 0, 255, 0.05);
    margin-top: auto;
    min-height: 5vh;
    width: 100%;
}

.footer-content {
    text-align: center;
    padding: 5px 0;
}

.footer-logo {
    display: none;
}

.footer-logo .logo-icon {
    font-size: 24px;
    color: var(--neon-purple);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.footer-tagline {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    opacity: 0.6;
}

.footer-links {
    display: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 80px 24px;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
}

/* Strain Detail - Hide all images/emojis/emblems on detail page only */
.strain-detail-page .strain-emblem-container,
.strain-detail-page .strain-emblem-img,
.strain-detail-page .strain-emblem,
.strain-detail-page .strain-hero-image,
.strain-detail-page .strain-hero-img,
.strain-detail-page .related-image,
.strain-detail-page .strain-emoji,
.strain-detail-page .strain-placeholder,
.strain-detail-page .related-card .strain-placeholder {
    display: none !important;
}

/* Hide any ::before content with symbols */
.strain-card::before,
.related-card::before,
.strain-hero-inner::before {
    display: none !important;
    content: none !important;
}

/* Strain Detail Images */
.strain-images-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.strain-name-with-emblem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.strain-hero-emblem {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 102, 0.5);
    background: rgba(10, 15, 25, 0.8);
}

.strain-name-text {
    text-align: center;
}

.strain-name-emblem {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    border: 2px solid rgba(0, 255, 102, 0.5);
}

.strain-photo-container {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 102, 0.3);
    background: rgba(10, 15, 25, 0.8);
}

.strain-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strain-emblem-container-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 102, 0.5);
    background: rgba(10, 15, 25, 0.8);
}

.strain-emblem-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Strain Detail Page Text - Bright Yellow */
.strain-detail-page .strain-hero-info,
.strain-detail-page .lineage-info,
.strain-detail-page .lineage-info p,
.strain-detail-page .quick-stats-grid,
.strain-detail-page .effects-list,
.strain-detail-page .strain-meta,
.strain-detail-page .strain-status,
.strain-detail-page .strain-availability,
.strain-detail-page .detail-section,
.strain-detail-page .detail-section p,
.strain-detail-page .detail-section h2,
.strain-detail-page .detail-section h3 {
    color: #00ff66 !important;
}

.strain-detail-page .detail-section h2 .accent,
.strain-detail-page .detail-section h3 .accent {
    color: #00ff66 !important;
}

/* Logo size control */
.logo img, .logo-image {
    max-width: 40px !important;
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
}

/* GROW YOUR OWN Button - Neon Pulsating */
.grow-your-own-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #ff00aa;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 0, 170, 0.3), rgba(170, 0, 255, 0.3));
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 0, 170, 0.6),
        0 0 40px rgba(255, 0, 170, 0.4),
        0 0 60px rgba(255, 0, 170, 0.2),
        inset 0 0 20px rgba(255, 0, 170, 0.2);
    animation: neon-pulse 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.grow-your-own-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 0, 170, 0.5), rgba(170, 0, 255, 0.5));
    box-shadow: 
        0 0 30px rgba(255, 0, 170, 0.8),
        0 0 60px rgba(255, 0, 170, 0.5),
        0 0 90px rgba(255, 0, 170, 0.3);
}

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 0, 170, 0.6),
            0 0 40px rgba(255, 0, 170, 0.4),
            0 0 60px rgba(255, 0, 170, 0.2);
        border-color: #ff00aa;
    }
    50% {
        box-shadow: 
            0 0 35px rgba(255, 0, 170, 0.9),
            0 0 70px rgba(255, 0, 170, 0.6),
            0 0 100px rgba(255, 0, 170, 0.4);
        border-color: #ff66cc;
    }
}

/* FAMILY TREE Button - Glowing Green */
.family-tree-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #00ff66;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.3), rgba(0, 204, 102, 0.3));
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 20px rgba(0, 255, 102, 0.6),
        0 0 40px rgba(0, 255, 102, 0.4),
        0 0 60px rgba(0, 255, 102, 0.2),
        inset 0 0 20px rgba(0, 255, 102, 0.2);
    animation: green-pulse 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-left: 12px;
}

.family-tree-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.5), rgba(0, 204, 102, 0.5));
    box-shadow: 
        0 0 30px rgba(0, 255, 102, 0.8),
        0 0 60px rgba(0, 255, 102, 0.5),
        0 0 90px rgba(0, 255, 102, 0.3);
}

@keyframes green-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 255, 102, 0.6),
            0 0 40px rgba(0, 255, 102, 0.4),
            0 0 60px rgba(0, 255, 102, 0.2);
        border-color: #00ff66;
    }
    50% {
        box-shadow: 
            0 0 35px rgba(0, 255, 102, 0.9),
            0 0 70px rgba(0, 255, 102, 0.6),
            0 0 100px rgba(0, 255, 102, 0.4);
        border-color: #66ff99;
    }
}
