/* ============================================
   Soul'd Out Foods LLC — Food Truck Website
   Colors from logo: #D42B2B (red), #F7931E (orange), 
   #FFD700 (gold), #1A1A1A (charcoal), #FFF8F0 (warm white)
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF8F0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D42B2B;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #FFD700, #F7931E);
    margin: 15px 0;
    border-radius: 2px;
}

.section-title.text-center::after {
    margin: 15px auto;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #D42B2B, #B91C1C);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 43, 43, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 43, 43, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
}

.btn-secondary:hover {
    background: white;
    color: #D42B2B;
}

.full-width { width: 100%; }

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover { color: #FFD700; }

.hamburger { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background: #FFD700; margin: 3px 0; transition: 0.3s; border-radius: 2px; }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C1810 40%, #4A1A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 43, 43, 0.15), transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(247, 147, 30, 0.1), transparent 50%);
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.hero-logo-wrap { margin-bottom: 30px; }

.hero-logo-img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.9rem;
}

/* ========== COMING SOON BANNER ========== */
.coming-soon-banner {
    background: linear-gradient(135deg, #D42B2B, #B91C1C);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coming-soon-banner span {
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-block;
    margin-top: 6px;
    opacity: 0.9;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: #FFF8F0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 20px 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 43, 43, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    color: #D42B2B;
    margin-bottom: 0.3rem;
}

.stat-text { color: #666; font-weight: 500; font-size: 0.9rem; }

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1A1A1A, #4A1A0A);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1rem;
    gap: 15px;
}

/* ========== MENU ========== */
.menu-preview {
    padding: 100px 0;
    background: white;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin: 3rem 0;
}

.menu-card {
    background: #FFF8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.menu-card.featured {
    border: 2px solid #FFD700;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.15);
}

.menu-card-header {
    background: linear-gradient(135deg, #D42B2B, #B91C1C);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.menu-card-header h3 { font-size: 1.3rem; margin-bottom: 4px; }

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #1A1A1A;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-card-image { height: 180px; overflow: hidden; }

.menu-img-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A, #3D1A0A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-content {
    padding: 24px;
}

.menu-card-content h4 {
    color: #D42B2B;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.menu-highlights {
    list-style: none;
    margin-top: 12px;
}

.menu-highlights li {
    margin-bottom: 6px;
    color: #555;
    padding-left: 16px;
    position: relative;
}

.menu-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #F7931E;
    border-radius: 50%;
}

.menu-cta-note {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 2rem;
}

/* ========== LOCATIONS ========== */
.locations {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A, #2C1810);
    color: white;
}

.locations .section-title { color: #FFD700; }
.locations .section-title::after { background: linear-gradient(to right, #D42B2B, #F7931E); }
.locations .section-subtitle { color: rgba(255,255,255,0.7); }

.location-finder { margin: 3rem 0; }

.location-card-launch {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #D42B2B, #F7931E);
    color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 0 auto;
}

.launch-logo-wrap { margin-bottom: 20px; }
.launch-logo { height: 100px; width: auto; border-radius: 8px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }
.launch-heading { font-size: 2rem; margin-bottom: 10px; }
.launch-date { font-size: 1.2rem; font-weight: bold; margin-bottom: 8px; }
.launch-desc { font-size: 1rem; margin-bottom: 12px; opacity: 0.95; }
.launch-areas { font-size: 0.95rem; margin-bottom: 20px; opacity: 0.9; }

.launch-cta-box {
    background: rgba(255,255,255,0.15);
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.launch-cta-box p { margin: 0; font-size: 0.95rem; }

.btn-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1A1A1A;
    color: #FFD700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-launch:hover { background: #000; }

.social-follow {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.follow-text { margin-bottom: 1rem; font-size: 1rem; color: rgba(255,255,255,0.8); }

.social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.social-btn.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-btn.facebook { background: #1877F2; }
.social-btn:hover { transform: translateY(-2px); }

/* ========== CATERING ========== */
.catering {
    padding: 100px 0;
    background: #FFF8F0;
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.catering-description { font-size: 1.05rem; margin-bottom: 2rem; color: #555; }

.catering-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 2rem;
}

.package {
    background: white;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.package:hover { transform: translateY(-4px); }
.package h4 { color: #D42B2B; margin-bottom: 6px; font-size: 1rem; }

.package-price {
    font-size: 1.4rem;
    color: #F7931E;
    font-weight: 700;
    margin-bottom: 4px;
}

.catering-form {
    background: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.catering-form h3 { color: #D42B2B; margin-bottom: 1.5rem; text-align: center; }

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.catering-form-fields input,
.catering-form-fields select,
.catering-form-fields textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E8E0D8;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #FFF8F0;
}

.catering-form-fields input:focus,
.catering-form-fields select:focus,
.catering-form-fields textarea:focus {
    outline: none;
    border-color: #D42B2B;
    background: white;
}

.catering-form-fields textarea { resize: vertical; margin-bottom: 12px; }
.catering-form-fields button { margin-top: 8px; }

/* ========== EXPECTATIONS (replaces testimonials) ========== */
.expectations {
    padding: 100px 0;
    background: white;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 3rem;
}

.expectation-card {
    background: #FFF8F0;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.expectation-card:hover { transform: translateY(-4px); }
.expectation-card svg { margin-bottom: 16px; }
.expectation-card h4 { color: #D42B2B; margin-bottom: 8px; font-size: 1.15rem; }
.expectation-card p { color: #666; line-height: 1.6; font-size: 0.95rem; }

/* ========== MERCH ========== */
.merch {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A, #2C1810);
    color: white;
}

.merch .section-title { color: #FFD700; }
.merch .section-title::after { background: linear-gradient(to right, #D42B2B, #F7931E); }
.merch .section-subtitle { color: rgba(255,255,255,0.75); }

.merch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.merch-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.merch-card-img {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    height: 180px;
}

.merch-card-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    border-radius: 6px;
}

.merch-card-info {
    padding: 20px 24px 24px;
}

.merch-card-info h4 {
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.merch-card-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.92rem;
}

.merch-notice {
    text-align: center;
    margin-top: 2.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 900px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .merch-card-img {
        height: 130px;
        padding: 8px;
    }
    .merch-card-img img {
        max-height: 115px;
    }
    .merch-card-info {
        padding: 12px 14px 16px;
    }
    .merch-card-info h4 {
        font-size: 0.95rem;
    }
    .merch-card-info p {
        font-size: 0.8rem;
    }
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A, #2C1810);
    color: white;
}

.contact .section-title { color: #FFD700; }
.contact .section-title::after { background: linear-gradient(to right, #D42B2B, #F7931E); }

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-description { font-size: 1.05rem; margin-bottom: 2rem; opacity: 0.9; }

.contact-details { display: grid; gap: 24px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item svg { margin-top: 4px; flex-shrink: 0; }
.contact-item h4 { margin-bottom: 2px; color: #FFD700; font-size: 1rem; }
.contact-item p { opacity: 0.9; font-size: 0.95rem; }

.contact-form {
    background: rgba(255, 255, 255, 0.06);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 { color: #FFD700; margin-bottom: 1.5rem; text-align: center; }

.contact-form .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.5); }

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
}

/* ========== FOOTER ========== */
.footer {
    background: #0D0D0D;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img { height: 50px; width: auto; border-radius: 4px; }
.footer-logo h3 { color: #FFD700; font-size: 1.1rem; }
.footer-tagline { color: #F7931E; font-style: italic; font-size: 0.85rem; }
.footer-description { margin-bottom: 1.5rem; opacity: 0.7; line-height: 1.6; font-size: 0.9rem; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover { background: #D42B2B; }

.footer-section h4 { color: #FFD700; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }
.footer-section a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s ease; font-size: 0.9rem; }
.footer-section a:hover { color: #FFD700; }

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-hours h5 { color: #F7931E; margin: 1rem 0 6px; font-size: 0.9rem; }
.footer-hours p { font-size: 0.85rem; opacity: 0.7; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.footer-bottom-content { text-align: center; opacity: 0.5; font-size: 0.85rem; }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #D42B2B;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 43, 43, 0.3);
}

.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #B91C1C; transform: translateY(-2px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .about-content, .catering-content, .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #1A1A1A;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 12px 0; }
    .hamburger { display: flex; }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero-title { font-size: 2.2rem; }
    .hero-logo-img { height: 130px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-badges { flex-direction: column; align-items: center; }
    .menu-cards { grid-template-columns: 1fr; }
    .about-stats, .catering-packages { grid-template-columns: 1fr; }
    .form-group { grid-template-columns: 1fr; }
    .contact-form .form-group { grid-template-columns: 1fr; }
    .social-buttons { flex-direction: column; align-items: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-contact p { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-logo-img { height: 110px; }
    .section-title { font-size: 1.7rem; }
    .nav-container { height: 70px; }
    .logo-img { height: 45px; }
    .logo-text { font-size: 1.1rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

button:focus, input:focus, textarea:focus, select:focus, a:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

img { transition: opacity 0.3s ease; }
