@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Momo Trust Display", sans-serif;
}

:root {
    --orange-clr: #E98017;
    --browm-clr: #C39B6A;
    --dark-browm-clr: #35151A;
    --white-clr: #fff;
    --black-clr: #000;
    --light-red-clr: #f3c9c9;
    --gray-clr: #636363;
    --light-gray-clr: #c4c4c4;
    --dawn-pink-clr: #fae7e5;
    --frosted-mint-clr: #dcfef9;
    --website-body-clr: #FFFDF0;
}

body {
    background-color: var(--website-body-clr);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* Header part (REVISED) */


header {
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.logo img {
    width: 120px;
}

.navlist {
    display: flex;
    align-items: center;
    gap: 2rem;

}

li {
    list-style: none;
}

.contactBar {
    display: flex;
    align-items: center;
    background-color: var(--orange-clr);
    padding: 0.2rem 0.5rem;
    border-radius: 5rem;
    gap: 1rem;
}

.navlink {
    color: var(--black-clr);
    font-weight: 500;
    text-decoration: none;
}



@media (max-width: 768px) {

    /* Hide the nav links and icons */

    .navlist,
    .nav-icons {
        display: none;

    }

    .hamburger1 {
        display: block;
        /* Show the hamburger menu on mobile */

    }

    ul {
        display: none;
    }


    .navlist.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
        background: var(--website-body-clr);
        padding: 1rem 0;
    }

    .nav-icons.active {
        display: flex;
        margin-top: 0.5rem;
        text-decoration: none;
    }

}


.active,
.navlink:hover {
    color: var(--browm-clr);
}

.nav-icons {
    display: flex;
    gap: 0.5rem;
    text-decoration: none;
}

.icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons-link {
    width: 100%;
    background-color: var(--orange-clr);
    width: 2.3rem;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}

.icons-link:hover {
    transform: translateY(-10%);
}

.fa-solid,
.fa-brands {
    font-size: 1.1rem;
    color: var(--white-clr);
}

@media (max-width: 768px) {
    .hamburger1 {
        display: block;
        /* Show the hamburger menu on mobile */
    }
}

@media (min-width: 769px) {
    .hamburger1 {
        display: none;
        /* Hide the hamburger menu on larger screens */
    }
}


.burger {
    background-color: var(--black-clr);
    width: 2.3rem;
    height: .25rem;
    margin: .3rem;
    border-radius: 2rem;
}


/* Hero-section (REVISED) */


.hero-section {
    background-image: url(Images/banner3.jpg);
    width: 100%;
    min-height: 80vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 2px;
    display: flex;
    align-items: center;
}

.content {
    color: var(--dark-browm-clr);
}

h1 {
    width: auto;
    padding: 5px 0;
    font-size: 70px;
    color: #FFFDF0;
    margin-left: 15px;
}

.btn-container {
    display: flex;
    gap: 3rem;
    padding: 40px 0;
    flex-wrap: wrap;
    margin-left: 15px;
}

button,
.form-btn {
    background-color: var(--orange-clr);
    color: var(--white-clr);
    border: .1rem solid var(--dark-browm-clr);
    padding: 10px 40px;
    border-radius: 5rem;
    font-size: 1rem;
    cursor: pointer;
}

[data-type='bordered-btn'] {
    background-color: transparent;
    color: var(--dark-browm-clr);
}


/* Search Section (REVISED) */


.other-section {
    padding-block: 5rem;
}

.row-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    flex-wrap: wrap;
}



.form-container {
    margin-top: 0.5rem;
    border: 0.05rem solid var(--light-gray-clr);
    height: 4.5rem;
    border-radius: 5rem;
    padding: 0.5rem;
    display: flex;
    width: 100%;
    max-width: 600px;
    background-color: var(--website-body-clr);
}

input[type='search'] {
    height: 100%;
    border-radius: 5rem 0 0 5rem;
    border: none;
    font-size: 1rem;
    padding-left: 1.5rem;
    background-color: transparent;
    flex-grow: 1;
    min-width: 100px;
}

input:focus {
    outline: none;
}

.form-container button {
    height: 100%;
    padding: 0 40px;
}


/* Store Section (Mostly Good!) */


.column-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h2 {
    font-size: 2rem;
}

.column-container p {
    text-align: center;
    max-width: 600px;
    margin-block: .5rem;
}

.card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
}

.card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 10px;
    background-color: var(--white-clr);
    transition: .3s ease-in-out;
}

.card h4 {
    margin-bottom: 1rem;
    text-decoration: none;
    color: #000;
}

a {
    text-decoration: none;
}

.view-details-btn {
    background-color: var(--orange-clr);
    color: var(--white-clr);
    border: none;
    padding: 10px 20px;
    border-radius: 5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.select-options-btn:hover {
    background-color: #d1700f;
}

.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.card:hover {
    box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}


/* Footer Section (REVISED) */


footer {
    padding: 5rem 0;
    border-top: 1px solid var(--light-gray-clr);
}

.row {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    flex-basis: 200px;
    flex-grow: 1;
    
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

a.footer--links {
    text-decoration: none;
    color: var(--gray-clr);
}

a.footer--links:hover {
    color: var(--orange-clr);
}


/* !!! MEDIA QUERIES (The Responsive Part) !!! */

/* This applies to all screens 768px wide or SMALLER (tablets/phones) */

@media (max-width: 768px) {

    .navlist,
    .nav-icons {
        display: none;
    }

    .hemburger {
        display: block;
    }

    h1 {
        font-size: 45px;
    }

    .btn-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }

    .card-link {
        text-decoration: none;
        color: inherit;
    }

    .row-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .row {
        align-items: center;
    }
}


/* Product Grid Columns */

@media (min-width: 600px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        max-width: none;
        margin: 0;
    }
}

@media (min-width: 800px) {
    .card-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-detail-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.product-image-col {
    flex: 1;
    min-width: 300px;
}

.product-image-col img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-info-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-info-col h1 {
    font-size: 3rem;
    color: var(--dark-browm-clr);
    padding: 0;
    margin-bottom: 0.5rem;
}

.product-info-col .price {
    font-size: 1.5rem;
    color: var(--orange-clr);
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-info-col .description {
    font-size: 1rem;
    color: var(--gray-clr);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-form .form-group {
    margin-bottom: 1rem;
}

.product-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-form .form-group select {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid var(--light-gray-clr);
    border-radius: 0.5rem;
    background-color: #f9f9f9;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5rem;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #1EAE56;
}

/* Email Form Styles */


.email-form-box {
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
    background-color: var(--white-clr);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray-clr);
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: #f9f9f9;
    outline: none;
    font-family: inherit;
}

.input-field:focus {
    border-color: var(--orange-clr);
    background-color: #fff;
}

textarea.input-field {
    resize: vertical;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    color: var(--gray-clr);
    font-size: 0.9rem;
}

.card1 {
    width: 100%;
    height: 270px;
    max-width: 270px;
    margin: 0 auto;
    text-align: center;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 10px;
    background-color: var(--white-clr);
    transition: .3s ease-in-out;
    background-image: url("Images/trilok.jpg");
    background-size: cover;
    background-position: center;
}
.founder {
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-align: center;
    width: 270px;
}
.row1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}