/* OpenTable-inspired Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2D333F;
    background: #F5F5F5;
    font-size: 16px;
}

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

/* Header - OpenTable style */
.site-header {
    background: #2D333F;
    color: white;
    padding: 16px 0;
    margin-bottom: 32px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.site-header h1 a {
    color: white;
    text-decoration: none;
}

.site-header h1 a:hover {
    opacity: 0.9;
}

.site-header nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.site-header nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.site-header nav a:hover {
    opacity: 0.8;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: #999;
}

.breadcrumbs a {
    color: #DA3743;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Main Content */
.site-main {
    min-height: 60vh;
    padding-bottom: 48px;
}

/* Cards - OpenTable style */
.card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card h2 {
    margin-bottom: 16px;
    color: #2D333F;
    font-size: 22px;
    font-weight: 600;
}

.card h3 {
    margin-bottom: 12px;
    color: #2D333F;
    font-size: 18px;
    font-weight: 600;
}

/* Lists */
.school-list, .city-list, .state-list {
    list-style: none;
}

.school-list li, .city-list li, .state-list li {
    padding: 16px;
    border-bottom: 1px solid #E8E8E8;
    transition: background 0.2s;
}

.school-list li:last-child, .city-list li:last-child, .state-list li:last-child {
    border-bottom: none;
}

.school-list li:hover, .city-list li:hover, .state-list li:hover {
    background: #F9F9F9;
}

.school-list a, .city-list a, .state-list a {
    color: #2D333F;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.school-list a:hover, .city-list a:hover, .state-list a:hover {
    color: #DA3743;
}

.count {
    color: #666;
    font-weight: normal;
    font-size: 14px;
    margin-left: 8px;
}

/* CTA Buttons - OpenTable style */
.btn-primary, .btn-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #DA3743;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .btn-cta:hover {
    background: #C02E3A;
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #2D333F;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: 1px solid #E8E8E8;
}

.btn-secondary:hover {
    background: #F9F9F9;
    border-color: #DA3743;
    color: #DA3743;
}

/* Menu Links - CTA style */
.menu-links {
    margin: 32px 0;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-links h2 {
    margin-bottom: 16px;
    color: #2D333F;
    font-size: 20px;
    font-weight: 600;
}

.menu-link {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 12px;
    padding: 14px 28px;
    background: #DA3743;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}

.menu-link:hover {
    background: #C02E3A;
    color: white;
}

.menu-link.secondary {
    background: white;
    color: #2D333F;
    border: 1px solid #E8E8E8;
}

.menu-link.secondary:hover {
    background: #F9F9F9;
    border-color: #DA3743;
    color: #DA3743;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 32px 0;
    justify-content: center;
}

.pagination a, .pagination span {
    padding: 8px 12px;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    text-decoration: none;
    color: #2D333F;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination a:hover {
    background: #F9F9F9;
    border-color: #DA3743;
    color: #DA3743;
}

.pagination .current {
    background: #DA3743;
    color: white;
    border-color: #DA3743;
}

/* Search Form - OpenTable style */
.search-form {
    margin: 32px 0;
}

.search-form form {
    display: flex;
    gap: 12px;
    max-width: 600px;
}

.search-form input {
    flex: 1;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    transition: border-color 0.2s;
}

.search-form input:focus {
    outline: none;
    border-color: #DA3743;
}

.search-form button {
    padding: 14px 32px;
    font-size: 16px;
    background: #DA3743;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.search-form button:hover {
    background: #C02E3A;
}

/* School Info - Card style */
.school-page, .menu-page {
    background: white;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.school-info h1, .menu-page h1 {
    margin-bottom: 16px;
    color: #2D333F;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.menu-page .location {
    color: #666;
    font-size: 16px;
    margin-bottom: 24px;
}

.last-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 16px;
}

.school-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
    padding: 24px;
    background: #F9F9F9;
    border-radius: 8px;
}

.school-details dt {
    font-weight: 600;
    color: #2D333F;
    font-size: 14px;
    margin-bottom: 4px;
}

.school-details dd {
    margin-left: 0;
    color: #666;
    font-size: 15px;
}

/* Menu Table - OpenTable style */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-table thead {
    background: #2D333F;
    color: white;
}

.menu-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-table td {
    padding: 16px;
    border-bottom: 1px solid #E8E8E8;
    color: #2D333F;
    font-size: 15px;
}

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

.menu-table tbody tr:hover {
    background: #F9F9F9;
}

.menu-table tbody tr:nth-child(even) {
    background: #FAFAFA;
}

.menu-table tbody tr:nth-child(even):hover {
    background: #F5F5F5;
}

/* Menu Content */
.menu-content {
    margin: 24px 0;
}

.menu-intro {
    margin-bottom: 24px;
}

.menu-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.menu-content h2 {
    color: #2D333F;
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

.menu-content h2:first-child {
    margin-top: 0;
}

.menu-content h3 {
    color: #2D333F;
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.menu-content h4 {
    color: #2D333F;
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0 8px 0;
}

.menu-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.7;
}

.menu-content ul, .menu-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #666;
}

.menu-content li {
    margin-bottom: 8px;
}

/* FAQ */
.faq, .faq-section {
    margin: 32px 0;
}

.faq-item {
    margin-bottom: 24px;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 8px;
    border-left: 4px solid #DA3743;
}

.faq-item h3, .faq-item h4 {
    color: #2D333F;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Menu Navigation */
.menu-navigation {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E8E8E8;
}

.menu-navigation h3 {
    margin-bottom: 16px;
    color: #2D333F;
    font-size: 18px;
    font-weight: 600;
}

.menu-navigation ul {
    list-style: none;
    padding: 0;
}

.menu-navigation li {
    margin-bottom: 12px;
}

.menu-navigation a {
    color: #DA3743;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.menu-navigation a:hover {
    color: #C02E3A;
    text-decoration: underline;
}

/* About School Section */
.about-school, .about-school-section {
    margin: 24px 0;
    padding: 24px;
    background: #F9F9F9;
    border-radius: 8px;
}

.about-school h2, .about-school-section h2 {
    color: #2D333F;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-school p, .about-school-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* What Included, How It Works, etc. */
.what-included, .how-it-works, .allergens-note, .contact-info {
    margin: 24px 0;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 8px;
}

.what-included h3, .how-it-works h3, .allergens-note h3, .contact-info h3 {
    color: #2D333F;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.what-included p, .how-it-works p, .allergens-note p, .contact-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Disclaimer */
.disclaimer {
    margin-top: 32px;
    padding: 20px;
    background: #FFF3CD;
    border-left: 4px solid #FFC107;
    border-radius: 4px;
    clear: both;
}

.disclaimer p {
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

.disclaimer strong {
    color: #856404;
    font-weight: 600;
}

/* Home Page */
.home-page h1 {
    font-size: 36px;
    font-weight: 600;
    color: #2D333F;
    margin-bottom: 16px;
    line-height: 1.2;
}

.home-page .lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

/* Footer */
.site-footer {
    background: #2D333F;
    color: white;
    padding: 32px 0;
    margin-top: 48px;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: #CCCCCC;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .site-header h1 {
        font-size: 20px;
    }
    
    .school-details {
        grid-template-columns: 1fr;
    }
    
    .search-form form {
        flex-direction: column;
    }
    
    .menu-link {
        display: block;
        text-align: center;
        margin-right: 0;
    }
    
    .home-page h1 {
        font-size: 28px;
    }
    
    .school-info h1, .menu-page h1 {
        font-size: 24px;
    }
}
