@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@500;700&display=swap');

/* ============================
   General Styles
============================ */
body {
    font-family: 'Roboto', sans-serif; 
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* ============================
   Header Styles
============================ */
header {
    background-color: #f8f9fa;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .search-bar input {
    border-radius: 50px;
    background-color: #f0f0f0;
    color: #333;
}

/* ============================
   Navbar Styles
============================ */
.navbar {
    background-color: #EADFD0;
    margin-bottom: 50px; 
}

.navbar-nav .nav-link {
    color: #000000 !important;
}

.navbar-toggler {
    border-color: #ffffff;
    outline: none; 
    box-shadow: none; 
}

.navbar-toggler-icon {
    background-color: #ffffff;
    border: none; 
}

.navbar-nav .nav-item:hover .nav-link {
    color: #2A718F !important;
}


@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }

    .navbar-nav .nav-item {
        margin: 5px 0; 
    }
}

.search-bar {
    margin-left: 20px; 
}



/* ============================
   Store Locations Section
============================ */
main {
    margin-top: 30px; 
}

.row.mb-5 {
    margin-bottom: 30px;
}

.col-md-6 iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    .row.mb-5 {
        margin-bottom: 20px; 
    }

    .col-md-6 {
        width: 100%; 
        margin-bottom: 20px;
    }

    iframe {
        margin-bottom: 20px; 
        height: 200px; 
    }
}

/* ============================
   Text Content Styling
============================ */
.text-center {
    color: #2D2C2C;
}

h5.fw-bold {
    margin-bottom: 20px; 
}

p {
    margin-top: 10px; 
    margin-bottom: 15px; 
}

/* ============================
   NoOther Store Message
============================ */
.no-store-message {
    margin-bottom: 2rem; 
}

@media (min-width: 576px) {
    .no-store-message {
        margin-bottom: 3rem; 
    }
}

@media (min-width: 768px) {
    .no-store-message {
        margin-bottom: 4rem; 
    }
}

@media (min-width: 992px) {
    .no-store-message {
        margin-bottom: 5rem; 
    }
}

@media (min-width: 1200px) {
    .no-store-message {
        margin-bottom: 6rem; 
    }
}

/* ============================
   Footer Styles
============================ */
footer {
    background-color: #2A718F;
    color: #ffffff;
    padding: 40px 0;
}

footer h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.subscribe-btn {
    background-color: #ffffff; 
    color: #2E6B83; 
    transition: all 0.3s ease; 
}

.subscribe-btn:hover {
    background-color: #2E6B83; 
    color: #ffffff; 
    border: 1px solid #2E6B83; 
}

a {
    color: inherit; 
    text-decoration: none; 
}

a:hover {
    color:#000000; 
    text-decoration: underline; 
}

footer .text-center {
    color: #ffffff !important; 
}

@media (max-width: 576px) {
    footer {
        padding: 20px 0; 
    }
    
    footer .container {
        display: block; 
        width: 100%;
    }

    footer .row {
        margin-bottom: 15px;
    }

    footer h6, footer p {
        font-size: 0.9rem; 
    }

    footer .col-md-2,
    footer .col-md-4 {
        width: 100%; 
        margin-bottom: 20px; 
    }

    footer .text-center {
        margin-top: 20px;
        font-size: 0.85rem;
    }
}


@media (max-width: 576px) {
    .container {
        padding: 10px;
    }

    .search-bar input {
        width: 100%;
    }

    .col-md-6 h5 {
        margin-bottom: 15px; 
    }

    iframe {
        height: 200px; 
    }

    .search-bar {
        margin-left: 0;
        margin-right: 0; 
    }
}

@media (max-width: 768px) {
    .search-bar {
        width: 70%;
    }

    iframe {
        margin-bottom: 20px; 
    }
}


@media (max-width: 360px) {
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}


@media (max-width: 576px) {
    footer .col-md-2, footer .col-md-4 {
        width: 100%; 
        margin-bottom: 20px; 
    }
}


@media (max-width: 767px) {
    .row.mb-5 {
        margin-bottom: 20px; 
    }

    .col-md-6 {
        width: 100%;
        margin-bottom: 20px; 
    }
}


@media (max-width: 576px) {
    footer .col-md-2, footer .col-md-4 {
        text-align: center;
		margin-bottom: 20px;
    }

    footer .text-center {
        text-align: center;
    }

    footer .col-md-2 ul, footer .col-md-4 form {
        text-align: center;
    }
}

