/* JJ's Shawarma - Restaurant Website Styles */
/* Lebanese/Mediterranean warm color scheme */

/* CSS Variables - Brand Color System */
:root {
    /* Primary: Classic red - bold and appetizing */
    --primary-color: #c41e3a;
    --primary-dark: #a01829;
    --primary-light: #e8556d;
    
    /* Accent: Same red for consistency */
    --accent-color: #c41e3a;
    --accent-dark: #a01829;
    
    /* Neutrals */
    --secondary-color: #f8f8f8;
    --text-dark: #2c2c2c;
    --text-gray: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --cream: #f8f8f8;
    --border-color: #e5e5e5;
    
    /* Shadows & Effects */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 1px 5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    background-color: var(--cream);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #232a44;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #232a44;
    box-shadow: var(--shadow-light);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid #1a1f33;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile: Group order button with hamburger on right */
@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Create a wrapper effect - push nav-actions and toggle together */
    .nav-brand {
        flex: 0 0 auto;
    }
    
    .nav-menu {
        flex: 1;
    }
    
    .nav-actions {
        flex: 0 0 auto;
        margin-right: 0.75rem;
    }
    
    .nav-toggle {
        flex: 0 0 auto;
    }
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    border-radius: 6px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-actions .order-btn {
    padding: 10px 20px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
}

/* Mobile order button - hidden on desktop */
.mobile-order-btn {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.order-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    max-height: 650px;
    min-height: 450px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 36, 32, 0.75) 0%, rgba(44, 36, 32, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    color: var(--white);
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--primary-light);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Quick Contact Bar */
.quick-contact {
    background-color: var(--light-gray);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent-dark);
}

/* Section Spacing */
.section {
    padding: 4rem 0;
}

/* Boxed Sections Styling */
.boxed {
    background-color: var(--cream);
}

.boxed .container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 4rem 3rem;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
}

/* Popular Dishes Section */
.dishes {
    padding: 0.25rem 0 3rem 0;
    position: relative;
    background-color: var(--cream);
}

.dishes.boxed .container {
    padding-top: 2rem;
}

.services-line {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 1rem;
}

.dishes h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Dishes Scroll Container with Peek + Fade */
.dishes-scroll-container {
    position: relative;
    margin-bottom: 1rem;
}

/* Fade gradient on right edge - shows there's more content */
.dishes-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--cream) 80%);
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hide fade when scrolled to end */
.dishes-scroll-container.scrolled-end::after {
    opacity: 0;
}

/* Dishes Conveyor */
.dishes-conveyor {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    padding-right: 60px; /* Extra padding for peek effect */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.dishes-conveyor::-webkit-scrollbar {
    display: none;
}

/* Scroll Indicator Dots */
.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.scroll-dot:hover {
    background: var(--text-gray);
    transform: scale(1.2);
}

.scroll-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Swipe hint text - shows on first visit */
.swipe-hint {
    display: none;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
}

.dish-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    scroll-snap-align: start;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dish-image {
    height: 200px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

/* Placeholder for dish without image */
.dish-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
}

.dish-content {
    padding: 1.5rem;
}

.dish-content h3 {
    color: #232a44;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.dish-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.dish-order-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    width: 100%;
}

.dish-order-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

/* Menu Section */
.menu-section {
    padding: 3rem 0;
}

.menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-text {
    text-align: left;
}

.menu-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: left;
}

.menu-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.menu-btn {
    display: inline-block;
}

.menu-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Menu Gallery */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.menu-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Custom Messaging Section */
.custom-messaging {
    padding: 3rem 0;
}

.custom-messaging.boxed {
    margin: 2rem 0;
}

.custom-messaging.boxed .container {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
}

.messaging-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.messaging-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #232a44;
}

.messaging-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

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

.benefit {
    background-color: var(--light-gray);
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

/* Reviews Hero Stats Banner */
.reviews-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #232a44;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.reviews-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.giant-rating {
    text-align: center;
}

.rating-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1;
    display: block;
}

