

/* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: #f7f7f7;
            color: #333;
            scroll-behavior: smooth;
            padding-top: 80px;
        }
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px; /* Further reduce for very small screens */
    }
}


/* CSS Variables for Themes */
:root {
    --button-bg-color: #444;
    --button-hover-bg-color: #666;
    --button-text-color: #f0f0f0;
    --button-shadow: rgba(255, 255, 255, 0.2);
    --button-hover-shadow: rgba(255, 255, 255, 0.3);
}





									/* Back to Top Floating Button */
/* Back to Top Floating Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background: linear-gradient(to right, gold, #800000); /* Matches button theme */
    color: white;
    border-radius: 20%; /* Circular button */
    text-decoration: none;
    width: 50px; /* Default button size */
    height: 50px; /* Default button size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0; /* Hidden by default */
    visibility: hidden; /* Hidden by default */
    z-index: 1000; /* Stays above other elements */
    display: flex; /* Centers content */
    justify-content: center; /* Centers the arrow */
    align-items: center; /* Centers the arrow */
    cursor: pointer; /* Indicates clickable element */
}

.back-to-top:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    background: linear-gradient(to right, #800000, gold); /* Reverse gradient on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .back-to-top {
        width: 50px; /* Adjust button size for tablets */
        height: 50px;
    }

    .back-to-top::before {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 12px solid white;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px; /* Adjust button size for smaller screens */
        height: 40px;
    }

    .back-to-top::before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 10px solid white;
    }
}


										   /* Header */
        header {
            background-color: #800000;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            border-bottom: 3px solid gold;
        }

        header .logo h1 {
            margin: 0;
            font-family: 'Cinzel', serif;
            font-size: 28px;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: gold;
        }





										/* Call Icon Styling */
.call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.call-icon a {
    text-decoration: none;
    color: white;
    background: linear-gradient(to right, #800000, gold); /* Gradient for the icon */
    border-radius: 50%; /* Circular icon */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Slight shadow */
    transition: transform 0.3s ease, background 0.3s ease;
    margin-right: 10px;
}

.call-icon a:hover {
    transform: scale(1.1); /* Slight zoom effect */
    background: linear-gradient(to right, gold, #800000); /* Reverse gradient */
}

.call-icon i {
    font-size: 18px;
}

/* Ensure Call Button on Right Side */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
    align-items: center;
    flex: 1; /* Allow menu to take up available space */
}

.call-icon {
    margin-left: 10px; /* Add slight spacing */
}





								/* Contact Section Styling */
#contact {
    padding: 40px 20px;
    background-color: #ffffff;
    color: #800000;
    text-align: center;
    margin: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Cinzel', serif;
}

#contact h2 {
     font-size: 24px;
    margin-bottom: 30px;
    color: #800000;
    font-family: 'Cinzel', serif;
    text-align: center;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;

}

#contact-form label {
    font-weight: bold;
    font-size: 1.2rem;
}

