/* The Chuck Wagon Food Truck Co. - Business Plan Website Styles */

/* Color Palette */
:root {
    --primary-gold: #D4AF37;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --accent-red: #c41e3a;
    --border-color: #ddd;
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 60px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu .btn-checklist {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.nav-menu .btn-checklist:hover {
    background: #f4d03f;
    color: var(--dark-bg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
    padding-bottom: 4rem;
    /* Add spacing from bottom */
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Brand Section */
.brand-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.brand-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.brand-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-10px);
}

.brand-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.brand-item p {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info {
    text-align: center;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section.dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-gold);
}

.section.dark h2 {
    color: var(--primary-gold);
}

.section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: inherit;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.highlight-box h3 {
    color: var(--dark-bg);
    margin-top: 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.column ul {
    list-style-position: inside;
}

.column li {
    margin: 0.5rem 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    /* Clickable */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Menu Section */
.menu-hero {
    text-align: center;
    margin: 2rem 0;
}

.menu-hero img {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-category {
    margin: 4rem 0;
}

.category-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.menu-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.pricing {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.price {
    color: var(--primary-gold);
    font-weight: bold;
    display: block;
    margin-top: 1rem;
}

.price-note {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin-top: 1rem;
}

.margin-highlight {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Lemonade Categories */
.lemonade-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.lemonade-cat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.lemonade-cat h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.lemonade-cat ul {
    list-style: none;
}

.lemonade-cat li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Sauce Grid */
.sauce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sauce-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sauce-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.special-offer {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

/* Financials Section */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.financials-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.financials-table th {
    background: var(--dark-bg);
    color: var(--primary-gold);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.financials-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.financials-table tr:last-child td {
    border-bottom: none;
}

.financials-table .highlight {
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Bundle Highlight */
.bundle-highlight {
    background: var(--primary-gold);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    color: var(--dark-bg);
}

.bundle-highlight h3 {
    color: var(--dark-bg);
    margin-top: 0;
}

.bundle-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.bundle-stats div {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.bundle-stats .profit {
    background: var(--dark-bg);
    color: var(--primary-gold);
}

/* Revenue Projections */
.revenue-projections {
    margin: 3rem 0;
}

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

.card-header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.projection-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.projection-card:hover {
    transform: scale(1.05);
}

.projection-card.featured {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.projection-card h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.projection-card.featured h4 {
    color: var(--dark-bg);
}

.projection-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-red);
    margin: 1rem 0;
}

.projection-card.featured .projection-number {
    color: var(--dark-bg);
}

.projection-profit {
    font-weight: 600;
    margin-top: 1rem;
}

/* Marketing Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.merch-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-10px);
}

.merch-item img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.merch-item h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin: 1rem 0;
}

.loyalty-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.loyalty-image {
    width: 100%;
    border-radius: 10px;
}

.why-it-works {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.why-it-works h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.why-it-works ul {
    list-style-position: inside;
}

/* Forms Section */
.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.section.dark .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section.dark .form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.section.dark .form-card:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.form-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-card h3 {
    color: var(--text-dark);
    margin: 1rem 0;
}

.section.dark .form-card h3 {
    color: var(--primary-gold);
}

.section.dark .form-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Checklist Summary */
.checklist-summary {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.checklist-summary h3 {
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.checklist-summary ul {
    list-style-position: inside;
}

.checklist-summary li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--dark-bg);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0.5rem 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0.875rem 1.25rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation Container */
    .nav-container {
        padding: 0.75rem 1rem;
        min-height: 50px;
    }

    /* Hamburger Menu Display */
    .hamburger {
        display: flex;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 1rem 0;
        gap: 0;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .nav-menu .btn-checklist {
        margin: 0.5rem 1rem;
        border-radius: 5px;
        border-bottom: none;
        padding: 0.5rem 1rem;
    }

    /* Logo */
    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Adjust hero margin for smaller navbar */
    .hero {
        margin-top: 50px;
    }

    /* Hero Section */
    .hero {
        height: 40vh;
        min-height: 300px;
        align-items: center;
        /* Center vertically on mobile */
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }

    /* Brand Section */
    .brand-section {
        padding: 3rem 0;
    }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-item {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    /* Highlight Box */
    .highlight-box {
        padding: 1.5rem;
    }

    /* Two Column Layout */
    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Menu Section */
    .menu-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        padding: 1.25rem;
    }

    .menu-item h4 {
        font-size: 1.2rem;
    }

    .pricing {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    /* Lemonade Categories */
    .lemonade-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Sauce Grid */
    .sauce-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Tables */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .financials-table {
        font-size: 0.9rem;
    }

    .financials-table th,
    .financials-table td {
        padding: 0.75rem 0.5rem;
        min-width: 80px;
    }

    /* Bundle Highlight */
    .bundle-highlight {
        padding: 1.5rem;
    }

    .bundle-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Revenue Projections */
    .projection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projection-card {
        padding: 1.5rem;
    }

    .projection-number {
        font-size: 2rem;
    }

    /* Marketing Section */
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .merch-item {
        padding: 1.5rem;
    }

    /* Loyalty Section */
    .loyalty-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .why-it-works {
        padding: 1.25rem;
    }

    /* Forms Section */
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-icon {
        font-size: 3rem;
    }

    /* Checklist Summary */
    .checklist-summary {
        padding: 2rem;
        margin-top: 3rem;
    }

    .checklist-summary h3 {
        font-size: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
    }

    /* Footer */
    footer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {

    /* Extra small screens */
    .nav-container {
        padding: 0.5rem 0.75rem;
        min-height: 45px;
    }

    .logo {
        font-size: 0.9rem;
    }

    /* Adjust mobile menu for very small screens */
    .nav-menu {
        top: 45px;
        max-height: calc(100vh - 45px);
    }

    .hero {
        margin-top: 45px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .section h3 {
        font-size: 1.3rem;
    }

    /* Stats Grid - Single Column on Very Small Screens */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Contact Info */
    .contact-info p {
        font-size: 0.95rem;
    }

    /* Menu Items */
    .menu-item h4 {
        font-size: 1.1rem;
    }

    /* Table */
    .financials-table {
        font-size: 0.85rem;
    }

    .financials-table th,
    .financials-table td {
        padding: 0.6rem 0.4rem;
        min-width: 70px;
    }

    /* Projection Numbers */
    .projection-number {
        font-size: 1.75rem;
    }

    /* Reduce Padding Further */
    .section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 12px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}