/* --- VARIABLES --- */
:root {
    --primary-color: #8B0000; /* Deep Red/Burgundy */
    --secondary-color: #1a1a1a; /* Dark Gray */
    --accent-color: #D4AF37; /* Gold */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* --- RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

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

.section-light { background: #fff; padding: 60px 0; }
.section-dark { background: var(--secondary-color); color: var(--text-light); padding: 60px 0; }

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    margin-bottom: 20px;
}
.divider.center { margin: 0 auto 40px auto; }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-family: var(--font-heading);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #660000;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

/* --- NAVBAR --- */
.navbar {
    background: var(--secondary-color);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.logo img {
    height: 40px;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1597075687490-8f673c6c17f6?q=80&w=1600') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FEATURES BANNER --- */
.features-banner {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* --- SPLIT LAYOUT (ABOUT) --- */
.split-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.split-layout > div {
    flex: 1;
}

.image-content img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- PRODUCTS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.product-card {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 15px 5px;
    color: var(--accent-color);
}

.product-card p {
    padding: 0 15px 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* --- CONTACT SECTION --- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info, .map-container {
    flex: 1;
    min-width: 300px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.hours-list {
    list-style: none;
    margin: 20px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.hours-list span {
    font-weight: bold;
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: #777;
    padding: 40px 0 20px;
    text-align: center;
}

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

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
}

/* --- AGE GATE --- */
.age-gate {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-gate-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.age-buttons {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.age-buttons .btn-secondary {
    border-color: #333;
    color: #333;
}

.hidden {
    display: none !important;
}

/* --- STICKY BUTTONS --- */
.sticky-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.call-btn { background-color: #28a745; }
.visit-btn { background-color: #007bff; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }

    .split-layout { flex-direction: column; }

    .sticky-actions {
        left: 20px;
        right: 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    .sticky-btn {
        flex: 1;
        justify-content: center;
    }
}
