body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

    /* Background image settings */
    background-image: url('../images/background.jpg'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center center; /* Centers the image */
}


.header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1000;
}

.header_logo {
    width: 8rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    /* color: white; */
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #178252;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px; /* positioning below the menu button */
        right: 20px;
        background: rgba(0, 0, 0, 0.8); /* black background with high transparency */
        border-radius: 8px; /* rounded corners */
        padding: 10px;
        width: 200px; /* adjust width as necessary */
        transition: all 0.3s ease; /* smooth transition */
    }

    .nav-links.show {
        display: flex;
    }

    .burger {
        display: flex;
    }
}


/*main section*/

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
    margin-bottom: 40px;
}

.shop-logo {
    width: 100%;
    max-width: 500px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.3); */
}

.banner-image{
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.banner-text h1 {
    font-size: 2.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.banner-text {
    width: 100%;
    max-width: 1000px;
}


.banner-text p {
    font-size: 1.2rem;
    margin: 10px 0 0 20px;
    color: #888;
}

.banner-footer-text {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin-top: 20px;
}

.banner-footer-text p {
    font-size: 1.2rem;
    color: #888;
}



.order-flow-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.order-flow-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.order-flow-images img {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.order-flow {
    padding: 20px;
}

.order-flow h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.flow-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background-color: #333;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}

.flow-step p {
    font-size: 1rem;
    color: #555;
}


    

.terms-conditions-card {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.terms-conditions-card h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.terms-conditions-content {
    font-size: 1rem;
    color: #555;
}

.terms-conditions-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.terms-conditions-content li {
    margin-bottom: 10px;
}


.shop-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.shop-sections-heading h2 {
    font-size: 1.8rem;
    color: whitesmoke;
    margin-bottom: 15px;
    text-align: center;
}


.section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    width: 150px; /* recent added*/
    /* max-width: 300px; */
    /* flex: 1; */
    text-align: center;
}

.section img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.section-text {
    padding: 15px;
}

.section-text h2 {
    margin: 10px 0;
    font-size: 1.2rem; /*recent added*/
}

.section-text a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #178252;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.section-text a:hover {
    background: #0056b3;
}

/* Footer styles */
.footer {
    background-color: rgba(0,0,0,0.3);
    color: white;
    padding: 20px;
    text-align: center;
}

.address-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: -10px;
}

.address-block {
    width: 45%; /* Adjust this percentage as needed */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    margin: 10px 0;
}

.address-block h3 {
    margin-top: 0;
}

.address-block p {
    margin: 5px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .address-block {
        width: 100%;
    }

    .shop-logo,
    .banner-image {
        max-width: 100%;
    }

    .order-flow-images {
        flex-direction: column;
    }

    .order-flow-images img {
        max-width: 100%;
    }

}