/* Frank's Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
    --background: hsl(20, 10%, 5%);
    --foreground: hsl(30, 20%, 92%);
    --card: hsl(20, 12%, 9%);
    --card-foreground: hsl(30, 20%, 92%);
    --popover: hsl(20, 12%, 9%);
    --popover-foreground: hsl(30, 20%, 92%);
    --primary-color: hsl(10, 75%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(20, 15%, 15%);
    --secondary-foreground: hsl(30, 20%, 92%);
    --muted: hsl(20, 10%, 14%);
    --muted-foreground: hsl(25, 10%, 55%);
    --accent: hsl(10, 75%, 55%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(20, 15%, 18%);
    --input: hsl(20, 15%, 18%);
    --ring: hsl(10, 75%, 55%);
    --radius: 0.5rem;
}

[data-bs-theme="light"] {
    --background: hsl(20, 10%, 98%);
    --foreground: hsl(30, 20%, 10%);
    --card: hsl(20, 12%, 100%);
    --card-foreground: hsl(30, 20%, 10%);
    --popover: hsl(20, 12%, 100%);
    --popover-foreground: hsl(30, 20%, 10%);
    --primary-color: hsl(10, 75%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(20, 15%, 90%);
    --secondary-foreground: hsl(30, 20%, 10%);
    --muted: hsl(20, 10%, 94%);
    --muted-foreground: hsl(25, 10%, 45%);
    --border: hsl(20, 15%, 90%);
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
}

.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.btn-primary { 
    background-color: var(--primary-color); 
    border-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: hsl(10, 75%, 50%);
    border-color: hsl(10, 75%, 50%);
}

.bg-primary-subtle { background-color: hsla(10, 75%, 55%, 0.1) !important; }

/* Header Styling */
header.sticky-top {
    background-color: var(--bs-body-bg) !important;
    border-bottom: 1px solid var(--border) !important;
    transition: background-color 0.3s ease;
}
.header-logo { height: 40px; object-fit: contain; }

[data-bs-theme="dark"] .header-logo {
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-section { height: calc(100vh - 80px); }
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background) 0%, hsla(20, 10%, 5%, 0.6) 50%, transparent 100%);
}
[data-bs-theme="light"] .hero-overlay {
    background: linear-gradient(to top, var(--background) 0%, hsla(20, 10%, 98%, 0.6) 50%, transparent 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 900px; }
.hero-title {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--muted-foreground);
    max-width: 600px;
}

/* Sections */
.section-title {
    padding-top: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 2.5rem;
}
.section-title-sm {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
}
.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Menu Cards */
.menu-card {
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background-color: var(--card);
}
.section-bar {
    width: 6px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 3px;
    flex-shrink: 0;
}
.category-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--foreground);
}
.category-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0;
}
.promo-box {
    background-color: hsla(10, 75%, 55%, 0.05);
    border: 1px solid hsla(10, 75%, 55%, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Menu Items */
.menu-item:last-child { border-bottom: none !important; }
.menu-item-name {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--foreground);
}
.menu-item-price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.125rem;
    white-space: nowrap;
}
.menu-item-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}
.menu-item-allergens {
    font-size: 0.7rem;
    color: hsla(30, 20%, 92%, 0.4);
    font-weight: 600;
    text-transform: uppercase;
}
[data-bs-theme="light"] .menu-item-allergens {
    color: hsla(30, 20%, 10%, 0.4);
}

/* Badges/Tags */
.badge {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 0.25em 0.6em;
}
.tag-spicy, .tag-popular, .tag-signature, .tag-cheese {
    background-color: hsla(10, 75%, 55%, 0.1);
    color: var(--primary-color);
    border: 1px solid hsla(10, 75%, 55%, 0.3);
}
.tag-veg, .tag-korean {
    background-color: var(--muted);
    color: var(--foreground);
    border: 1px solid var(--border);
}

/* Wing Options & Sauces */
.wing-option, .sauce-box {
    background-color: hsla(10, 75%, 55%, 0.05);
    border: 1px solid hsla(10, 75%, 55%, 0.15);
    border-radius: 0.75rem;
}
.x-small { font-size: 0.65rem; }
.uppercase { text-transform: uppercase; }

/* Gallery */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.object-cover { object-fit: cover; }
.gallery-item {
    transition: transform 0.5s ease;
}
.gallery-item img {
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(20, 10%, 5%, 0.8), transparent);
}
[data-bs-theme="light"] .gallery-overlay {
    background: linear-gradient(to top, hsla(20, 10%, 98%, 0.8), transparent);
}
.gallery-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.75rem;
    color: var(--foreground);
    letter-spacing: 0.05em;
}

/* Hours */
.hours-container {
    background-color: var(--secondary);
    border-color: var(--border) !important;
}
.hours-container .border-bottom {
    border-color: var(--border) !important;
}
.last-border-0:last-child { border-bottom: none !important; }

/* Location & Hours Section */
section.bg-card {
    background-color: var(--card) !important;
    border-top: 1px solid var(--border) !important;
}
.map-placeholder {
    background-color: var(--secondary) !important;
    border-color: var(--border) !important;
}

/* Footer */
footer.bg-white {
    background-color: var(--background) !important;
    border-top: 1px solid var(--border) !important;
}
.footer-logo {
    height: 70px;
    background: #fafaf9;
    padding: 10px 15px;
    border-radius: 10px;
}
.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    transition: all 0.2s;
    text-decoration: none;
}
.social-link i {
    font-size: 1.5rem;
    line-height: 1;
}
.social-link:hover {
    background-color: hsla(10, 75%, 55%, 0.2);
    border-color: hsla(10, 75%, 55%, 0.5);
    color: var(--primary-color);
}
.online-order-badge {
    display: inline-flex;
    align-items: center;
    background-color: hsla(10, 75%, 55%, 0.1);
    border: 1px solid hsla(10, 75%, 55%, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.theme-toggle-btn, .lang-toggle-btn {
    color: var(--foreground) !important;
    text-decoration: none;
    transition: opacity 0.2s, color 0.2s;
}

.theme-toggle-btn:hover, .lang-toggle-btn:hover {
    opacity: 0.7;
    color: var(--primary-color) !important;
}

/* Navbar Toggler Improvements */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    outline: none !important;
    box-shadow: none !important;
    background-color: var(--secondary) !important;
}

.navbar-toggler:hover {
    background-color: var(--muted) !important;
}

.navbar-toggler-icon {
    filter: var(--bs-navbar-toggler-icon-filter);
}

/* Utilities */
.whitespace-nowrap { white-space: nowrap; }
.cursor-pointer { cursor: pointer; }
.btn-xs {
    padding: 0.1rem 0.4rem;
    font-size: 0.7rem;
    border-radius: 0.2rem;
}

@media (max-width: 768px) {
    .hero-section { height: 70vh; }
    .section-title { font-size: 2rem; }
}
