

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Montserrat:wght@600;700&family=Roboto:wght@400;500&family=Open+Sans:wght@400;500&display=swap');

body {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    margin: 0;
    background: #f8f8fb;
    color: #222;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header {
    background: #003366;
    color: #eee;
    padding: 0.75rem 0;
}

.admin-header {
    background: #333;
}

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

.logo {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 200;
    color: #eee;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.75rem;
    display: block;
    line-height: 0;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-nav a {
    margin-left: 1rem;
    color: #eee;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: #CCC;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-dropdown-toggle svg {
    display: block;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: #333;
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none;
    z-index: 100;
}

/* Add invisible hover bridge */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -1rem;
    right: -1rem;
    height: 1rem;
    display: none;
}

.nav-dropdown:hover::before {
    display: block;
}

.nav-dropdown-menu-right {
    left: auto;
    right: 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    margin: 0;
    color: #eee;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
    background: #444;
    text-decoration: none;
}

.nav-profile svg {
    stroke: #eee;
}

.main-content {
    padding: 1.5rem 1rem 3rem;
    background: #f8f8fb;
}

.site-footer {
    border-top: 1px solid #ddd;
    padding: 1rem 0;
    background: #fff;
    font-size: 0.85rem;
    color: #666;
}

/* Forms & tables */

.form .form-row {
    margin-bottom: 0.9rem;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="number"],
.form input[type="datetime-local"],
.form select,
.form textarea {
    width: 100%;
    max-width: 350px;
    padding: 0.4rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    box-sizing: border-box;
}

