/* --- GLOBAL VARIABLES & RESET --- */
:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-red: #d32f2f; /* Deep Dark Red */
    --accent-hover: #ff5252;
    --dark-card: #1a1a1a;
    --nav-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- NAVIGATION --- */
nav {
    height: var(--nav-height);
    background-color: #000;
    border-bottom: 2px solid var(--accent-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-red);
    font-family: 'Georgia', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--accent-red);
}

/* --- HERO SECTION (Home) --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1517694712208-37b6ab71195e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 span { color: var(--accent-red); }
.hero-text p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--accent-red);
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
}
.btn-primary:hover { background-color: var(--accent-hover); transform: scale(1.05); }

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    margin-left: 15px;
}
.btn-secondary:hover { background-color: var(--accent-red); color: white; }

/* --- SECTIONS GENERAL --- */
section { padding: 80px 0; }
h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--accent-red);
    display: inline-block;
    padding-bottom: 10px;
}
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

/* --- STORE PAGE STYLES --- */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.item-image {
    width: 100%;
    height: 200px;
    background-color: #333;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* --- FORM STYLES (Contact) --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info, .form-wrapper {
    flex: 1;
    min-width: 300px;
}

form {
    background-color: var(--dark-card);
    padding: 40px;
    border-radius: 8px;
}

.form-group { margin-bottom: 20px; }

label { display: block; margin-bottom: 8px; font-weight: bold; }

input, textarea, select {
    width: 100%;
    padding: 12px;
    background-color: #000;
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

textarea { resize: vertical; min-height: 150px; }

/* --- FOOTER --- */
footer {
    background-color: #000;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
}

footer a { color: var(--accent-red); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simple hide for mobile in this demo */
    .hero-text h1 { font-size: 2.5rem; }
}
