/* Import Custom Font */
@font-face {
    font-family: 'Kingthings Trypewriter';
    src: url('assets/fonts/Kingthings Trypewriter 2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Menu Bar */
.menu-bar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    height: 60px;
}

.logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Menu Buttons */
.menu-buttons {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.menu-buttons a {
    font-family: 'Kingthings Trypewriter', serif;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    font-weight: normal;
}

.menu-buttons a:hover {
    color: #555555;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-family: 'Kingthings Trypewriter', serif;
    color: #ffffff;
    font-size: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: normal;
}

/* Store Hours Section */
.store-hours {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.hours-content h2 {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 3em;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    color: #000;
    font-weight: normal;
}

.hours-content .hours-days {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 2em;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    color: #000;
    font-weight: normal;
}

.hours-content .hours-time {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 2em;
    letter-spacing: 0.1em;
    color: #000;
    font-weight: normal;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.menu-title {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    color: #000;
    font-weight: normal;
}

.menu-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.menu-page {
    max-width: 45%;
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .menu-page {
        max-width: 100%;
    }
}

/* Food Gallery Section */
.food-gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-title {
    text-align: center;
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 48px;
    margin-bottom: 50px;
    color: #333;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: 30px 15px 15px;
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .food-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }

    .gallery-item {
        height: 150px;
    }

    .gallery-label {
        font-size: 12px;
        padding: 20px 8px 10px;
    }

    .gallery-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .food-gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-label {
        font-size: 14px;
        padding: 25px 12px 12px;
    }
}

/* Interior Gallery Section */
.interior-gallery-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.interior-gallery-title {
    text-align: center;
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 42px;
    margin-bottom: 40px;
    color: #333;
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
    padding: 0 20px;
}

.interior-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.interior-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .interior-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }

    .interior-item {
        height: 140px;
    }

    .interior-gallery-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .interior-gallery-section {
        padding: 40px 0 60px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .interior-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .interior-item {
        height: 200px;
    }
}

/* 360 Panorama Section */
.panorama-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.panorama-section-alt {
    background-color: #ffffff;
}

.panorama-header {
    text-align: center;
    margin-bottom: 30px;
}

.panorama-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.panorama-header p {
    font-size: 1rem;
    color: #666666;
}

.viewer-wrap {
    position: relative;
    width: 100%;
}

#panorama {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #000000;
}

#panorama-upstairs {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #000000;
}

.panorama-loading {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    transition: opacity 240ms ease;
}

.panorama-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-card {
    display: grid;
    gap: 14px;
    justify-items: center;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 320px;
    text-align: center;
}

.spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000000;
    animation: spin 0.9s linear infinite;
}

.loading-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .spinner { animation: none; }
    .panorama-loading { transition: none; }
}

/* Main Content */
.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-section h2 {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: center;
}

.content-section p {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.location-section h2 {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    color: #000;
    font-weight: normal;
}

.location-content {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #000;
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item h3 {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #000;
}

.info-item p {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.info-item a {
    font-family: 'Kingthings Trypewriter', serif;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #000;
    text-decoration: underline;
}

.location-map {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.map-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.map-btn svg {
    width: 24px;
    height: 24px;
}

/* Hours Table */
.hours-table {
    margin: 0 auto;
    border-collapse: collapse;
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1.4em;
    letter-spacing: 0.05em;
    color: #000;
}

.hours-table td {
    padding: 8px 30px;
    text-align: left;
}

.hours-table td:last-child {
    text-align: right;
}

@media (max-width: 480px) {
    .hours-table {
        font-size: 1.1em;
    }
    .hours-table td {
        padding: 6px 15px;
    }
}

/* Media Coverage Section */
.media-coverage {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.media-coverage h2 {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: 0.1em;
    font-weight: normal;
}

.media-card {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 30px 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    max-width: 700px;
}

.media-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #ccc;
}

.media-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.media-card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.media-source {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
}

.media-headline {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1.15rem;
    color: #000;
    line-height: 1.5;
}

.media-cta {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 0.95rem;
    color: #555;
    font-weight: bold;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.media-card:hover .media-cta {
    color: #000;
}

@media (max-width: 768px) {
    .media-card {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }

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

    .media-headline {
        font-size: 1rem;
    }

    .media-coverage h2 {
        font-size: 2rem;
    }
}

/* Visit Us Social Icons */
.visit-social {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.social-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link span {
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.social-link:hover {
    color: #000;
    transform: scale(1.1);
}

.yelp-link {
    gap: 10px;
}

.yelp-link:hover {
    opacity: 0.8;
}

.yelp-link span {
    color: #000;
}

.yelp-logo {
    display: block;
    width: auto;
    height: 32px;
    fill: #000;
}

/* Footer */
footer {
    background-color: #333333;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-links a {
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #cccccc;
    transform: scale(1.1);
}

.social-links svg {
    width: 28px;
    height: 28px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    display: none;
    color: #fff;
    font-family: 'Kingthings Trypewriter', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 20px 15px;
    transition: all 0.3s ease;
    z-index: 10001;
    border-radius: 4px;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    
    .menu-buttons {
        margin-top: 15px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .menu-buttons a {
        font-size: 16px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 36px;
    }

    .lightbox-nav {
        font-size: 30px;
        padding: 15px 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .location-content {
        flex-direction: column;
        gap: 40px;
    }

    .location-info {
        width: 100%;
    }

    .location-section h2 {
        font-size: 2.2em;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-buttons {
        gap: 15px;
    }
    
    .menu-buttons a {
        font-size: 14px;
    }
    
    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .lightbox-nav {
        font-size: 24px;
        padding: 10px 8px;
    }

    .location-section h2 {
        font-size: 1.8em;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 1rem;
    }

    .map-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}
