
/* ////////banner/////////////////// */

.banner {
            width: 100%;
            height: 400px;
            background-image: url('images/About-back-img.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        
        .breadcrumb {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 15px 25px;
            border-radius: 30px;
            z-index: 1;
            margin-top: 80px;
        }
        
        .breadcrumb a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        
        .breadcrumb a:hover {
            color: #000;
        }
        
        .breadcrumb-separator {
            margin: 0 10px;
            color: #333;
            font-size: 18px;
        }
        
        .breadcrumb-current {
            color: #333;
            font-size: 18px;
            font-weight: bold;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .banner {
                height: 400px;
            }
            
            .breadcrumb {
                padding: 12px 20px;
            }
            
            .breadcrumb a,
            .breadcrumb-separator,
            .breadcrumb-current {
                font-size: 16px;
            }
        }
        


/* //////blog section/////////////////// */


/* Basic Reset & Body Styling */
a{
    text-decoration: none;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0; /* Light gray background matching your image */
}

/* Header Styles */
.blog-heading {
    width: 100%;
    text-align: center;
    padding: 30px;
}

.blog-heading h2{
    font-size: 1.9em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Container for all page content */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0px 20px 50px 20px;
}

/* Search and Filter Section */
.search-filters {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line on small screens */
    gap: 15px; /* Space between input/select fields */
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    align-items: center;
}

.search-input,
.filter-select {
    flex: 1; /* Allows inputs to grow and shrink */
    min-width: 180px; /* Minimum width before wrapping */
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    background-color: #fff;
    color: #333;
    -webkit-appearance: none; /* Remove default arrow on select for custom styling */
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13.2-5.4H18.6c-5%200-9.3%201.8-13.2%205.4-3.9%203.6-5.9%208.1-5.9%2013.3%200%205.2%202%209.7%205.9%2013.3l128%20128c3.9%203.6%208.4%205.4%2013.2%205.4s9.3-1.8%2013.2-5.4l128-128c3.9-3.6%205.9-8.1%205.9-13.3%200-5.2-2-9.7-5.9-13.3z%22%2F%3E%3C%2Fsvg%3E'); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px; /* Space for the custom arrow */
}

.search-button {
    background-color: #ffc107; /* Yellow color from your image */
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    flex-shrink: 0; /* Prevent button from shrinking too much */
}

.search-button:hover {
    background-color: #e0a800;
}

/* Store Grid Layout */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr)); /* Two columns, responsive */
    gap: 30px;
}

/* Store Card Styling */
.store-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden; /* Ensures image and card corners are rounded */
    display: flex;
    flex-direction: column; /* Stack image and details vertically */
}

.store-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    overflow: hidden; /* Hide overflow if image is not perfectly sized */
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, cropping if necessary */
    display: block;
}

.store-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows details section to take remaining space */
}

.store-name {
    font-size: 1.4em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.store-contact,
.store-address {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 10px;
    display: flex; /* For icon alignment */
    align-items: flex-start;
}

.store-contact i,
.store-address i {
    color: #888; /* Icon color */
    margin-right: 8px;
    font-size: 1.1em;
    width: 20px; /* Fixed width for icons to align text */
    text-align: center;
}

.directions-button {
    background-color: #ffc107; /* Yellow color from your image */
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    align-self: flex-start; /* Align button to the left */
    margin-top: auto; /* Push button to the bottom if content is short */
}

.directions-button:hover {
    background-color: #e0a800;
}

/* Responsive Design */

/* Tablet View (e.g., up to 992px) */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2em;
    }

    .search-filters {
        padding: 20px;
        gap: 10px; /* Slightly reduce gap */
    }

    .search-input,
    .filter-select {
        min-width: unset; /* Remove min-width to allow more flexible wrapping */
        flex-basis: calc(50% - 10px); /* Two columns for inputs/selects */
    }

    .search-button {
        flex-basis: 100%; /* Button takes full width */
        margin-top: 10px;
    }

    .store-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Adjust minmax for tablet */
        gap: 20px;
    }

    .store-image {
        height: 200px; /* Reduce image height */
    }

    .store-details {
        padding: 15px;
    }

    .store-name {
        font-size: 1.3em;
    }

    .store-contact,
    .store-address {
        font-size: 0.9em;
    }
}

/* Phone View (e.g., up to 767px) */
@media (max-width: 767px) {
    .page-header {
        padding: 30px 15px;
        margin-bottom: 15px;
    }

    .page-header h1 {
        font-size: 1.8em;
    }

    .container {
        margin: 15px auto;
        padding: 0 15px;
    }

    .search-filters {
        flex-direction: column; /* Stack filters vertically */
        padding: 15px;
        gap: 10px;
    }

    .search-input,
    .filter-select,
    .search-button {
        width: 100%; /* All search elements take full width */
        flex-basis: auto; /* Reset flex-basis */
        margin-top: 0; /* Remove top margin from button */
    }

    .store-grid {
        grid-template-columns: 1fr; /* Single column for phone */
        gap: 20px;
    }

    .store-image {
        height: 180px; /* Further reduce image height */
    }

    .store-details {
        padding: 15px;
    }

    .store-name {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .store-contact,
    .store-address {
        font-size: 0.85em;
        margin-bottom: 8px;
    }

    .directions-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

/* Very Small Phones (e.g., 320px width) */
@media (max-width: 400px) {
    .page-header h1 {
        font-size: 1.5em;
    }

    .search-input,
    .filter-select,
    .search-button {
        padding: 10px;
        font-size: 0.9em;
    }

    .store-image {
        height: 150px;
    }

    .store-name {
        font-size: 1.1em;
    }
}