/* --- Killer Lacquer Shared Stylesheet --- */
:root {
    --bg-dark: #0d0d11;
    --bg-card: #16161f;
    --primary-purple: #8126d3;
    --accent-orange: #ff7518;
    --text-light: #e2e2e9;
    --text-muted: #a0a0b0;
    --font-display: 'Georgia', serif;
    --font-sans: 'Arial', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(rgba(129, 38, 211, 0.04) 15%, transparent 16%);
    background-size: 30px 30px;
    padding-top: 80px; /* Space for fixed navbar */
}

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Navigation Bar --- */
.navbar {
    background-color: rgba(13, 13, 17, 0.95);
    border-bottom: 2px solid var(--primary-purple);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 4px rgba(129, 38, 211, 0.5));
}

/* Text fallback styling if logo image fails to load */
.logo-fallback {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    text-shadow: 0 0 8px rgba(129, 38, 211, 0.6);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-orange);
    text-shadow: 0 0 5px var(--accent-orange);
}

.nav-links a.active {
    border-bottom: 2px solid var(--accent-orange);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* --- Layout Reusable Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: calc(100vh - 280px); /* Keeps footer at bottom if content is short */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-title::after {
    content: ' 🦇 ';
    display: block;
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-top: 0.5rem;
}

.cta-btn {
    background-color: var(--primary-purple);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(129, 38, 211, 0.4);
    display: inline-block;
}

.cta-btn:hover {
    background-color: transparent;
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 0 15px var(--accent-orange);
}

/* --- Footer --- */
footer {
    background-color: #060608;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(129, 38, 211, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 100%;
}

footer .bats-divider {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        border-bottom: 2px solid var(--primary-purple);
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

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

    .brand-logo img {
        height: 45px;
    }
}

/* --- Home Page Specific Styles --- */
.hero {
    min-height: 65vh;
    margin-top: -80px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    position: relative;
    background: linear-gradient(180deg, rgba(22,22,31,0.3) 0%, rgba(13,13,17,1) 100%);
}

.hero::before {
    content: '🦇';
    position: absolute;
    top: 15%;
    left: 12%;
    font-size: 2.5rem;
    opacity: 0.25;
    animation: floatAnimation 5s ease-in-out infinite;
}

.hero::after {
    content: '🏰';
    position: absolute;
    bottom: 0;
    right: 8%;
    font-size: 9rem;
    opacity: 0.08;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero h1 {
    font-size: 3.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px var(--primary-purple);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.featured-preview {
    background-color: rgba(22, 22, 31, 0.4);
    padding: 4rem 0;
    border-top: 1px solid rgba(129, 38, 211, 0.1);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .hero p { font-size: 1.1rem; }
}

/* --- Products Page Specific Styles --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(129, 38, 211, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(255, 117, 24, 0.15);
}

.product-image-placeholder {
    height: 280px;
    background: linear-gradient(45deg, #13131a, #1f1f2e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    border-bottom: 1px solid rgba(129, 38, 211, 0.1);
}

.product-image-placeholder::before {
    content: '🦇';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.3;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-price {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
}

/* --- Reviews Page Specific Styles --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-purple);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
    border-left-color: var(--accent-orange);
    transform: translateX(5px);
}

.stars {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
}

.reviewer-name {
    display: block;
    margin-top: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-purple);
    font-size: 0.85rem;
}

/* --- About Page Specific Styles --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-text p.highlight {
    color: var(--accent-orange);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.about-image-placeholder {
    flex: 0.8;
    height: 380px;
    background: linear-gradient(135deg, #16161f, #0d0d11);
    border: 2px dashed var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
}

.about-image-placeholder::after {
    content: '⚡';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2.5rem;
    }
    .about-image-placeholder {
        width: 100%;
        height: 280px;
    }
}
