/* Restaurant Demo Styles */

/* Demo Banner */
.demo-banner {
    background: linear-gradient(135deg, #e11d48, #dc2626);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.demo-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.demo-banner__text {
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-banner__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.demo-banner__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Restaurant Color Palette */
:root {
    --restaurant-primary: #1a472a;
    --restaurant-primary-light: #2d5a3d;
    --restaurant-secondary: #c41e3a;
    --restaurant-accent: #d4af37;
    --restaurant-bg: #fafafa;
    --restaurant-white: #ffffff;
    --restaurant-text: #2c2c2c;
    --restaurant-text-light: #666666;
    --restaurant-border: #e5e5e5;
}

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

/* Header & Navigation */
.restaurant-header {
    background: var(--restaurant-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 48px; /* Below demo banner */
    z-index: 999;
}

.restaurant-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.restaurant-nav__brand {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.restaurant-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--restaurant-primary);
    margin: 0;
    font-family: 'Georgia', serif;
}

.restaurant-tagline {
    font-size: 1rem;
    color: var(--restaurant-secondary);
    font-style: italic;
    font-weight: 500;
}

.restaurant-nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.restaurant-nav__link {
    color: var(--restaurant-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.restaurant-nav__link:hover {
    color: var(--restaurant-primary);
}

/* Buttons */
.restaurant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.restaurant-btn--primary {
    background: var(--restaurant-primary);
    color: white;
}

.restaurant-btn--primary:hover {
    background: var(--restaurant-primary-light);
    transform: translateY(-1px);
}

.restaurant-btn--outline {
    background: transparent;
    color: var(--restaurant-primary);
    border: 2px solid var(--restaurant-primary);
}

.restaurant-btn--outline:hover {
    background: var(--restaurant-primary);
    color: white;
}

.restaurant-btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

.restaurant-btn--xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Hero Section */
.restaurant-hero {
    background: linear-gradient(135deg, var(--restaurant-bg) 0%, #f0f4f1 100%);
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.restaurant-hero__content {
    max-width: 500px;
}

.restaurant-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--restaurant-primary);
    margin: 0 0 1rem 0;
    line-height: 1.1;
    font-family: 'Georgia', serif;
}

.restaurant-hero__subtitle {
    font-size: 1.2rem;
    color: var(--restaurant-text-light);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.restaurant-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.restaurant-hero__image {
    position: relative;
}

.restaurant-hero__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Features Bar */
.restaurant-features {
    background: var(--restaurant-white);
    padding: 2rem 0;
    border-top: 1px solid var(--restaurant-border);
    border-bottom: 1px solid var(--restaurant-border);
}

.restaurant-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.restaurant-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.restaurant-feature__icon {
    font-size: 1.5rem;
}

.restaurant-feature__text {
    font-weight: 600;
    color: var(--restaurant-text);
}

/* Menu Section */
.restaurant-menu {
    padding: 5rem 0;
    background: var(--restaurant-bg);
}

.restaurant-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--restaurant-primary);
    text-align: center;
    margin: 0 0 3rem 0;
    font-family: 'Georgia', serif;
}

.restaurant-menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.restaurant-menu__item {
    background: var(--restaurant-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.restaurant-menu__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.restaurant-menu__image {
    height: 200px;
    background: linear-gradient(135deg, var(--restaurant-primary), var(--restaurant-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-menu__img-placeholder {
    font-size: 4rem;
    opacity: 0.8;
}

.restaurant-menu__content {
    padding: 1.5rem;
}

.restaurant-menu__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--restaurant-primary);
    margin: 0 0 0.5rem 0;
}

.restaurant-menu__description {
    color: var(--restaurant-text-light);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.restaurant-menu__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.restaurant-menu__price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--restaurant-secondary);
}

.restaurant-menu__cta {
    text-align: center;
}

/* Order Section */
.restaurant-order {
    padding: 5rem 0;
    background: var(--restaurant-primary);
    color: white;
}

.restaurant-order .restaurant-section__title {
    color: white;
}

.restaurant-order__subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin: 0 0 3rem 0;
    opacity: 0.9;
}

.restaurant-order__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.restaurant-order__option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.restaurant-order__option-title {
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    color: var(--restaurant-accent);
}

.restaurant-order__option-desc {
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.restaurant-order__option-time {
    font-weight: 600;
    color: var(--restaurant-accent);
}

.restaurant-order__demo {
    text-align: center;
}

.restaurant-order__demo-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.restaurant-order__demo-note p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.restaurant-about {
    padding: 5rem 0;
    background: var(--restaurant-white);
}

.restaurant-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.restaurant-about__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--restaurant-text);
    margin: 0 0 1.5rem 0;
}

.restaurant-about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.restaurant-stat {
    text-align: center;
    padding: 1rem;
    background: var(--restaurant-bg);
    border-radius: 8px;
}

.restaurant-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--restaurant-primary);
    margin-bottom: 0.5rem;
}

.restaurant-stat__label {
    font-size: 0.9rem;
    color: var(--restaurant-text-light);
}

.restaurant-about__image {
    background: linear-gradient(135deg, var(--restaurant-accent), #e6c46b);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--restaurant-primary);
}

/* Contact Section */
.restaurant-contact {
    padding: 5rem 0;
    background: var(--restaurant-bg);
}

.restaurant-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.restaurant-contact__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--restaurant-primary);
    margin: 0 0 0.5rem 0;
}

.restaurant-contact__detail {
    color: var(--restaurant-text);
    margin: 0;
    line-height: 1.5;
}

.restaurant-contact__link {
    color: var(--restaurant-primary);
    text-decoration: none;
    font-weight: 600;
}

.restaurant-contact__link:hover {
    text-decoration: underline;
}

.restaurant-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.restaurant-hours__item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--restaurant-border);
}

.restaurant-contact__map {
    background: linear-gradient(135deg, var(--restaurant-primary), var(--restaurant-primary-light));
    border-radius: 12px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.restaurant-map-placeholder p:first-child {
    font-size: 3rem;
    margin: 0 0 1rem 0;
}

.restaurant-map-placeholder p:last-child {
    margin: 0;
    opacity: 0.8;
}

/* Footer */
.restaurant-footer {
    background: var(--restaurant-text);
    color: white;
    padding: 3rem 0 1rem 0;
}

.restaurant-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.restaurant-footer__brand .restaurant-logo {
    color: white;
    font-size: 1.5rem;
}

.restaurant-footer__tagline {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
}

.restaurant-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.restaurant-footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.restaurant-footer__link:hover {
    color: white;
}

.restaurant-footer__social-title {
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.restaurant-footer__social-links {
    display: flex;
    gap: 1rem;
}

.restaurant-footer__social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.restaurant-footer__social-link:hover {
    color: var(--restaurant-accent);
}

.restaurant-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.restaurant-footer__demo {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.restaurant-footer__demo-link {
    color: var(--restaurant-accent);
    text-decoration: none;
    font-weight: 600;
}

.restaurant-footer__demo-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-banner__content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .restaurant-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .restaurant-nav__menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .restaurant-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .restaurant-hero__title {
        font-size: 2.5rem;
    }
    
    .restaurant-hero__buttons {
        justify-content: center;
    }
    
    .restaurant-features__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .restaurant-menu__grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-about__grid,
    .restaurant-contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .restaurant-about__stats {
        grid-template-columns: 1fr;
    }
    
    .restaurant-footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .restaurant-footer__links {
        align-items: center;
    }
}