#contact-form input,
#contact-form textarea {
    width: 70%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #800000;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: gold;
}





       									 /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 30px;
            color: white;
            text-align: right;
            flex-grow: 1;
        }


            nav ul {
                display: none;
                flex-direction: column;
                background-color: #800000;
                position: absolute;
                top: 60px;
                right: 20px;
                width: 200px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                border-radius: 10px;
            }

            nav ul li {
                margin: 10px 0;
                padding: 10px;
            }

            nav ul li a {
                font-size: 20px;
                padding: 10px;
            }

            .hamburger {
                display: block;
            }

            .nav-active {
                display: flex;
            }
        



									/* Hero Section */
 
        .hero {
            background-image: url('../assets/images/periperiai.jpg');
            background-size: cover;
            background-position: center;
            height: 350px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            font-family: 'Cinzel', serif;
            padding: 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.45);
        }

        .hero-content {
            z-index: 1;
        }

        .hero h2 {
            font-size: 4vw;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 2vw;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .hero h2 {
                font-size: 6vw;
            }
   header .logo h1, .logo-container h1 {
            margin: 0;
            font-family: 'Cinzel', serif;
            font-size: 15px;
        }

            .hero p {
                font-size: 4vw;
            }
        }

        .button-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

       .order-btn, .view-menu-btn, .navigate-btn, .view-lunch-menu-btn, .contact-btn {
    background: linear-gradient(to right, gold, #800000);
    padding: 14px 32px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 10px;
    display: inline-block; /* Ensures consistent spacing */
    text-align: center; /* Centers text */
    width: auto; /* Allow flexibility */
    max-width: 100%; /* Prevent buttons from overflowing */
	border: none;
}

.order-btn:hover, .view-menu-btn:hover, .navigate-btn:hover, .view-lunch-menu-btn:hover, .contact-btn:hover {
    transform: scale(1.05); /* Subtle zoom effect on hover */
    background: linear-gradient(to right, #800000, gold); /* Reverse gradient on hover */
}

@media (max-width: 768px) {
    .order-btn, .view-menu-btn, .navigate-btn, .view-lunch-menu-btn, .contact-btn {
        font-size: 14px; /* Slightly smaller text for tablets */
        padding: 12px 28px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .order-btn, .view-menu-btn, .navigate-btn, .view-lunch-menu-btn, .contact-btn {
        font-size: 14px; /* Smaller text for mobile devices */
        padding: 10px 24px; /* Compact padding for small screens */
        width: 70%; /* Full-width buttons on smaller screens */
        margin: 10px auto; /* Center buttons with auto margin */
border: none;
    }
}



        .order-btn-anim {
            animation: smoothHoverEffect 1s infinite alternate ease-in-out;
        }

        @keyframes smoothHoverEffect {
            0% {
                transform: scale(1);
                background: linear-gradient(to right, gold, #800000);
            }
            100% {
                transform: scale(1.1);
                background: linear-gradient(to right, #800000, gold);
            }
        }

        .order-btn:hover, .navigate-btn:hover {
            animation: none;
            transform: scale(1.1);
            background: linear-gradient(to right, #800000, gold);
        }

	.view-lunch-menu-btn:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #800000, gold);
        }

  .view-menu-btn:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #800000, gold);
        }     


							   /* Menu Section */
        #menu {
            padding: px 20px;
            text-align: center;
            background-color: #ffffff;
	    margin: 15px 20px;
	    border-radius: 15px;
        }

        #menu h2 {
               font-size: 24px;
    margin-bottom: 30px;
    color: #800000;
    font-family: 'Cinzel', serif;
    text-align: center;
        }

        .menu-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .menu-item {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            width: 280px;
            height: 320px;
            margin: 20px;
            text-align: center;
            animation: pulseEffect 3s infinite alternate ease-in-out;
        }

        @keyframes pulseEffect {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.05);
            }
        }

        .menu-item img {
            width: 100%;
            height: 60%;
            object-fit: cover;
        }

        .menu-item h3 {
            margin: 5px 0 5px 0; /* Adjusted margin to reduce spacing */
            font-size: 20px;
            color: #800000;
            font-family: 'Cinzel', serif;
        }

        .menu-item p {
            margin: 5px 10px; /* Adjusted margin to reduce spacing after description */
            font-size: 1rem;
            color: #666;
        }

        @media (max-width: 768px) {
            .menu-container {
                gap: 15px;
            }

            .menu-item {
                width: 80%;
                margin: 15px;
            }

            .menu-item img {
                max-width: 100%;
            }

            .menu-item h3 {
                font-size: 4vw;
            }

            .menu-item p {
                margin: 0 10px; /* Remove spacing after description on small screens */
                font-size: 3.5vw;
            }
        }

        @media (max-width: 480px) {
            .menu-container {
                gap: 10px;
            }

            .menu-item {
                width: 95%;
                margin: 10px;
            }

            .menu-item img {
                max-width: 100%;
            }

            .menu-item h3 {
                font-size: 5vw;
            }

            .menu-item p {
                margin: 0 10px; /* Remove spacing after description on very small screens */
                font-size: 4vw;
            }
        }



    								   /* News Board Section */
        #news-board {
            padding: 60px 20px;
            text-align: center;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 40px 20px;
            border-radius: 15px;
        }

        #news-board h2 {
        font-size: 24px;
    margin-bottom: 30px;
    color: #800000;
    font-family: 'Cinzel', serif;
    text-align: center;
}

        .news-item {
          
            margin: 0 auto;
            text-align: center;
            border-radius: 15px;
            background-color: #f9f9f9;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .news-item img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 20px;
        }

   
								        /* Map Section */
        #map-container {
    
            text-align: center;
            margin: 40px 20px;
        }
  #map {
            width: 100%;
            height: 300px;
            margin: 0px 0;
            border: none;
        }


        #map-container iframe {
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            #map {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            #map {
                height: 200px;
            }
        }

     
								   /* About Section */
   #about {
            padding: 60px 20px;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 40px 20px;
            border-radius: 15px;
        }

        #about h2 {
              font-size: 24px;
    margin-bottom: 30px;
    color: #800000;
    font-family: 'Cinzel', serif;
    text-align: center;
        }

        #about p {
            font-size: 1.5vw;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            color: #555;
        }

        @media (max-width: 768px) {
            #about h2 {
                font-size: 24px;
            }

            #about p {
                font-size: 4vw;
            }
        }

    

							    /* Footer */
        footer {
            background-color: #800000;
            color: white;
            padding: 20px;
            text-align: center;
        }

        footer p {
            margin: 5px 0;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            footer p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            footer p {
                font-size: 0.9rem;
            }
        }


.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and title */
}

.site-logo {
    max-width: 80px; /* Adjust size as needed */
    height: auto;
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 50px;
    }

  }




								/* Map Container */
#map-container {
    margin-top: 60px; /* Adjust based on the header height */
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    overflow: hidden;
}

#map {
    height: 400px; /* Default height for the map */
    width: 100%; /* Full width */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    position: relative; /* Ensures it respects container boundaries */
    z-index: 1; /* Stays below the header */
}
#map-title {
    font-family: 'Cinzel', serif; /* Match the title font */
    color: #800000; /* Match the primary color */
    font-size: 23px;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #map {
        height: 300px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 480px) {
    #map {
        height: 250px; /* Further adjust height for mobile */
    }
}


