/* =========================================
   CSS Custom Properties & Tokens
   ========================================= */
   :root {
    /* Color Palette */
    --bg-dark: #0B001A;
    --bg-darker: #05000C;
    --text-light: #F0F0F0;
    --text-muted: #A0A0A0;
    
    /* Brand Accents */
    --neon-green: #39FF14;
    --vibrant-purple: #9D00FF;
    --deep-indigo: #4B0082;
    --gold: #FFD700;
    --teal: #00FFEF;

    /* Typograpy */
    --font-main: 'Outfit', sans-serif;
    
    /* Spacing & Utilities */
    --section-spacing: 100px;
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media(max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.accent-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--teal));
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}
.center-bar {
    margin: 1rem auto 2rem auto;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: rgba(11, 0, 26, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 0, 255, 0.2);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(57, 255, 20, 0.1);
}

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

.brand-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(157, 0, 255, 0.8));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--text-light), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
}

.nav-links a:not(.btn) {
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition-smooth);
}
.nav-links a:not(.btn):hover::after {
    width: 100%;
}

@media(max-width: 768px) {
    .nav-links a:not(.btn) { display: none; }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 30px;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--vibrant-purple);
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.3) inset;
}
.btn-secondary:hover {
    background: var(--vibrant-purple);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}
.btn-outline:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}
.btn-instagram:hover {
    transform: scale(1.05);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('../assets/hero_bg.png') center/cover no-repeat;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(11,0,26,0.6), rgba(11,0,26,0.95));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.glitch-text {
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--vibrant-purple);
    animation: neonPulse 2s infinite alternate;
}

@media(max-width: 768px) {
    .glitch-text { font-size: 3rem; }
}

@keyframes neonPulse {
    0% { text-shadow: 0 0 10px var(--vibrant-purple), 0 0 20px var(--vibrant-purple); }
    100% { text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green); }
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.age-warning {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* =========================================
   About Section
   ========================================= */
.about-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-darker);
}

.text-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.radius-image {
    border-radius: var(--border-radius);
    border: 1px solid rgba(157, 0, 255, 0.3);
}

.image-glow {
    position: relative;
}
.image-glow::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: 20px; bottom: 20px;
    background: radial-gradient(circle, rgba(157,0,255,0.2) 0%, transparent 70%);
    z-index: -1;
    border-radius: inherit;
}

/* =========================================
   Products Section
   ========================================= */
.products-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

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

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--neon-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 3rem;
}

/* =========================================
   Location & Contact
   ========================================= */
.location-section {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-dark);
}

.neon-border {
    padding: 5px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--vibrant-purple), var(--neon-green));
}
.neon-border iframe {
    border-radius: calc(var(--border-radius) - 5px) !important;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.large-text strong {
    color: var(--neon-green);
}

.contact-methods {
    margin-bottom: 3rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hover-glow {
    transition: var(--transition-smooth);
}
.hover-glow:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.social-box {
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid rgba(157, 0, 255, 0.3);
    padding: 2rem;
    border-radius: var(--border-radius);
}
.social-box h3 {
    margin-bottom: 1rem;
}
.social-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo img {
    height: 30px;
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.strict-legal {
    margin-top: 0.5rem;
    font-size: 0.75rem !important;
    opacity: 0.5;
    text-transform: uppercase;
}

/* =========================================
   Animations
   ========================================= */
.hidden-onload {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible-onload {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in.appear {
    opacity: 1;
    transform: translateY(0);
}