.rating-stars {
    color: #ffc107;
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

.stats-details {
    text-align: left;
}

.review-count {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.review-breakdown {
    margin-bottom: 1rem;
}

.five-star-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.star-label {
    color: #ffc107;
    font-weight: 600;
    min-width: 25px;
}

.bar-fill {
    height: 8px;
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
    border-radius: 4px;
    display: inline-block;
    min-width: 150px;
}

.bar-count {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.google-icon {
    width: 20px;
    height: 20px;
}

/* Popular Mentions Tags */
.popular-mentions {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.popular-mentions h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.mention-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.mention-tag {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border: 2px solid var(--primary-light);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    color: #232a44 !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mention-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.mention-tag em {
    font-style: normal;
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.mention-tag:hover em {
    background: white;
    color: var(--primary-color);
}

/* Featured Review */
.featured-review {
    background-color: #232a44 !important;
    background-image: linear-gradient(135deg, #232a44 0%, #1a1f33 100%) !important;
    color: #ffffff !important;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* Only apply white to direct text elements inside featured-review */
.featured-review blockquote,
.featured-review .reviewer-name,
.featured-review .reviewer-location,
.featured-review .quote-icon {
    color: #ffffff;
}

.featured-review::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.quote-icon {
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.15);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.featured-review blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: 500;
}

.featured-reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar .reviewer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

.reviewer-location {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
    color: #e0e0e0;
}

.featured-reviewer .review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin: 0;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    text-align: left;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-card .review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-card .reviewer {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 0.95rem;
}

.reviewer-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ===========================================
   SUPERCHARGED REVIEWS SECTION STYLES
   =========================================== */

/* Scrolling Review Ticker */
.review-ticker-wrapper {
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    margin: 1rem 0;
    overflow: hidden;
    position: relative;
}

.review-ticker {
    display: flex;
    width: 100%;
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 40s linear infinite;
    gap: 3rem;
    white-space: nowrap;
}

.ticker-item {
    color: var(--navy-blue);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

/* Animated Badge */
.pulse-badge {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(255, 183, 0, 0.5);
    }
}

/* Animated Rating Number */
.animated-number {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-color) 50%, var(--navy-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Shimmer Stars */
.shimmer-stars {
    position: relative;
    overflow: hidden;
}

.shimmer-stars::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Animated Bar Fill */
.animated-bar {
    animation: bar-grow 2s ease-out forwards;
    transform-origin: left;
}

@keyframes bar-grow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* Fire Count */
.fire-count {
    color: var(--primary-color);
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    justify-content: flex-start;
}

.trust-badge {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #a5d6a7;
}

/* Sentiment Reactions */
.sentiment-reactions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.reaction {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: default;
    color: #232a44;
}

.reaction:hover {
    transform: scale(1.2);
}

.reaction small {
    font-size: 0.7rem;
    color: var(--navy-blue) !important;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Hot Tag & Love Tag */
.mention-tag.hot-tag {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-color: #ee5a24;
    animation: pulse 1.5s ease-in-out infinite;
}

.mention-tag.hot-tag em {
    background: white;
    color: #ee5a24;
}

.mention-tag.love-tag {
    background: linear-gradient(135deg, #ff85a2 0%, #ff6b9d 100%);
    color: white;
    border-color: #ff6b9d;
}

.mention-tag.love-tag em {
    background: white;
    color: #ff6b9d;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Review - Tracy's Quote */
.featured-review.hero-review {
    background: linear-gradient(135deg, #1a1f33 0%, #232a44 50%, #2a3352 100%) !important;
    border: 3px solid #ffd700;
    position: relative;
    margin-top: 2.5rem; /* Space for the badge above */
}

.review-spotlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #232a44;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.hero-review .hero-quote {
    font-size: 1.6rem;
    line-height: 1.9;
    color: #ffffff !important;
    font-weight: 500;
}

.hero-quote strong {
    color: #ffd700 !important;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-quote em {
    color: #7dd3fc !important;
    font-weight: 600;
}

/* Verified Avatar */
.verified-avatar {
    position: relative;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
}

/* Review Date */
.review-date {
    font-size: 0.8rem;
    color: #ffd700;
    font-weight: 700;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Montreal Story Variation */
.featured-review.montreal-story {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    margin-top: 2rem;
}

.montreal-story strong {
    color: #ffd700;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

/* Featured Card */
.review-card.featured-card {
    border-left-width: 6px;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.review-card.featured-card:hover {
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

/* Reviews CTA Enhanced */
.reviews-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #f0f4f8 100%);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.cta-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    background-color: #232a44 !important;
    background-image: linear-gradient(135deg, #232a44 0%, #2a3352 100%) !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Force stat-item visibility in CTA */
.reviews-cta .cta-stats .stat-item {
    background-color: #232a44 !important;
    color: #ffffff !important;
}

.reviews-cta p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.reviews-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Pulse Button */
.btn-pulse {
    animation: btn-pulse 2s ease-in-out infinite;
    position: relative;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    background: var(--primary-color);
    animation: pulse-ring 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* CTA Subtext */
.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--navy-blue) !important;
    font-style: italic;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* About Section */
.about {
    background-color: var(--cream);
    padding: 4rem 0;
}

.about.boxed .container {
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.owner-quote {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.owner-quote blockquote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.owner-quote cite {
    color: #232a44;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Hours Section */
.hours {
    padding: 4rem 0;
    background-color: var(--cream);
}

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

.hours-info h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.hours-section h3 {
    margin-bottom: 1rem;
    color: #232a44;
    font-size: 1.3rem;
}

.hours-list {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-list li span:last-child {
    color: var(--text-gray);
}

.delivery-areas {
    margin-top: 2rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.delivery-areas h3 {
    margin-bottom: 1rem;
    color: #232a44;
    font-size: 1.3rem;
}

.delivery-areas p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.delivery-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    background-color: var(--cream);
    padding: 4rem 0;
}

.contact.boxed .container {
    background-color: var(--secondary-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

/* Visit Us Section */
.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    color: #232a44;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-line {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-line strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-line a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-line a:hover {
    color: var(--accent-dark);
}

/* Map Section */
.map-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.map-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 250px;
    margin-bottom: 2rem;
}

.map-container iframe {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
}

.social-media {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.social-media h3 {
    color: #232a44;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 600;
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    border-top: 4px solid var(--primary-color);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.75rem 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu li a:hover {
    color: var(--primary-color);
}

.footer-cta {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-brand .logo {
        height: 40px;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .nav-actions .order-btn {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
        white-space: nowrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .mobile-order-btn {
        display: block !important;
        margin-top: 2rem;
        padding: 12px 24px !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
        text-align: center;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Mobile */
    .hero {
        height: 70vh;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: left;
    }
    
    .hero-text {
        text-align: left;
        margin: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 160px;
    }

    /* Quick Contact Mobile */
    .quick-contact {
        padding: 0.75rem 0;
    }
    
    .quick-contact-content {
        gap: 0.5rem;
        flex-direction: column;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    /* Typography Mobile */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Boxed Container Mobile */
    .boxed .container {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
    }

    /* Grid Layouts Mobile */
    .dishes-scroll-container::after {
        width: 40px;
        background: linear-gradient(to right, transparent, var(--cream) 70%);
    }
    
    .dishes-conveyor {
        gap: 1rem;
        padding-right: 40px;
    }
    
    .dishes-conveyor .dish-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .scroll-dots {
        gap: 6px;
        padding: 0.75rem 0;
    }
    
    .scroll-dot {
        width: 6px;
        height: 6px;
    }
    
    .scroll-dot.active {
        width: 20px;
    }
    
    .swipe-hint {
        display: block;
        font-size: 0.8rem;
    }

    /* Reviews Section Mobile */
    .review-ticker-wrapper {
        padding: 1rem 0;
        margin: 0.75rem 0;
    }
    
    .ticker-content {
        gap: 2rem;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .rating-number {
        font-size: 4rem;
    }
    
    .stats-details {
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .bar-fill {
        min-width: 100px;
    }
    
    .popular-mentions {
        padding: 1.5rem 1rem;
    }
    
    .mention-tags {
        gap: 0.75rem;
    }
    
    .mention-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .sentiment-reactions {
        gap: 1rem;
    }
    
    .reaction {
        font-size: 1.2rem;
    }
    
    .featured-review {
        padding: 2rem 1.5rem;
    }
    
    .featured-review.hero-review {
        padding-top: 2.5rem;
    }
    
    .review-spotlight-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        top: -5px;
    }
    
    .hero-review .hero-quote {
        font-size: 1.2rem;
        line-height: 1.7;
    }
    
    .featured-review blockquote {
        font-size: 1.1rem;
    }
    
    .quote-icon {
        font-size: 4rem;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .card-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
        top: -8px;
        right: 15px;
    }
    
    .cta-stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .reviews-cta p {
        font-size: 1.2rem;
    }
    
    .cta-subtext {
        font-size: 0.8rem;
    }

    .reviews-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content,
    .contact-grid,
    .menu-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-text {
        text-align: center;
    }

    .menu-text h2 {
        text-align: center;
    }

    /* Benefits List Mobile */
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-nav {
        margin: 1rem 0;
    }

    .footer-menu {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Social Links Mobile */
    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-link {
        width: 100%;
        max-width: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Optimization */
img {
    transition: opacity 0.3s ease;
    height: auto;
    max-width: 100%;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.order-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

