/*
Theme Name: Lokalna Bistro
Description: Custom WordPress theme for Lokalna Bistro with ACF blocks
Version: 1.0
Author: Custom Development
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.main-navigation li {
    margin: 0;
    position: relative;
}

.main-navigation a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    transition: color 0.2s ease;
    position: relative;
    display: block;
}

.main-navigation a:hover {
    color: #E6D1AD;
    text-decoration: underline;
}

.main-navigation a::after { display: none; }

/* Active menu item */
.main-navigation .current-menu-item a,
.main-navigation .current-page-item a {
    color: #E6D1AD;
    background: rgba(34, 139, 34, 0.15);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.2);
}

/* Menu item animations */
.main-navigation li {
    animation: fadeInDown 0.6s ease forwards;
    opacity: 0;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Menu item spacing improvements */
.main-navigation > ul > li:not(:last-child) {
    margin-right: 0.5rem;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-form input[type="search"] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 200px;
    font-size: 14px;
}

.search-form button {
    background: none;
    border: none;
    margin-left: -35px;
    cursor: pointer;
}

/* Hero section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #9ACD32;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: white;
    color: #333;
}

/* Offer section */
.offer-section {
    padding: 4rem 2rem;
    background: #F3F3F3;
}

h2.offer-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #3F7C4A;
    margin-bottom: 3rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card h3 {
    margin: 0 0 0.75rem 0;
}

.offer-card {
    background: rgba(34, 139, 34, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.offer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* .offer-button styles moved to assets/scss/blocks.scss */

/* Footer */
.site-footer {
    background: #E6D1AD;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #9ACD32;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #9ACD32;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Chat button removed */

/* Responsive design */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .search-form input[type="search"] {
        width: 150px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h2.offer-title {
        font-size: 2rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Additional enhancements */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.offer-card.loaded {
    animation: fadeInUp 0.6s ease forwards;
}

/* Keep offer buttons aligned at the bottom */
.offer-button {
    margin-top: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container for better content width */
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Site title styling */
.site-title a {
    color: #E6D1AD;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}

.site-title a:hover {
    color: #9ACD32;
}

/* Custom logo styling */
.custom-logo-link img {
    max-height: 60px;
    width: auto;
}

/* Search form improvements */
.search-form {
    position: relative;
}

.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.search-submit:hover {
    color: #E6D1AD;
}

/* Mobile menu improvements */
@media (max-width: 768px) {
    .main-navigation {
        width: 100%;
        margin-top: 1rem;
    }
    
    .main-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .main-navigation li {
        margin: 0;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .main-navigation a {
        padding: 0.75rem 0.5rem;
        /* border-radius: 20px; */
        transition: all 0.3s ease;
        font-size: 0.9rem;
        display: block;
        /* background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2); */
    }
    
    .main-navigation a:hover {
        background: rgba(34, 139, 34, 0.2);
        color: #E6D1AD;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .main-navigation .current-menu-item a,
    .main-navigation .current-page-item a {
        background: rgba(34, 139, 34, 0.7);
        color: #E6D1AD;
        font-weight: 700;
        box-shadow: 0 2px 4px rgba(34, 139, 34, 0.3);
    }
}

/* Jadłospisy Styles */
.jadlospisy-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.jadlospis-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jadlospis-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.jadlospis-content {
    display: flex;
    align-items: center;
    min-height: 120px;
}

.jadlospis-strip {
    background: #E6D1AD;
    color: white;
    padding: 1rem 0.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.so-tasty-text {
    transform: rotate(180deg);
}

.jadlospis-thumbnail {
    width: 180px;
    height: 145px;
    flex-shrink: 0;
}

.jadlospis-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 2rem;
}

.jadlospis-details {
    flex: 1;
    padding: 1rem;
}

.jadlospis-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #E6D1AD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.jadlospis-info {
    flex: 1;
}

.jadlospis-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
}

.jadlospis-title a {
    color: #333;
    text-decoration: none;
}

.jadlospis-title a:hover {
    color: #E6D1AD;
}

.jadlospis-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.jadlospis-actions {
    padding: 1rem;
}

.jadlospis-menu-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.jadlospis-menu-btn:hover {
    background: rgba(34, 139, 34, 0.1);
    color: #E6D1AD;
}

/* Single Jadłospis Styles */
.single-jadlospis {
    padding: 2rem;
    margin-top: 2rem;
}

.jadlospis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.jadlospis-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.jadlospis-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9ACD32;
    margin: 1rem 0 2rem 0;
    text-align: center;
}

.jadlospis-banner {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner-image {
    flex: 2;
    position: relative;
}

.banner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.so-tasty-overlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #E6D1AD;
    color: white;
    padding: 1rem 0.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.banner-info {
    flex: 1;
    background: #E6D1AD;
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bistro-logo {
    text-align: center;
}

.logo-hexagon {
    width: 80px;
    height: 80px;
    background: white;
    color: #E6D1AD;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
    transform: rotate(45deg);
}

.logo-hexagon span {
    transform: rotate(-45deg);
}

.bistro-logo p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.meal-plan-content {
    margin-bottom: 2rem;
}

.day-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(34, 139, 34, 0.05);
    border-radius: 10px;
    border-left: 4px solid #E6D1AD;
}

.day-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E6D1AD;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.day-meals {
    display: grid;
    gap: 1rem;
}

.meal-category {
    /* background: white; */
    padding: 1rem;
    /* border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.meal-category h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #E6D1AD;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.meal-category p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.jadlospis-engagement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.social-sharing {
    display: flex;
    gap: 1rem;
}

.social-share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-share:hover {
    transform: scale(1.1);
}

.social-share.facebook {
    background: #1877f2;
}

.social-share.twitter {
    background: #1da1f2;
}

.social-share.linkedin {
    background: #0077b5;
}

.social-share.link {
    background: #666;
}


/* Latest Posts Section */
.latest-posts {
    margin-top: 3rem;
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.latest-post-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.latest-post-item:hover {
    transform: translateY(-5px);
}

.post-thumbnail {
    position: relative;
    height: 200px;
} 
 
.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-thumbnail .so-tasty-overlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(34, 139, 34, 0.9);
    color: white;
    padding: 0.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
}

.post-info {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #E6D1AD;
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.post-stats i {
    margin-right: 0.3rem;
    color: #228B22;
}

/* Responsive design for jadłospisy */
@media (max-width: 768px) {
    .jadlospis-content {
        flex-direction: column;
        text-align: center;
    }
    
    .jadlospis-strip {
        writing-mode: horizontal-tb;
        padding: 0.5rem;
        min-width: auto;
        width: 100%;
    }
    
    .so-tasty-text {
        transform: none;
    }
    
    .jadlospis-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .jadlospis-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .jadlospis-title {
        font-size: 1.8rem;
    }
    
    .jadlospis-banner {
        flex-direction: column;
    }
    
    .banner-image {
        height: 200px;
    }
    
    .banner-image img {
        height: 200px;
    }
    
    .day-meals {
        grid-template-columns: 1fr;
    }
    
    .jadlospis-engagement {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .latest-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Pagination styles */
.navigation.pagination {
    margin: 2rem 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: white;
    color: #228B22;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #E6D1AD;
    transition: all 0.3s ease;
    font-weight: 600;
}

.page-numbers:hover,
.page-numbers.current {
    background: #E6D1AD;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34, 139, 34, 0.3);
}

.page-numbers.prev,
.page-numbers.next {
    background: #9ACD32;
    color: white;
    border-color: #9ACD32;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
    background: #E6D1AD;
    border-color: #E6D1AD;
}

/* Page header styles */
.page-header {
    margin-bottom: 2rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #E6D1AD;
    margin: 0;
}

/* No jadłospisy message */
.no-jadlospisy {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin: 2rem 0;
}

.no-jadlospisy p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Text Image Repeater Block Styles */
.text-image-repeater {
    padding: 4rem 0;
}

.text-image-section {
    margin-bottom: 4rem;
}

.text-image-content {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-image-section.right .text-image-content {
    flex-direction: row-reverse;
}

.image-column {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.image-wrapper:hover .section-image {
    transform: scale(1.05);
}

.text-column {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem;
    position: relative;
}

.text-overlay {
    background: rgba(34, 139, 34, 0.9);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subheading {
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.section-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.section-content p {
    margin-bottom: 1rem;
}

.section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
}

.section-button {
    display: inline-block;
    background: #9ACD32;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #9ACD32;
}

.section-button:hover {
    background: white;
    color: #9ACD32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 205, 50, 0.3);
}

/* Services Grid Block Styles */
.services-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #E6D1AD;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.service-box:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E6D1AD;
    margin: 0 0 1rem 0;
    text-align: center;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-description p {
    margin-bottom: 1rem;
}

.service-downloads {
    margin-top: auto;
}

.download-link {
    display: block;
    color: #228B22;
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.download-link:hover {
    color: #9ACD32;
    border-bottom-color: #9ACD32;
}

/* Responsive styles for new blocks */
@media (max-width: 768px) {
    .text-image-content {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .image-column {
        height: 300px;
    }
    
    .text-column {
        padding: 2rem 1.5rem;
    }
    
    .text-overlay {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .services-header {
        font-size: 2rem;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-box {
        margin-bottom: 1rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
} 