/* Centered form layout */
.form-container-centered {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.form-logo {
    margin: 2rem 0;
}

.form-logo img {
    max-width: 300px;
    height: auto;
}

.form-centered {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.form-centered input[type="text"],
.form-centered input[type="email"],
.form-centered input[type="password"],
.form-centered input[type="number"],
.form-centered input[type="datetime-local"],
.form-centered select,
.form-centered textarea {
    max-width: none;
}

.form-row-right {
    text-align: right;
}

/* Page logo and content blocks */
.page-logo {
    text-align: center;
    margin: 2rem 0;
}

.page-logo img {
    max-width: 300px;
    height: auto;
}

.content-block {
    max-width: 700px;
    margin: 0 auto;
}

.form button {
    padding: 0.45rem 1.2rem;
    border-radius: 4px;
    border: none;
    background: #222;
    color: #fff;
    cursor: pointer;
}

.form button:hover {
    background: #444;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #fff;
    font-size: 0.9rem;
}

.table th,
.table td {
    border: 1px solid #ddd;
    padding: 0.45rem 0.5rem;
    text-align: left;
}

.table th {
    background: #f0f0f0;
}

.errors {
    color: #b00020;
}

.notice {
    background: #e6f4ea;
    border: 1px solid #a3d3b1;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

/* Dinner layout */

.dinner-layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.dinner-main {
    flex: 2;
}

.dinner-sidebar {
    flex: 1;
}

.dinner-photo {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.restaurant-logo {
    max-width: 250px;
    max-height: 180px;
    object-fit: contain;
}

.dinner-address {
    font-size: 0.9rem;
    color: #555;
}

/* Buttons */

.btn-primary {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #444;
}

/* Favorites */

.btn-favorite {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: all 0.2s;
}

.btn-favorite:hover {
    border-color: #222;
}

.btn-favorite.favorited {
    background: #fff4e6;
    border-color: #ff9800;
    color: #ff9800;
}

.favorite-icon {
    font-size: 1.2rem;
}

.favorite-restaurants {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.favorite-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.favorite-logo {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.favorite-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
}

.favorite-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.favorite-info h3 a {
    color: #222;
    text-decoration: none;
}

.favorite-info h3 a:hover {
    text-decoration: underline;
}

.favorite-location {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.75rem 0;
}

.favorite-location a {
    color: #666;
    text-decoration: none;
}

.favorite-location a:hover {
    text-decoration: underline;
}

.favorite-dinners {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.favorite-dinners.no-upcoming {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.favorite-dates {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.favorite-dates li {
    padding: 0.25rem 0;
}

.favorite-dates a {
    color: #222;
    text-decoration: none;
}

.favorite-dates a:hover {
    text-decoration: underline;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .favorite-restaurants {
        grid-template-columns: 1fr;
    }
}

/* Home Page */

.home-city-section {
    margin-bottom: 3rem;
}

.home-upcoming-dinners-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid #222;
    text-transform: none;
    letter-spacing: 0.5px;
}

.home-city-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #222;
}

.home-city-heading a {
    color: #222;
    text-decoration: none;
}

.home-city-heading a:hover {
    text-decoration: underline;
}

.home-dinners {
    display: grid;
    gap: 1.5rem;
}

.home-dinner-datetime {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 0.5rem 0;
}

.home-dinner-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.home-dinner-content {
    display: flex;
    gap: 1.5rem;
}

.home-dinner-image {
    flex-shrink: 0;
    width: 400px;
    display: block;
    text-decoration: none;
}

.home-dinner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.home-dinner-info {
    flex: 1;
}

.home-dinner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.home-dinner-header a {
    text-decoration: none;
}

.home-dinner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
}

.home-dinner-info h4 {
    margin: 0;
    font-size: 1.3rem;
}

.home-dinner-info h4 a {
    color: #222;
    text-decoration: none;
}

.home-dinner-info h4 a:hover {
    text-decoration: underline;
}

.home-dinner-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.home-dinner-meta > span {
    margin-right: 1rem;
}

.home-dinner-meta .price-level {
    color: #28a745;
    font-weight: 600;
}

.home-dinner-seats {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.home-dinner-action {
    margin-bottom: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.home-dinner-action .btn-primary {
    flex: 0 1 auto;
}

.no-dinners {
    color: #666;
    font-style: italic;
}

.sold-out {
    color: #b71c1c;
    font-weight: 500;
}

@media (max-width: 768px) {
    .home-dinner-content {
        flex-direction: column;
    }
    
    .home-dinner-image {
        width: 100%;
    }
    
    .home-dinner-image img {
        height: 200px;
    }
    
    .home-dinner-action,
    .calendar-dinner-action,
    .dinner-card-action {
        flex-direction: column;
    }
    
    .home-dinner-action .btn-primary,
    .calendar-dinner-action .btn-primary,
    .dinner-card-action .btn-primary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Calendar Page */

.calendar-date-section {
    margin-bottom: 3rem;
}

.calendar-date {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #222;
}

.calendar-dinners {
    display: grid;
    gap: 1.5rem;
}

.calendar-dinner-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calendar-dinner-image {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-dinner-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 6px;
}

.calendar-dinner-info {
    flex: 1;
}

.calendar-dinner-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.calendar-dinner-info h3 a {
    color: #222;
    text-decoration: none;
}

.calendar-dinner-info h3 a:hover {
    text-decoration: underline;
}

.calendar-dinner-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.calendar-dinner-meta > span {
    margin-right: 1rem;
}

.calendar-dinner-meta .city a {
    color: #666;
    text-decoration: none;
}

.calendar-dinner-meta .city a:hover {
    text-decoration: underline;
}

.calendar-dinner-meta .price-level {
    color: #28a745;
    font-weight: 600;
}

.calendar-dinner-seats {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.calendar-dinner-action {
    margin-bottom: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.calendar-dinner-action .btn-primary {
    flex: 0 1 auto;
}

/* Cities Page */

.city-section {
    margin-bottom: 4rem;
}

.city-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #222;
}

.city-heading a {
    color: #222;
    text-decoration: none;
}

.city-heading a:hover {
    text-decoration: underline;
}

.city-meta {
    font-size: 1.2rem;
    color: #666;
    font-weight: normal;
    margin-left: 0.5rem;
}

.no-restaurants {
    color: #666;
    font-style: italic;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.restaurant-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}

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

.restaurant-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
}

.restaurant-card-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: #f8f8fb;
    border-radius: 6px;
}

.restaurant-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.restaurant-card-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #222;
}

.restaurant-card-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.restaurant-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

.restaurant-city {
    color: #888;
}

.restaurant-price {
    color: #28a745;
    font-weight: 600;
}

/* City Page */

.city-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #222;
}

.city-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
}

.city-header .city-meta {
    font-size: 1.5rem;
    color: #666;
    font-weight: normal;
}

.city-header p {
    margin: 0;
    font-size: 1.1rem;
    color: #666;
}

.city-dinners {
    display: grid;
    gap: 1.5rem;
}

.city-dinner-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city-dinner-image {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-dinner-image img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 6px;
}

.city-dinner-info {
    flex: 1;
}

.city-dinner-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.city-dinner-info h3 a {
    color: #222;
    text-decoration: none;
}

.city-dinner-info h3 a:hover {
    text-decoration: underline;
}

.city-dinner-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.city-dinner-meta > span {
    margin-right: 1rem;
}

.city-dinner-meta .date {
    font-weight: 600;
    color: #444;
}

.city-dinner-meta .price-level {
    color: #28a745;
    font-weight: 600;
}

.city-dinner-seats {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.city-dinner-action {
    margin-bottom: 0;
}
/* Dinner page custom styles moved from dinner.php */
.dinner-restaurant-logo-large {
    width: 180px;
    max-width: 100%;
    height: auto !important;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1em;
    display: block;
    text-align: left;
    vertical-align: top;
}
.dinner-photo-small {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 1.5em 0;
    text-align: left;
}
.restaurant-logo-wrap {
    text-align: left;
    height: auto;
    display: block;
}
.sidebar-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1em;
    margin-bottom: 1.2em;
}
.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Restaurant Page */

.restaurant-header {
    margin-bottom: 2rem;
}

.restaurant-title-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.restaurant-logo-large {
    width: 250px;
    max-width: 100%;
    height: auto !important;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
}

.restaurant-title-section h1 {
    margin: 0;
    font-size: 2.5rem;
}

.restaurant-location {
    margin: 0.25rem 0 0 0;
    font-size: 1.1rem;
}

.restaurant-location a {
    color: #666;
    text-decoration: none;
}

.restaurant-location a:hover {
    text-decoration: underline;
}

.restaurant-short-desc {
    font-size: 1.2rem;
    color: #444;
    margin: 0;
}

.restaurant-photo {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.restaurant-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.restaurant-section {
    margin-bottom: 2rem;
}

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

.info-block {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.info-block h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
}

.info-block p {
    margin: 0;
}

.restaurant-dinners h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #222;
}

.dinner-list {
    display: grid;
    gap: 1rem;
}

.dinner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dinner-card-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.dinner-card-content h3 a {
    color: #222;
    text-decoration: none;
}

.dinner-card-content h3 a:hover {
    text-decoration: underline;
}

.dinner-time {
    font-size: 1rem;
    color: #444;
    margin: 0 0 0.25rem 0;
}

.dinner-seats {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.dinner-card-action {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Ensure Reserve Your Seat button stays in container */
.dinner-card-action .btn-primary {
    flex: 0 1 auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 80%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Modal close button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.modal-close:hover {
    color: #222;
}

@media (max-width: 640px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: #eee;
        font-size: 2rem;
        cursor: pointer;
        padding: 0;
        line-height: 1;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #222;
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a,
    .nav-dropdown {
        margin: 0;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }
    
    .nav-dropdown-menu {
        position: static;
        display: block;
        background: #2a2a2a;
        border-radius: 0;
        padding-left: 1rem;
        margin-top: 0.5rem;
        box-shadow: none;
        min-width: auto;
    }
    
    .nav-dropdown::before {
        display: none !important;
    }
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #222;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 2px solid #222;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100%;
        box-sizing: border-box;
    }
    .modal-actions .btn-primary:not(:last-child),
    .modal-actions .btn-secondary:not(:last-child) {
        margin-bottom: 0.75rem;
    }
}

/* Responsive Design */

@media (max-width: 768px) {
    .home-dinner-card {
        flex-direction: column;
    }
    
    .home-dinner-image {
        width: 100%;
    }
    
    .home-dinner-image img {
        height: 200px;
    }
    
    .calendar-dinner-card {
        flex-direction: column;
    }
    
    .calendar-dinner-image {
        width: 100%;
    }
    
    .calendar-dinner-image img {
        height: 200px;
    }
    
    .restaurant-grid {
        grid-template-columns: 1fr;
    }
    
    .city-dinner-card {
        flex-direction: column;
    }
    
    .city-dinner-image {
        width: 100%;
    }
    
    .city-dinner-image img {
        height: 200px;
    }
    
    .restaurant-title-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .restaurant-info-grid {
        grid-template-columns: 1fr;
    }
    
    .dinner-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Hero section for home page */
.home-hero {
    color: #333;
    padding: 4rem 0 3rem;
    margin: -2rem -1rem 3rem;
    text-align: center;
}

.home-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
}

.home-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #7e7c7c;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.home-hero-cities {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2rem 0 0 0;
    color: #666;
}

.home-hero-cities a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.home-hero-cities a:hover {
    color: #222;
}

/* Base Typography */
h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    color: #222;
    line-height: 1.2;
}

h2 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1.25rem 0;
    color: #222;
    line-height: 1.3;
}

h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 1rem 0;
    color: #222;
    line-height: 1.3;
}

h4 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem 0;
    color: #222;
    line-height: 1.4;
}

p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #eee;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* Mobile nav close button - hide by default */
.nav-close {
    display: none;
}

@media (max-width: 640px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .home-hero {
        margin: 0 0 2rem;
        padding: 2rem 0 1.5rem;
    }
    
    .home-hero h1 {
        font-size: 1.8rem;
    }
    
    .home-hero p {
        font-size: 1rem;
    }
    
    .home-hero-cities {
        font-size: 0.85rem;
    }
    
    .home-city-heading {
        font-size: 1.5rem;
    }
    
    .home-dinner-datetime {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: #eee;
        font-size: 2rem;
        cursor: pointer;
        padding: 0;
        line-height: 1;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #222;
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a,
    .nav-dropdown {
        margin: 0;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }
    
    .nav-dropdown-menu {
        position: static;
        display: block;
        background: #2a2a2a;
        border-radius: 0;
        padding-left: 1rem;
        margin-top: 0.5rem;
        box-shadow: none;
        min-width: auto;
    }
    
    .nav-dropdown::before {
        display: none !important;
    }
}

.success-page {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.success-page h1 {
    color: #28a745;
    font-size: 2.5rem;
}

.booking-details {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.booking-details h2 {
    margin-top: 0;
}

.full-notice {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

/* Dinner Confirmation Page */
.dinner-confirm {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

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

.dinner-confirm h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
}

.confirmation-layout {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .confirmation-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.dinner-summary h2,
.booking-terms h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.detail-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
}

.dinner-photo-small {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.dinner-info {
    display: grid;
    gap: 0.75rem;
}

.dinner-info dt {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.25rem;
}

.dinner-info dd {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.deposit-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5f2d;
}

.terms-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.terms-box.disclaimer {
    background: #fff9e6;
    border-color: #ffd966;
}

.terms-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.terms-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #666;
    font-weight: bold;
}

.terms-list strong {
    color: #222;
}

.terms-list a {
    color: #0066cc;
    text-decoration: underline;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.btn-secondary,
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-primary {
    background: #2c5f2d;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #234d23;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .confirmation-actions {
        flex-direction: column;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
    }
}

/* International Telephone Input Styling */
.iti {
    width: 100%;
    display: block;
}

.iti__country-list {
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
}

.iti__country {
    padding: 8px 12px;
}

.iti__country:hover {
    background: #f5f5f5;
}

.iti__selected-country {
    background: transparent !important;
    padding: 0 !important;
}

.iti__flag-container {
    padding: 0;
}

/* Override form button styles for intl-tel-input */
.iti__selected-flag,
.form .iti__selected-flag {
    background: transparent !important;
    border: none !important;
    padding: 0 0 0 8px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
    cursor: pointer !important;
}

.iti__arrow,
.form .iti__arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555;
    margin-left: 6px;
}

input[type="tel"] {
    width: 100%;
    padding: 0.6rem;
    padding-left: 52px;
    box-sizing: border-box;
}

