* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

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

/* ---- Home page (from Home 011.html) ---- */
:root {
    --primary: 24 100% 50%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 96%;
    --secondary-foreground: 0 0% 9%;
    --background: 0 0% 100%;
    --foreground: 0 0% 9%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 9%;
    --border: 0 0% 90%;
    --muted: 0 0% 96%;
    --muted-foreground: 0 0% 45%;
}

/* Hero */
.hero {
    padding: 4rem 1rem;
    background-color: hsl(var(--card));
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-image-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.hero-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-logo-circle {
    background-color: hsl(var(--primary));
    border-radius: 50%;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    border: 4px solid hsl(var(--card));
}

.hero-logo-icon {
    width: 4rem;
    height: 4rem;
    color: hsl(var(--primary-foreground));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.hero-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 1.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-browse-menu {
    padding: 1.75rem 2.5rem;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: hsl(var(--card));
    color: hsl(var(--foreground));
    border: 2px solid hsl(var(--border));
}

.btn-outline:hover {
    background-color: hsl(var(--secondary));
}

/* Menu Section */
.menu-section {
    padding: 4rem 1rem;
    background-color: hsl(var(--background));
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: hsl(var(--foreground));
}

.menu-carousel-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.menu-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.menu-carousel:active { cursor: grabbing; }
.menu-carousel::-webkit-scrollbar { display: none; }

.menu-card {
    flex-shrink: 0;
    width: 320px;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.menu-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.menu-card-image-wrapper { position: relative; }

.menu-card-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.menu-card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: hsl(var(--card));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.menu-card-price span {
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.menu-card-content { padding: 1.5rem; }
.menu-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}
.menu-card-description { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.menu-browse-btn { text-align: center; margin-bottom: 2rem; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.indicator-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: hsla(var(--muted-foreground) / 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator-dot:hover { background-color: hsla(var(--muted-foreground) / 0.5); }
.indicator-dot.active { background-color: hsl(var(--primary)); width: 2rem; border-radius: 9999px; }

/* Locations Section */
.locations-section {
    padding: 4rem 1rem;
    background-color: hsl(var(--card));
}

.location-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.location-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.location-content { display: flex; flex-direction: column; gap: 1.5rem; }
.location-icon-wrapper { background-color: hsla(var(--primary) / 0.1); padding: 1rem; border-radius: 0.5rem; width: fit-content; }
.location-icon { width: 3rem; height: 3rem; color: hsl(var(--primary)); }
.location-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: hsl(var(--foreground)); }
.location-info p { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.contact-info { display: flex; flex-direction: column; padding-bottom: 15px; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; }
.contact-icon-wrapper { background-color: hsla(var(--primary) / 0.1); padding: 0.5rem; border-radius: 0.25rem; }
.contact-icon { width: 1rem; height: 1rem; color: hsl(var(--primary)); }
.contact-item span { font-size: 0.875rem; color: hsl(var(--foreground)); }

/* Responsive (Home) */
@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
    .hero-image { height: 24rem; }
}

/* Do NOT override footer styles; keep layout footer intact */

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

/* Header */
header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 35px;
    height: 35px;
    color: #FF6A00;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

/* 404 Section */
.error-section {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.error-card {
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -4px;
}

.error-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.error-description {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.btn-home {
    display: inline-block;
    background: #FF6A00;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-home:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

/* ===== Menu Page (List 01) ===== */
.menu-page .page-title {
    text-align: center;
    margin: 3rem 0;
}
.menu-page .page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.menu-page .page-title p {
    color: #6c757d;
    max-width: 42rem;
    margin: 0 auto;
}

.categories-section { margin-bottom: 3rem; }
.categories-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.categories-scroll:active { cursor: grabbing; }

.category-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: #ffffff;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}
.category-item:hover { background: #f3f4f6; }
.category-item.active {
    background: hsl(24 100% 50%);
    color: #fff;
}
.category-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-name {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.menu-items-section { margin-bottom: 3rem; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.menu-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.menu-item:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.menu-item-image { position: relative; width: 100%; height: 256px; }
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.menu-item-price span { font-size: 0.875rem; font-weight: 700; color: #2c3e50; }
.menu-item-content { padding: 1.5rem; }
.menu-item-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: #2c3e50; }
.menu-item-description { font-size: 0.875rem; color: #6c757d; margin-bottom: 1rem; }
.menu-item-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.menu-item-tag { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: #6c757d; }
.menu-item-tag .tag-icon { color: hsl(24 100% 50%); }

.pagination-section { display: flex; justify-content: center; margin-top: 3rem; }
.pagination { display: flex; gap: 0.5rem; align-items: center; }
.pagination-btn,
.pagination-page {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.875rem;
}
.pagination-btn:hover:not(.disabled),
.pagination-page:hover:not(.active) { background: #f3f4f6; }
.pagination-page.active {
    background: hsl(24 100% 50%);
    color: #fff;
    border-color: hsl(24 100% 50%);
}
.pagination-btn.disabled { opacity: 0.5; cursor: not-allowed; }
.pagination-ellipsis { padding: 0.5rem; color: #9ca3af; }

@media (max-width: 768px) {
    .menu-page .page-title h1 { font-size: 2rem; }
    .menu-grid { grid-template-columns: 1fr; }
}

/* ===== Item Page (Item.html) ===== */
.item-page .back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}
.item-page .back-button:hover { color: #FF6A00; }
.product-detail {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}
.product-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.price-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.product-info { padding: 2rem; }
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}
.order-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #666;
}
.tag.active {
    background: #fff4f0;
    color: #ff6b35;
    font-weight: 600;
}
.section { margin-bottom: 2rem; }
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}
.section-content { color: #666; line-height: 1.8; }
.ingredients-list { list-style: none; padding-left: 0; }
.ingredients-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}
.ingredients-list li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.related-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.browse-all {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}
.browse-all:hover { opacity: 0.8; }
.related-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.related-item {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.related-item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.related-item-image img { width: 100%; height: 100%; object-fit: cover; }
.related-item-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.related-item-title { font-size: 1.1rem; font-weight: 700; color: #333; margin-bottom: 0.5rem; }
.related-item-price { font-size: 1rem; font-weight: 700; color: #333; margin-top: auto; }
.related-item-description { font-size: 0.9rem; color: #666; margin-bottom: 0.5rem; }
.related-item-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.related-item-tags .tag { padding: 0.25rem 0.75rem; font-size: 0.8rem; }

@media (max-width: 768px) {
    .product-title { font-size: 1.5rem; }
    .product-image { height: 300px; }
    .related-items { grid-template-columns: 1fr; }
}
/* ===== About Page (About.html) ===== */
.about-page .hero-section { max-width: 1200px; margin: 60px auto; padding: 0 20px; }
.about-page .hero-content { background-color: white; border-radius: 20px; padding: 60px; text-align: center; }
.about-page .hero-content h1 { font-size: 48px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.about-page .hero-content p { font-size: 16px; color: #666; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.about-page .hero-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; }
.about-page .btn { padding: 14px 32px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; font-size: 16px; }
.about-page .btn-primary { background-color: #ff6b35; color: white; }
.about-page .btn-primary:hover { background-color: #e55a28; transform: translateY(-2px); }
.about-page .btn-secondary { background-color: transparent; color: #1a1a1a; border: 2px solid #1a1a1a; }
.about-page .btn-secondary:hover { background-color: #1a1a1a; color: white; }
.about-page .images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.about-page .images-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 15px; }
.about-page .stats-section { background-color: #ff6b35; color: white; padding: 60px; border-radius: 20px; margin-top: -100px; position: relative; z-index: 1; }
.about-page .stats-title { text-align: center; font-size: 24px; font-weight: 600; margin-bottom: 40px; }
.about-page .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.about-page .stat-item h3 { font-size: 56px; font-weight: 800; margin-bottom: 10px; }
.about-page .stat-item p { font-size: 16px; opacity: 0.9; }
.about-page .content-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.about-page .two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-page .content-text h2 { font-size: 36px; font-weight: 700; margin-bottom: 20px; }
.about-page .content-text p { font-size: 16px; color: #666; line-height: 1.8; }
.about-page .content-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 15px; }
.about-page .values-section { text-align: center; margin: 80px 0; }
.about-page .values-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 60px; }
.about-page .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.about-page .value-card { text-align: center; }
.about-page .value-icon { width: 80px; height: 80px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.about-page .value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.about-page .value-card p { font-size: 14px; color: #666; line-height: 1.6; }
.about-page .team-section { text-align: center; margin: 80px 0; }
.about-page .team-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 60px; }
.about-page .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.about-page .team-member { background-color: white; border-radius: 20px; padding: 30px; text-align: center; transition: transform 0.3s; }
.about-page .team-member:hover { transform: translateY(-10px); }
.about-page .member-image { width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; background: linear-gradient(135deg, #ff6b35, #ffa07a); display: flex; align-items: flex-end; justify-content: center; }
.about-page .member-image img { width: 100%; height: 100%; object-fit: cover; }
.about-page .member-name { font-size: 24px; font-weight: 700; margin-bottom: 5px; }
.about-page .member-title { font-size: 14px; color: #ff6b35; margin-bottom: 15px; }
.about-page .member-description { font-size: 14px; color: #666; line-height: 1.6; }
.about-page .social-section { text-align: center; margin: 80px 0; }
.about-page .social-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 40px; }
.about-page .social-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.about-page .social-card { text-align: center; cursor: pointer; transition: transform 0.3s; }
.about-page .social-card:hover { transform: translateY(-5px); }
.about-page .social-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 32px; color: white; }
.about-page .social-icon.facebook { background-color: #1877f2; }
.about-page .social-icon.twitter { background-color: #1da1f2; }
.about-page .social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.about-page .social-icon.opentable { background-color: #da3743; }
.about-page .social-icon.tiktok { background-color: #000000; }
.about-page .social-icon.yelp { background-color: #ff1a1a; }
.about-page .instagram-section { text-align: center; margin: 80px 0; }
.about-page .instagram-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 40px; }
.about-page .instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.about-page .instagram-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: 15px; cursor: pointer; transition: transform 0.3s; }
.about-page .instagram-grid img:hover { transform: scale(1.05); }
@media (max-width: 768px) {
    .about-page .hero-content { padding: 40px 20px; }
    .about-page .hero-content h1 { font-size: 32px; }
    .about-page .images-grid { grid-template-columns: 1fr; }
    .about-page .stats-grid { grid-template-columns: 1fr; }
    .about-page .two-column { grid-template-columns: 1fr; gap: 30px; }
    .about-page .values-grid { grid-template-columns: 1fr; }
    .about-page .team-grid { grid-template-columns: 1fr; }
    .about-page .social-grid { grid-template-columns: repeat(3, 1fr); }
    .about-page .instagram-grid { grid-template-columns: 1fr; }
    .about-page .hero-buttons { flex-direction: column; }
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #FF6A00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
}

.footer-description {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 106, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6A00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: #FF6A00;
    color: white;
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-links a:hover {
    color: #FF6A00;
    transform: translateX(5px);
}

.footer-links a.browse-more {
    color: #FF6A00;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info p {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 3px;
}

.contact-info a {
    color: #FF6A00;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
    text-align: center;
}

.copyright {
    color: #808080;
    font-size: 14px;
}

.copyright a {
    color: #FF6A00;
    text-decoration: none;
}

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

/* ===== Password Protected Page ===== */
.protected-section {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}
.protected-card {
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.lock-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.lock-icon svg { width: 50px; height: 50px; color: #FF6A00; }
.protected-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}
.protected-description {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.password-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}
.password-form .form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}
.password-form .form-input:focus {
    border-color: #FF6A00;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}
.password-form .form-input::placeholder { color: #adb5bd; }
.btn-submit {
    width: 100%;
    background: #FF6A00;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-submit:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}
.btn-submit:active { transform: translateY(0); }
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: -10px;
    display: none;
    text-align: left;
}
.error-message.show {
    display: block;
    animation: shake 0.5s ease;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}
@media (max-width: 768px) {
    .protected-card { padding: 60px 40px; }
    .protected-title { font-size: 24px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
    .protected-card { padding: 40px 30px; }
    .lock-icon { width: 100px; height: 100px; }
    .lock-icon svg { width: 40px; height: 40px; }
    .protected-title { font-size: 20px; }
    .protected-description { font-size: 14px; }
}
/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .error-card {
        padding: 60px 40px;
    }

    .error-code {
        font-size: 90px;
    }

    .error-title {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .error-card {
        padding: 40px 30px;
    }

    .error-code {
        font-size: 70px;
    }

    .error-title {
        font-size: 20px;
    }

    .error-description {
        font-size: 14px;
    }
}

/* Contact Page */
.contact-page {
    padding: 80px 0 40px;
}

.contact-page .contact-form-section,
.contact-page .locations-section,
.contact-page .faq-section,
.contact-page .social-section,
.contact-page .instagram-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-page .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-page .section-subtitle {
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF6A00;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #FF6A00 0%, #ff8c5a 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

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

.location-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff8f5;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.location-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.location-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.location-address {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #FF6A00;
}

.contact-icon {
    color: #FF6A00;
    font-size: 1rem;
    height: 1.5rem;
    width: 1.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #FF6A00;
}

.faq-icon {
    font-size: 1.5rem;
    color: #6c757d;
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #FF6A00;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #6c757d;
}

.faq-answer-content {
    padding-bottom: 1.5rem;
    line-height: 1.8;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.social-card.facebook { background: #e7f3ff; }
.social-card.twitter { background: #e0f2fe; }
.social-card.instagram { background: #fce7f3; }
.social-card.opentable { background: #fee2e2; }
.social-card.tiktok { background: #f3f4f6; }
.social-card.yelp { background: #fef3c7; }

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.social-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.social-handle {
    font-size: 0.85rem;
    color: #FF6A00;
}

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

.instagram-item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.instagram-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.buy-now {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 99;
}

.buy-now::before {
    content: "🛒";
    font-size: 1.2rem;
}

.buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .contact-page .contact-form-section,
    .contact-page .locations-section,
    .contact-page .faq-section,
    .contact-page .social-section,
    .contact-page .instagram-section {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0 30px;
    }

    .contact-page .contact-form-section,
    .contact-page .locations-section,
    .contact-page .faq-section,
    .contact-page .social-section,
    .contact-page .instagram-section {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .buy-now {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-page .contact-form-section,
    .contact-page .locations-section,
    .contact-page .faq-section,
    .contact-page .social-section,
    .contact-page .instagram-section {
        padding: 1.75rem 1.25rem;
    }

    .instagram-item img {
        height: 220px;
    }

    .buy-now {
        bottom: 0.75rem;
        right: 0.75rem;
    }
}

