/**
 * Big Smoke BBQ - Main Stylesheet
 * Dark theme with fire accents
 */

:root {
    --primary-black: #1a1a1a;
    --smoke-gray: #2d2d2d;
    --fire-red: #c41e3a;
    --ember-orange: #ff6b35;
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --accent-gold: #ffd700;
    --border-color: #444;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--ember-orange);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--ember-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--fire-red);
}

/* Header & Navigation */
.navbar {
    background-color: var(--primary-black) !important;
    border-bottom: 3px solid var(--fire-red);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--ember-orange);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--fire-red);
}

.phone-header {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: bold;
}

a.phone-header {
    text-decoration: none;
    color: var(--accent-gold);
}

a.phone-header:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Buttons */
.btn-fire {
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--ember-orange) 100%);
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-fire:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-outline-fire {
    background: transparent;
    color: var(--ember-orange);
    border: 2px solid var(--ember-orange);
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-fire:hover {
    background: var(--ember-orange);
    color: white;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    background: #000;
}

.carousel-item img,
.carousel-item video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--smoke-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Menu Cards */
.menu-card {
    background: var(--smoke-gray);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--ember-orange);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--smoke-gray);
}

.menu-card-body {
    padding: 20px;
}

.menu-card h3 {
    color: var(--ember-orange);
    margin-bottom: 10px;
}

.menu-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

.badge-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--fire-red);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Location Section */
#location {
    background: var(--primary-black);
}

.hours-table {
    background: var(--smoke-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.hours-table h3 {
    color: var(--ember-orange);
    margin-bottom: 20px;
}

.hours-table .day {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-table .day:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background-color: #0d0d0d;
    color: var(--text-muted);
    padding: 40px 0 20px;
    border-top: 3px solid var(--fire-red);
}

.footer-section h4 {
    color: var(--ember-orange);
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--ember-orange);
}

/* Order CTA Section */
.order-cta {
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--ember-orange) 100%);
    padding: 60px 0;
    text-align: center;
}

.order-cta h2 {
    color: white;
    font-size: 3rem;
}

.order-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Forms */
.form-control,
.form-select {
    background: var(--smoke-gray);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 5px;
}

.form-control:focus,
.form-select:focus {
    background: var(--smoke-gray);
    border-color: var(--ember-orange);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-label {
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

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

    .carousel-content p {
        font-size: 1.2rem;
    }

    .navbar-brand img {
        height: 50px;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .order-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .btn-fire,
    .btn-outline-fire {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-fire {
    color: var(--ember-orange);
}

.text-gold {
    color: var(--accent-gold);
}

.bg-smoke {
    background-color: var(--smoke-gray);
}

.border-fire {
    border-color: var(--fire-red) !important;
}

/* Loading spinner */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.loading::after {
    content: "🔥";
    display: inline-block;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}