/* Foodtruck Page Styles - Nikky */
.foodtruck-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(45, 45, 45, 0.8)), url('/static/Images/burger-8578288_1280.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid var(--yellow);
}

.hero-content h1 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-foodtruck {
    background-color: var(--dark-gray);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.event-types-section {
    background-color: rgba(0, 0, 0, 0.3);
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-type-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(45, 45, 45, 0.8));
    z-index: 0;
}

.event-type-card > * {
    position: relative;
    z-index: 1;
}

.event-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border-color: var(--yellow);
}

.event-icon {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.event-type-card h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.event-type-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.foodtruck-pricelist-section {
    background-color: var(--dark-gray);
}

.pricelist-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.pricelist-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.pricelist-minimum {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.625rem 1.25rem;
    background-color: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 999px;
    color: var(--yellow);
    font-weight: 600;
    font-size: 1rem;
}

.pricelist-minimum i {
    font-size: 0.95rem;
}

.formulas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}

.formula-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.formula-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    border-color: var(--yellow);
}

.formula-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.formula-card-header h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    margin: 0;
}

.formula-asterisk {
    color: var(--yellow);
}

.formula-price {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--yellow);
    white-space: nowrap;
}

.formula-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.pricelist-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.pricelist-detail-block {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.pricelist-detail-block h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.15rem;
    color: var(--yellow);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricelist-detail-block h3 i {
    font-size: 1rem;
    opacity: 0.9;
}

.pricelist-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pricelist-tags li {
    padding: 0.35rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.pricelist-tags .tag-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85em;
}

.pricelist-preparations {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.pricelist-footnotes {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    padding: 1.25rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
}

.pricelist-footnotes p {
    margin: 0 0 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricelist-footnotes p:last-child {
    margin-bottom: 0;
}

.pricelist-outro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.booking-section {
    background-color: var(--dark-gray);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-step {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(45, 45, 45, 0.8));
    z-index: 0;
}

.booking-step > * {
    position: relative;
    z-index: 1;
}

.booking-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border-color: var(--yellow);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--yellow);
    color: var(--black);
    font-family: 'Funnel Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--yellow);
}

.booking-step h3 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.booking-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-top: 2px solid var(--yellow);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-family: 'Funnel Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

@media (max-width: 900px) {
    .formulas-grid,
    .pricelist-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
    section { padding: 3rem 0; }
    .section-header h2 { font-size: 2rem; }
    .section-subtitle { font-size: 1.1rem; }
    .event-types-grid, .formulas-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricelist-details { grid-template-columns: 1fr; }
    .booking-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .cta-content h2 { font-size: 2rem; }
    .cta-content p { font-size: 1.1rem; }
    .about-content p { font-size: 1rem; }
}
