/* Best Eats Page Styles */
.best-eats-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.best-eats-container {
    width: 100%;
}

/* Header Section */
.best-eats-header {
    text-align: center;
    margin-bottom: 60px;
}

.best-eats-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Intro Section */
.best-eats-intro {
    margin-bottom: 80px;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.intro-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* YouTube Channel CTA */
.youtube-channel-cta {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.youtube-channel-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.youtube-channel-cta p {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.youtube-subscribe-btn {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.youtube-subscribe-btn:hover {
    background-color: #cc0000;
    color: #fff;
    text-decoration: none;
}

.youtube-subscribe-btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

.intro-image {
    text-align: center;
}

.matt-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Blog Posts Section */
.where-i-eat-posts {
    margin: 80px 0;
}

.posts-header {
    text-align: center;
    margin-bottom: 50px;
}

.posts-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.posts-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    position: relative;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.post-content {
    padding: 16px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.post-card:hover .post-content {
    opacity: 1;
    transform: translateY(0);
}

.post-content h3 {
    font-family: 'Roboto', sans-serif !important;
    text-align: center;
    font-size: 1.1em;
    color: #333333;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.post-card:hover .post-content h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Force Roboto on all post content elements */
.best-eats-page .post-content,
.best-eats-page .post-content * {
    font-family: 'Roboto', sans-serif !important;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.8em;
    font-family: 'Roboto', sans-serif;
    gap: 8px;
}

.post-date {
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.post-card:hover .post-date {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.youtube-badge {
    background-color: #ff0000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


.no-posts {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.no-posts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #000;
    margin-bottom: 15px;
}

.no-posts p {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-size: 1.1em;
}

.posts-footer {
    text-align: center;
}

.view-all-posts-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.view-all-posts-btn:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
}

/* Coming Soon Section */
.coming-soon-section {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.coming-soon-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

.coming-soon-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .best-eats-page {
        padding: 40px 20px;
    }
    
    .posts-grid {
        padding: 0 15px;
    }
    
    .best-eats-header h1 {
        font-size: 2.8em;
    }
    
    .intro-text h2 {
        font-size: 1.8em;
    }
    
    .intro-text p {
        font-size: 1em;
    }
    
    .coming-soon-section {
        padding: 30px 20px;
    }
    
    .coming-soon-content h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .best-eats-page {
        padding: 40px 15px;
    }
    
    .posts-grid {
        padding: 0 10px;
    }
    
    .best-eats-header h1 {
        font-size: 2.2em;
    }
    
    .intro-text h2 {
        font-size: 1.5em;
    }
    
    .matt-photo {
        max-width: 300px;
    }
}
