/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    background: linear-gradient(45deg, #F85032, #E73827);
    padding: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-title {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #40E0D0;
    margin-bottom: 1rem;
    font-weight: 700;
}

nav {
    background-color: #ff9a9e;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #2c3e50;
}

/* Main Content Styles */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.featured-post img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-post h2 {
    font-family: 'Playfair Display', serif;
    padding: 1.5rem;
    font-size: 1.8rem;
}

.featured-post p {
    padding: 0 1.5rem;
    color: #666;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    font-family: 'Playfair Display', serif;
    padding: 1rem;
    font-size: 1.2rem;
}

.post-card p {
    padding: 0 1rem;
    color: #666;
}

/* Read More Button */
.read-more {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 1rem;
    background-color: #ff9a9e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #ff8087;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 2rem;
}

.about-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-widget img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    object-fit: cover;
}

.about-widget h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.learn-more {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #ff9a9e;
    text-decoration: none;
    font-weight: 500;
}

.popular-posts {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.popular-posts h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.popular-posts ul {
    list-style: none;
}

.popular-posts li {
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-posts a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-posts a:hover {
    color: #ff9a9e;
}

/* Footer Styles */
footer {
    background-color: #ff9a9e;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .featured-post img {
        height: 300px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.active {
    color: #2c3e50;
}

/* Recipe Page Styles */
.recipe-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

.recipe-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.recipe-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-meta i {
    color: #ff9a9e;
}

.recipe-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.recipe-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.recipe-section {
    margin-bottom: 3rem;
}

.recipe-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-section h2 i {
    color: #ff9a9e;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ingredients-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.ingredients-column ul {
    list-style: none;
}

.ingredients-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.ingredients-column li:before {
    content: "•";
    color: #ff9a9e;
    font-weight: bold;
    margin-right: 0.5rem;
}

.instructions ol {
    list-style: none;
    counter-reset: recipe-steps;
}

.instructions li {
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.instructions li:before {
    counter-increment: recipe-steps;
    content: counter(recipe-steps);
    position: absolute;
    left: 0;
    top: 0;
    background: #ff9a9e;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.instructions h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.tips ul, .variations ul {
    list-style: none;
}

.tips li, .variations li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.tips li:before {
    content: "💡";
    margin-right: 0.5rem;
}

.variations li:before {
    content: "✨";
    margin-right: 0.5rem;
}

.related-recipes {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.related-recipes h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.related-recipes ul {
    list-style: none;
}

.related-recipes li {
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;
}

.related-recipes li:last-child {
    border-bottom: none;
}

.related-recipes a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-recipes a:hover {
    color: #ff9a9e;
}

@media (max-width: 768px) {
    .recipe-container {
        grid-template-columns: 1fr;
    }

    .recipe-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .recipe-hero-image {
        height: 300px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .instructions li {
        padding-left: 2.5rem;
    }
}

/* Heat Scale Styles */
.heat-scale {
    background: linear-gradient(45deg, #fff5f5, #ffe5e5);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.heat-scale h2 {
    color: #ff4d4d;
}

.heat-scale ul {
    list-style: none;
    padding: 0;
}

.heat-scale li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 77, 77, 0.2);
    font-size: 1.1rem;
}

.heat-scale li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .heat-scale {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

.about-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-header {
    margin-bottom: 2rem;
    text-align: center;
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-section h2 i {
    color: #ff9a9e;
}

.about-section p {
    line-height: 1.8;
    color: #666;
}

.stats-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stats-widget ul {
    list-style: none;
}

.stats-widget li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.stats-widget li:last-child {
    border-bottom: none;
}

.stats-widget i {
    color: #ff9a9e;
}

/* Photography Page Styles */
.photography-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

.photography-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.photography-header {
    text-align: center;
    margin-bottom: 3rem;
}

.photography-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.photography-tips {
    margin-bottom: 3rem;
}

.tip-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.equipment-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
}

.equipment-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.equipment-card ul {
    list-style: none;
}

.equipment-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.equipment-card li:last-child {
    border-bottom: none;
}

.workshop-widget, .resources-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.resources-widget ul {
    list-style: none;
}

.resources-widget li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.resources-widget li:last-child {
    border-bottom: none;
}

.resources-widget a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resources-widget a:hover {
    color: #ff9a9e;
}

/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

.contact-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: #ff9a9e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #ff8087;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-card h3 {
    margin-bottom: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.business-hours,
.newsletter-signup {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.business-hours li:last-child {
    border-bottom: none;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.newsletter-form button {
    width: 100%;
    background: #ff9a9e;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff8087;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-container,
    .photography-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        height: 300px;
    }

    .gallery-grid,
    .equipment-grid,
    .social-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .gallery-caption {
        transform: translateY(0);
    }
}

/* Utility Classes */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff9a9e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #ff8087;
}

/* Learn More Page Styles */
.achievements-list {
    list-style: none;
    margin: 1rem 0;
}

.achievements-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.achievements-list li:before {
    content: "🏆";
    margin-right: 0.8rem;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.publication-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
}

.publication-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.publication-card ul {
    list-style: none;
}

.publication-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.publication-card li:last-child {
    border-bottom: none;
}

.connect-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quick-facts {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts i {
    color: #ff9a9e;
    width: 20px;
    text-align: center;
}

.upcoming-events {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.upcoming-events ul {
    list-style: none;
}

.upcoming-events li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.upcoming-events li:last-child {
    border-bottom: none;
}

.event-date {
    display: block;
    color: #ff9a9e;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.event-name {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .connect-buttons {
        flex-direction: column;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
}

/* Search Page Styles */
.search-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

.search-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #ff9a9e;
    outline: none;
}

.search-box button {
    background: #ff9a9e;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background: #ff8087;
}

.search-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #ff9a9e;
    border-radius: 5px;
    background: white;
    color: #ff9a9e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #fff5f5;
}

.filter-btn.active {
    background: #ff9a9e;
    color: white;
}

.search-results {
    display: grid;
    gap: 1.5rem;
}

.search-result-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.search-result-card:hover {
    transform: translateY(-2px);
}

.search-result-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.search-result-card h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-card h3 a:hover {
    color: #ff9a9e;
}

.search-result-card p {
    color: #666;
    margin-bottom: 1rem;
}

.result-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #fff;
    color: #666;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid #eee;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.popular-searches {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.popular-searches h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.popular-searches ul {
    list-style: none;
}

.popular-searches li {
    border-bottom: 1px solid #eee;
}

.popular-searches li:last-child {
    border-bottom: none;
}

.popular-searches a {
    display: block;
    padding: 0.8rem 0;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-searches a:hover {
    color: #ff9a9e;
}

.search-tips {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-tips h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.search-tips ul {
    list-style: none;
}

.search-tips li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.search-tips li:last-child {
    border-bottom: none;
}

.search-tips i {
    color: #ff9a9e;
}

@media (max-width: 768px) {
    .search-container {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        padding: 1rem;
    }

    .search-filters {
        justify-content: center;
    }
} 