/* Zionsville Fixture - Brand Identity */
:root {
    --vintage-green: #1B3B2F;  /* Matches Truck Wrap */
    --vintage-cream: #F9F7F1;  /* Matches Wheels */
    --gold-leaf: #C8A962;      /* Bright Gold (For Dark Backgrounds) */
    --gold-text-dark: #9E7D35; /* Antique Gold (For White Backgrounds) */
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
}

/* Global Reset */
* {
    box-sizing: border-box;
}

/* Added explicit base size to scale rems consistently */
html {
    font-size: 18px; /* Increases base size from 16px to 18px (12.5% bigger) */
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--vintage-cream);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header {
    background-color: var(--vintage-green);
    color: var(--vintage-cream);
    padding: 20px 0;
    border-bottom: 4px solid var(--gold-leaf);
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 2.0rem;
    color: var(--gold-leaf);
    text-decoration: none;
    /* Added to center the stack */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tagline {
    font-size: 0.85rem;
    color: var(--vintage-cream);
    letter-spacing: 2px;
    margin-top: 6px;
    display: block;
    position: relative;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
}

.btn-nav {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.hero {
    background-color: var(--vintage-green);
    color: var(--vintage-cream);
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.4rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gold-leaf);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.btn-gold {
    background-color: var(--gold-leaf);
    color: var(--vintage-green);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s;
    border: 1px solid var(--gold-leaf);
    font-size: 1.05rem;
}

header .btn-gold {
    font-size: 1.0rem;
    padding: 12px 24px;
    white-space: nowrap;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-leaf);
}

.trust-bar {
    background-color: var(--vintage-cream);
    padding: 15px 0;
    text-align: center;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 0; /* Reset container margin for the trust bar */
    margin-bottom: 0;
}

.trust-bar span {
    font-weight: bold;
    color: var(--vintage-green);
    font-size: 1rem;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.menu-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 10px 40px 40px 40px;
    border: 1px solid #ddd;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
}

.menu-section {
    margin-bottom: 50px;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-category {
    border-bottom: 2px solid var(--vintage-green);
    color: var(--vintage-green);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.service-grid {
    display: block;
}

.service-card {
    background: transparent;
    padding: 18px 0;
    border-bottom: 1px dotted #ccc;
    display: block;
}

.service-card h3 {
    color: var(--vintage-green);
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.price {
    color: var(--gold-text-dark);
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0.5px 0.5px 0px rgba(0,0,0,0.1);
}

.note {
    margin-top: 15px;
    font-style: italic;
    color: #555;
}
.service-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
}

.menu-policy-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--vintage-green);
    gap: 30px;
}

.policy-item {
    flex: 1;
    text-align: center;
}

.policy-header {
    font-family: 'Playfair Display', serif;
    color: var(--gold-text-dark);
    font-weight: bold;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.policy-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.section-features {
    text-align: center;
    margin-top: 60px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    text-align: left;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--vintage-green);
    display: block;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.feature-list {
    padding-left: 1.2rem;
    margin-top: 10px;
    color: #444;
}

footer {
    background-color: #222;
    color: #888;
    text-align: center;
    padding: 50px 20px;
    font-size: 1.0rem;
    margin-top: 60px;
}

.hica-notice {
    font-size: 0.85rem;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}
