/*
Theme Name: Hummus Bar
Description: fully compatible with Elementor
Version: 1.0
Author: Motasem Odeh
*/

/* Reset and Base Styles */

@font-face {
  font-family: 'Gopher';
  src: url('/wp-content/themes/hummusbar/fonts/Gopher-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gopher';
  src: url('/wp-content/themes/hummusbar/fonts/Gopher-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gopher';
  src: url('/wp-content/themes/hummusbar/fonts/Gopher-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gopher', sans-serif;
}

p {
    margin-bottom: 15px;
}

/* Color Variables */
:root {
    --primary-orange: #e55937;
    --primary-yellow-hummus: #ffe974;
    --dark-teal: #1a5f5f;
    --light-blue: #e8f4f8;
    --coral: #ff6b47;
    --dark-navy: #1a365d;
    --text-dark: #000000;
    --text-light: #ffffff;
    --light-bg: #fff4e6
}

/* Header Styles */
.site-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-actions {
    display: flex;
    align-items: center;
}


.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-orange);
}

.custom-logo {
    width: 140px;
    height: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-orange);
}

.header-cta {
    background: var(--primary-yellow-hummus);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.header-cta:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: #fff4e6;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: var(--coral);
}

.hero-cta {
    background: var(--primary-orange);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

/* Ticker Tape */
.ticker-tape {
    background: #ffe974;
    color: var(--text-dark);
    padding: 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    gap: 20px;
}

.ticker-item {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 3rem;
    font-weight: 900;
}


@keyframes scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Store Locator Section */
.store-locator {
    padding: 80px 0;
    background: white;
}

@media (max-width: 700px) {
.store-image img, .restaurant-image img {
    width: 100%;
}
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.store-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.store-cta {
    background: var(--primary-yellow-hummus);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.store-partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.partner-logo {
    height: 60px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0);
}

/* Flavors Section */
.flavors-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.flavors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.flavors-section h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 60px;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.flavor-card {
    transition: transform 0.3s;
}

.flavor-card:hover {
    transform: translateY(-10px);
}

.flavor-image {
    width: 200px;
    margin: 0 auto 20px;
}

.flavor-image img {
    width: 100%;
    height: 100%;
}

.flavor-card h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.flavor-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-item h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: bold;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--primary-orange);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}
.story-container ul li {
    margin-left: 20px;
}
.story-container ul {
    margin-bottom: 15px;
}
.story-cta {
    background: var(--primary-yellow-hummus);
    color: #000;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    background: #fff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.gallery-subtitle {
    color: var(--text-dark);
    margin-bottom: 40px;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    max-height: 200px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Restaurant Section */
.restaurant-section {
    padding: 80px 0;
    background: var(--primary-yellow-hummus);
}

.restaurant-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.restaurant-content p {
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.restaurant-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--primary-yellow-hummus);
    color: var(--text-dark);
}

.restaurant-buttons .btn-primary {
    background: var(--primary-orange);
    color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.hummus-bar-footer {
    background-color: #e55937;
    color: white;
    padding: 60px 0 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.newsletter-section {
    max-width: 430px;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    gap: 0;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: #666;
}

.submit-btn {
    background-color: #ffe974;
    color: #000;
    border: none;
    padding: 15px 25px;
    border-radius: 0 25px 25px 0;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #F1C40F;
}

.privacy-notice {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.sun-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.sun {
    width: 120px;
    height: 120px;
    background-color: #F4D03F;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, transparent 50%, #F4D03F 50%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    top: -10px;
    left: -10px;
    z-index: -1;
}

.sun-face {
    font-size: 3rem;
    color: #2D7A7A;
    line-height: 1;
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

.link-column {
    min-width: 150px;
}

.column-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 12px;
}

.link-list a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.link-list a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    padding: 30px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-left p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
    }
    
    .newsletter-section {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        border-radius: 25px;
        margin-bottom: 10px;
    }
    
    .submit-btn {
        border-radius: 25px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .sun {
        width: 100px;
        height: 100px;
    }
    
    .sun::before {
        width: 120px;
        height: 120px;
        top: -10px;
        left: -10px;
    }
    
    .sun-face {
        font-size: 2.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .store-container,
    .story-container,
    .restaurant-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: auto;
        padding: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .restaurant-buttons {
        flex-direction: column;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(48deg) translate(4px, 3px)
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-cta {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Header Scroll Effect */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Animation Classes */
.hero-content,
.store-content,
.story-content,
.restaurant-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content.animated,
.store-content.animated,
.story-content.animated,
.restaurant-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.flavor-card,
.value-item,
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.flavor-card.animated,
.value-item.animated,
.gallery-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Styles */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--primary-orange);
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-meta .author {
    margin-left: 10px;
}

.blog-excerpt {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--dark-teal);
}

/* Pagination */
.navigation.pagination {
    margin-top: 60px;
    text-align: center;
}

.page-numbers {
    display: inline-block;
    padding: 12px 20px;
    margin: 0 5px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #eee;
    transition: all 0.3s;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Skip Link */
.skip-link {
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 999999;
    border-radius: 0 0 5px 5px;
}

.skip-link:focus {
    top: 0;
}

/* Form Focus Styles */
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #1a5f5f;
        --primary-yellow-hummus: #b8860b;
        --text-dark: #000;
        --text-light: #333;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .ticker-content {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .ticker-tape,
    .mobile-menu,
    .newsletter-form {
        display: none;
    }
    
    .hero-section,
    .flavors-section,
    .story-section {
        page-break-inside: avoid;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

@media (max-width: 1024px) {
    .hero-container,
    .store-container,
    .story-container,
    .restaurant-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partner-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .flavors-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .restaurant-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        margin-bottom: 10px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .values-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logo {
        height: 40px;
    }
    
    .flavor-card,
    .blog-card {
        margin-bottom: 20px;
    }
    
    .ticker-item {
        margin-right: 30px;
        font-size: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}


/* Container */
.single-post-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

/* Title */
.single-post-title {
    font-size: 2rem;
    color: #3a3a3a;
    margin-bottom: 10px;
    border-bottom: 2px solid #f0c040; /* golden accent for Hummus Bar */
    padding-bottom: 8px;
}

/* Meta info */
.single-post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}
.single-post-meta span {
    margin-right: 15px;
}

/* Featured image */
.single-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Post content */
.single-post-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}
.single-post-content p {
    margin-bottom: 20px;
}

/* Navigation */
.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.single-post-navigation a {
    text-decoration: none;
    color: #f0c040;
    font-weight: bold;
}
.single-post-navigation a:hover {
    text-decoration: underline;
}

.store-image img {
    width: 100%;
}

@media (max-width:1024px) {
.story-container ul li {
    list-style: none;
}
}