/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
	background-color:#F6F4F3;
}

a {
    text-decoration: none;
}


/* Header */
.head {
    display: flex; /* Use flexbox for the header */
    justify-content: space-between; /* Space out logo and navigation */
    align-items: center; /* Align items vertically */
    padding: 15px 5%;
    background-color: #F6F4F3;
    width:match-parent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky {
    position: fixed;
    width: 90%;
    background-color: #F6F4F3;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.div1-1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.div1-2 {
    display: flex;
    gap: 20px;
}

.logo {
    width: 30%;
    height: auto;
}

/* ====== TYPOGRAPHY ====== */
.p1 {
    font-size: 3rem;
    font-weight: bold;
    white-space: nowrap;
    font-family: Montserrat;
    color: #31241E;
}

.p1-1 {
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    font-family: Montserrat;
    color: #31241E;
}

.p1-1:hover {
    color: #A08872;
}


.div1-1 {
    display: flex;
    align-items: center;
}

.div1-1 img {
    height: 50px;
    margin-right: 10px;
}

.p1 {
	font-family:Montserrat;
	color:#31241e;
    font-size: 20px;
    font-weight: bold;
}

.div1-2 {
    display: flex;
    gap: 15px;
}

.div1-2 p {
	font-family:Montserrat;
    margin: 0;
    cursor: pointer;
}

.div1-2 p:hover {
    /* text-decoration: underline; */
}

/* Find Us Page */
.finduspage {
    text-align: center;
    padding: 30px 5%;
}

.findusdiv1 {
	width:match-parent;
    display: flex;
	/* justify-content:space-between; */
    flex-direction: row;
	/* justify-content:center; */
    align-items: center;
	text-align:center;
    gap: 15px;
}

.p27 {
	color:#492B1A;
    font-size: 18px;
    line-height: 1.6;
}

.p28 {
	font-family:Montserrat;
    font-size: 28px;
    font-weight: bold;
    color: #492B1A;
}

/* Image Grid */
.findusdiv2 {
    display: flex;
	flex-direction:row;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.findusdiv2 img {
    width: 30%;
    height: auto;
    border-radius: 8px;
}

.fuA .fuB{
	width:50%;
	display: flex;
    flex-direction: row;
	justify-content:center;
    align-items: center;
	gap:5px;
}

.fuA{
	display:inline;
}

.fuA1{
	width:50%;
	display: flex;
    flex-direction: row;
	/* justify-content:center; */
    align-items: center;
	margin-left:1%;
	padding-left:1%;
}

.p29{
	color:#A08872
}

/* Responsive Design */
@media (max-width: 768px) {
    .head {
        flex-direction: column;
        text-align: center;
    }

    .div1-2 {
        flex-direction: column;
        gap: 10px;
    }

    .findusdiv2 {
        flex-direction: column;
        align-items: center;
    }

    .findusdiv2 img {
        width: 90%;
    }
	
	.logoimg{
	width:100px;
	height:auto;
}

.fuB .img1 {
    width: 100%;  /* Ensures it takes up the full width of the div without exceeding */
    max-width: 600px; /* Adjust this value to set a reasonable max size */
    height: auto; /* Keeps aspect ratio */
	float: right;
    object-fit: contain; /* Ensures the image fits inside without being cropped */
}
	
}

@media (max-width: 480px) {
    .p1 {
        font-size: 18px;
    }

    .p27 {
        font-size: 16px;
    }

    .p28 {
        font-size: 24px;
    }
	
	.logoimg{
	  width:50px;
	  height:auto;
	}
	
	.findusdiv1 {
	  width:match-parent;
      display: flex;
      flex-direction: column;
	  /* justify-content:center; */
      align-items: center;
	  text-align:center;
      gap: 15px;
    }
	.logoimg{
	width:100px;
	height:auto;
}

.fuB .img1 {
    width: 100%;  /* Ensures it takes up the full width of the div without exceeding */
    max-width: 300px; /* Adjust this value to set a reasonable max size */
    height: auto; /* Keeps aspect ratio */
	float: right;
    object-fit: contain; /* Ensures the image fits inside without being cropped */
}

}


.logoimg{
	width:100px;
	height:auto;
}

.fuB .img1 {
    width: 100%;  /* Ensures it takes up the full width of the div without exceeding */
    max-width: 600px; /* Adjust this value to set a reasonable max size */
    height: auto; /* Keeps aspect ratio */
	float: right;
    object-fit: contain; /* Ensures the image fits inside without being cropped */
}

/* .fuB {
    margin-left: auto; 
    display: flex;
    justify-content: flex-end; 
    padding-right:5%;
	align-items: center;
} */


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}



/* ====== RESPONSIVE DESIGN ====== */

/* Large Desktops (1440px and below) */
@media (max-width: 1440px) {
    .p1-1 {
        font-size: 1rem;
    }
	.p1 {
        font-size: 1.5rem;
    }
    .p2 {
        font-size: 2rem;
    }
	.head{
		padding: 3px 0.5%;
	}
	
	
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}


}

/* Laptops (1280px) */
@media (max-width: 1280px) {
    .p1-1 {
        font-size: 1rem;
    }
	.p1 {
        font-size: 1.5rem;
    }
	
	
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}


}


/* Tablets (768px) */
@media (max-width: 768px) {
    .head {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center;
    }
    .div1-2 {
        flex-direction: column;
        gap: 10px;
    }
    .logo {
        width: 60px;
    }
    .p1, .p1-1 {
        font-size: 0.8rem;
    }
    .p2 {
        font-size: 1.5rem;
    }
	
	
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 450px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}


}

/* Mobile (480px) */
@media (max-width: 480px) {
    .logo {
        width: 50px;
    }
    .p1, .p1-1 {
        font-size: 0.5rem;
    }
    .p2 {
        font-size: 1rem;
    }
	
	
}

.product-item p:hover{
	color:#8B5E3C;
}

.product-item p:visited{
	color:gray;
}