/* Custom Map Buttons */
.leaflet-custom-buttons a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: linear-gradient(to right, gold, #800000);
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.leaflet-custom-buttons a:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #800000, gold);
}




								/* News Ticker Styles */
.news-ticker {
    position: relative;
    overflow: hidden;
    background: #800000; /* Matches header background */
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 50px;
    height: 50px; /* Ticker height */
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 999; /* Ensure it's visible under the header */
}

.news-ticker-wrapper {
    display: flex;
    animation: scroll 15s linear infinite; /* Sliding animation */
}

.news-ticker-item {
    flex-shrink: 0;
    padding-right: 50px; /* Space between news items */
    white-space: nowrap; /* Prevents wrapping */
}

/* Keyframe Animation for the Scrolling Effect */
@keyframes scroll {
    0% {
        transform: translateX(100%); /* Start offscreen to the right */
    }
    100% {
        transform: translateX(-100%); /* Slide offscreen to the left */
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .news-ticker {
        font-size: 16px; /* Adjust text size for tablets */
        height: 40px; /* Reduce height for smaller screens */
        line-height: 40px;
    }

    .news-ticker-item {
        padding-right: 30px; /* Reduce spacing for smaller screens */
    }
}

@media (max-width: 480px) {
    .news-ticker {
        font-size: 14px; /* Adjust text size for mobile screens */
    }
}




							/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Spacing between icons */
    margin: 20px 0; /* Top and bottom spacing */
}

.social-icon {
    color: white;
    background: linear-gradient(to right, gold, #800000); /* Gradient background */
    border-radius: 50%; /* Circular icons */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.social-icon i {
    font-size: 18px;
}

.social-icon:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    background: linear-gradient(to right, #800000, gold); /* Reverse gradient */
}






							/* Opening Times Section */
#opening-times {
    padding: 40px 30px;
    background-color: #ffffff; /* Matches theme background */
    color: #800000; /* Matches theme text color */
    text-align: center;
    margin: 40px 20px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-family: 'Cinzel', serif; /* Matches font style */
}

#opening-times h2 {
    font-size: 24px;
    color: #800000;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    text-align: center;
}

/* Opening Times Table */
.opening-times-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
max-width: 800px;

}

.opening-times-table td {
    padding: 10px 20px;
    font-size: 18px;
    color: #333; /* Neutral text color */
    border-bottom: 1px solid #ddd; /* Subtle row divider */
}

.opening-times-table tr:last-child td {
    border-bottom: none; /* Remove border for the last row */
}

.opening-times-table td:first-child {
    text-align: left; /* Align days to the left */
    font-weight: bold;
    color: #800000; /* Highlight days with theme color */
}

.opening-times-table td:last-child {
    text-align: right; /* Align times to the right */
}

/* Responsive Design */
@media (max-width: 768px) {
    #opening-times {
        padding: 30px 15px;
    }

    .opening-times-table td {
        font-size: 16px; /* Adjust font size for smaller screens */
        padding: 8px 15px;
    }

}

@media (max-width: 480px) {
    .opening-times-table td {
        font-size: 14px; /* Further adjust font size for mobile devices */
        padding: 6px 10px;
    }
}









										/* Popup Overlay */
/* Disable scrolling when popup is active */
body.no-scroll {
    overflow: hidden; /* Prevent scrolling */
    height: 100%; /* Ensure full page is locked */
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Initially transparent */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* Disable interactions when hidden */
}

/* Active Popup */
.popup-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; /* Enable interactions only when visible */
}

/* Popup Content */
.popup-content {
    background: #fff;
    padding: 20px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
}

/* Popup Title */
.popup-content h2 {
    font-size: 24px;
    color: #800000;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

/* Popup Text */
.popup-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* Popup Button */
.popup-btn {
    display: inline-block;
    background: linear-gradient(to right, gold, #800000);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.popup-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #800000, gold);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #800000;
}

/* Animation */
@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}



							/* Offers & Discounts Section */
#offers-discounts {
    padding: 60px 20px;
    background-color: #ffffff; /* Matches theme background */
    text-align: center;
    color: #800000; /* Matches theme primary color */
    margin: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-family: 'Cinzel', serif;

}

#offers-discounts h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #800000;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

/* Offers Container */
.offers-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Offer Item */
.offer-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    flex: 1 1 calc(33.33% - 20px); /* Three items per row */
    min-width: 280px; /* Minimum width for smaller screens */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
margin: 0 30%;
}

.offer-item:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Elevated shadow */
}

.offer-item h3 {
    font-size: 22px;
    color: #800000;
    margin-bottom: 15px;
}

.offer-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Offer Button */
.offer-btn {
    display: inline-block;
    background: linear-gradient(to right, gold, #800000);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    
}

.offer-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #800000, gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .offers-container {
               gap: 15px;
    }

    .offer-item {
        flex: 1 1 100%; /* Full width for each item */
    }

    #offers-discounts h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .offer-item h3 {
        font-size: 18px;
    }

    .offer-item p {
        font-size: 14px;
    }

    .offer-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}
