/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
body {
	overflow-x: hidden;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* START CSS */

body {
	background-color: #212521;
}

/* Calling Fonts*/

@font-face {
	font-family: 'Futura-light';
	src: URL('Futura/Futura light.TTF') format('truetype');
}
@font-face {
	font-family: 'Futura-light-2';
	src: URL('Futura/FuturaStd-Light.otf') format('truetype');
}
body {
	font-family: 'Futura-light', sans-serif;
}

nav {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.logo {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4vw;
	height: auto;
	padding-left: 3vw;
	padding-top: 2vw;
}

.cart {
	position: absolute;
	right: 60px;
	top: 0;
	bottom: 0;
	width: 8vw;
	font-size: 40px;
	height: auto;
	padding-left: 3vw;
	padding-top: 2vw;
	color: #437042;
}

#search {
	width: 1.9vw;
}

#bag {
	width: 2vw;
}

nav a {
	color: white;
	padding: 20px;
	font-weight: bold;
	display: inline;
	text-align: center;
	font-size: 1.5vw;
	text-decoration: none;
}

.current {
	color: #437042;
	text-decoration: underline;
	text-underline-offset: 7px;
}

#navigation {
	display: block;
	margin: 45px auto;
}

.sidebar .menu-item {
	color: white;
	padding: 18px;
	display: inline;
	text-align: center;
	font-size: 1.10vw;
	text-decoration: none;
}

.sidebar {
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: center;
	left: 19.5em;
	top: 0;
	bottom: 0;
	transform: rotate(-90deg);
}

.socials {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 50px;
	bottom: 20px;
}

.socials i {
	margin: 10px 0;
	height: auto;
	display: block;
	width: 25px;
}

.Header h1 {
	color: white;
	font-size: 6em;
}

.Header p {
	color: white;
	font-size: 1.25em;
	font-family: 'Futura-light-2', sans-serif;
	line-height: 1.25em;
	margin: 15px 0;
}

.Header button {
	cursor: pointer;
	background: none;
	border-radius: 7px;
	border: 2px solid #437042;
	color: #437042;
	width: 10em;
	height: 3em;
	margin-top: 10px;
}

.Header {
	position: absolute;
	left: 7em;
	top: 15em;
}

.Header-2 {
	display: block;
	position: relative;
}

.Header-2 .background {
	width: 40em;
	position: absolute;
	right: 10em;
	z-index: -1;
}

.Header-2 .button {
	width: 1.75em;
	position: absolute;
	right: 9.50em;
	top: 18.5em;
	transform: rotate(-20deg);
}

.Header-2 .button-2 {
	width: 1.75em;
	position: absolute;
	right: 9.50em;
	top: 22.5em;
	transform: rotate(-200deg);
}

#yellow-bar {
	width: 20em;
	position: absolute;
	top: 7.5em;
	right: 15.50em;
}

.buttonSet {
	color: white;
	font-family: 'Futura-lig-2', sans-serif;
	line-height: 35px;
	display: block;
	position: absolute;
	text-align: center;
	width: fit-content;
	height: fit-content;
	right: 18em;
	bottom: -34.5em;
}

#Buy {
	background: none;
	color: #DB9324;
	border: solid #DB9324 3px;
	width: 100px;
	border-radius: 7px;
	padding: 5px;
}

.arrow {
	margin: 0 20px;
	width: 20px;
}

/* Contact Form */

.contact-form {
	background-color: #161d16;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
}

.contact-form h1 {
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 20px;
	font-size: 2em;	
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFFFFF;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 7px;
    font-size: 16px;
    box-sizing: border-box;
	color: white;
	background-color: #212521;
	border: none;
	outline: none;
	border-bottom: #e3e3e3 2px solid;
	transition: 150ms;
}

.contact-form textarea {
    resize: vertical;
}



.contact-form button {
    width: 100%;
    padding: 12px;
    background: none;
	color: black;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#formResponse {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: #28a745;
}

/* Mission */

.mission {
	color: white;
	position: absolute;
	top: 35em;
	font-size: 1.5em;
	text-align: left;
	background-color: #222D22;
	width: 100%;
	height: 30em;
}

.headerTxt {
	color: white;
	font-size: 2em;
	margin-top: 20px;
	margin-bottom: 40px;
	position: absolute;
	left: 2.5em;
	top: 4.5em;
}

.missionTxt {
	color: white;
	font-size: 0.8em;
	margin-top: 20px;
	line-height: 1.5em;
	width: 25em;
	position: absolute;
	left: 6em;
	top: 15em;
}
.Header-3 {


	color: white;
	margin-top: 2em;
}
.Header-3 h1 {
	font-size: 3em;
	margin-bottom: 15px;
	text-align: center;
	
}

  
.text {
background-color: whit;
color: white;
font-size: 16px;
padding: 16px 32px;
}
.Header-3 p {
	font-size: 1em;
	text-align: center;
}
.design {
	width: 25em;
	position: absolute;
	top: 0em;
	right: 6em;
}

#Button2 {
	background: none;
	color: #437042;
	border: solid #437042 3px;
	width: 15em;
	border-radius: 7px;
	padding: 5px;
	position: absolute;
	top: 35em;
	left: 8.5em;
}

#Button2:hover {
	background: #437042;
	color: white;
}

.quote {
	width: calc(85% - 30px);
	height: 250px;
	margin: 200px auto;
	border-radius: 12px;
	background-color: #222D22;
	padding: 30px;
}

.quote h1 {
	margin: 20px 0;
	font-size: 30px;
}

.quote p {
	line-height: 40px;
}

.reviewer {
	font-size: 25px;
	font-family: arial;
	margin: 10px 20px;
}

.newsletter {
	color: white;
	font-size: 1em;
	text-align: left;
	width: 100%;
}

.newsletter .headerTxt {
	top: 0;
	line-height: 60px;
}

.newsletter input, .newsletter textarea {
	width: 500px;
    padding: 10px;
	height: 60px;
    margin-bottom: 15px;
    border-radius: 7px;
    font-size: 16px;
    box-sizing: border-box;
	color: white;
	background-color: #161d16;
	border: none;
	outline: none;
	border-bottom: #e3e3e3 2px solid;
	transition: 150ms;
	position: absolute;
	top: 150px;
	left: 80px;
}

.newsletter textarea:focus, .newsletter input:focus {
	background-color: #293629;
}

.newsletter button {
	color: white;
	background-color: #161d16;
	border: none;
	outline: none;
	border-bottom: #e3e3e3 2px solid;
	position: absolute;
	height: 60px;
	top: 150px;
	border-radius: 7px;
	left: 600px;
	width: 100px;
	padding: 10px;
	transition: 150ms;
}

.newsletter button:hover {
	background-color: #293629;
}

.copyright .headerTxt {
	top: 230px;
}

.products {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.products .container {
    position: relative;
    width: 280px;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
    background-color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products .container:hover {
    transform: scale(1.05); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.products .container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.products .container .middle {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    padding: 20px;
    box-sizing: border-box; 
    transition: top 0.5s ease; 
    overflow: hidden; 
}

.products .container:hover .middle {
    top: 0; 
}

.products .middle h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    animation: fadeIn 0.5s ease forwards; 
}

.products .middle p {
    font-size: 1rem;
    margin: 5px 0;
    animation: fadeIn 0.7s ease forwards; 
}

.products .middle button {
    background-color: white; 
    color: black; 
    border: none;
    border-radius: 5px; 
    padding: 10px 20px; 
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 15px; 
    animation: fadeIn 0.9s ease forwards; 
}

.products .middle button:hover {
    background-color: black;
    color: white; 
}

footer {
	display: grid;
	position: absolute;
	height: 320px;
	width: 100%;
	background-color: #222D22;
	grid-template-rows: 1fr 1fr;
}

.homeFooter {
	top: 130em;
}

.productFooter {
	top: 135em;
}

.contactFooter {
	top: 45em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.product-card {
	background-color: #212521;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-bottom: 3px solid #555;
}

.product-info {
    padding: 20px;
    color: white;
}

.product-info h2 {
    font-size: 1.25rem;
    color: #f9f9f9; 
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: #dcdcdc; /* Softer white for descriptions */
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-info .price {
    font-weight: bold;
    color: #DB9324; /* Gold accent for price */
}
.cart {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.cart img {
    width: 70px;
    height: 30px;
}
.modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #333; 
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.modal-button {
    background-color: #DB9324;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-button:hover {
    background-color: #b57a1c; 
}
.cart-notification {
    position: absolute;
    top: 2em;
    right: 6em;
    background-color: #DB9324;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; 
}

.cart-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #333;
    color: white;
    width: 250px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; 
    z-index: 1000;
}

.cart-dropdown h3 {
    margin: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.cart-items {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.cart-items li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #dcdcdc; /* Softer white for text */
}

.cart-items li:last-child {
    margin-bottom: 0;
}

.product-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.cart {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.cart img {
    width: 40px;
    height: 30px;
}

.cart-notification {
    position: absolute;
    top: 2em;
    right: 0;
	left: 5em;
    background-color: #DB9324;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; 
}

.cart-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #333; 
    color: white;
    width: 250px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; 
    z-index: 1000;
}

.cart-dropdown h3 {
    margin: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.cart-items {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.cart-items li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #dcdcdc;
}

.cart-items li:last-child {
    margin-bottom: 0;
}
.cart {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.cart img {
    width: 40px;
    height: 30px;
}

.cart-total {
    border-top: 1px solid #555;
    padding: 10px;
    text-align: center;
    color: white;
}

.cart-total p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #DB9324; /* Gold color for the total */
}

.purchase-button {
    background-color: #437042; /* Green background */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
/* Footer Styling */
#homeFooter {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
	width: 100%;
	height: 200px;
}

#homeFooter .newsletter h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

#homeFooter .newsletter p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #d1d1d1;
}

#homeFooter .newsletter-form {
    position: absolute;
    max-width: 200px;
	left: -4em;
	top: -1em;
}

#homeFooter .newsletter-form input {
    flex: 1;
    border: 1px solid #4caf50;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    background-color: #2a2a2a;
    color: #f5f5f5;
}

#homeFooter .newsletter-form input::placeholder {
    color: #a5a5a5;
}

#homeFooter .newsletter-form button {
    padding: 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#homeFooter .newsletter-form button:hover {
    background-color: #45a049;
}

#homeFooter .social-icons {
    margin: 20px 0;
}

#homeFooter .social-icons a {
    margin: 0 10px;
    color: #f5f5f5;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

#homeFooter .social-icons a:hover {
    color: #4caf50;
}

#homeFooter .copyright {
    font-size: 14px;
    color: #a5a5a5;
    margin-top: 100px;
}
.purchase-button:hover {
    background-color: #355a31; /* Darker green on hover */
}
/* Testimonials Section */
.Testimonials {
	color: white;
	position: absolute;
	display: block;
	top: 70em;
	font-size: 1.5em;
	text-align: left;
	width: 100%;
	height: 30em;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.testimonials {	
    padding: 60px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
	margin-top: 100em;
}

.testimonials .headerTxt {
    font-size: 32px;
	position: absolute;
	top: 52em;
	left: 400px;
    font-weight: bold;
	text-align: center;
    color: white;
}

.testimonial-container {
	background-color: rgb(0, 0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial-card {
    border-radius: 10px;
	background-color: #222D22;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-content h2 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 16px;
    color: rgb(189, 189, 189);
    line-height: 1.5;
}

.testimonial-card .reviewer {
    font-size: 14px;
    color: white;
    margin-top: 15px;
    font-style: italic;
    text-align: right;
}
/* Contact Page Styling */
.contact-info {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.contact-info h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-form, .business-info {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: left;
}

.contact-form h2, .business-info h2 {
    font-size: 24px;
    color: #4caf50;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #45a049;
}

.business-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    font-size: 20px;
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #45a049;
}
.cart-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #333; /* Dark background for the dropdown */
    color: white;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
    z-index: 1000;
}

.cart-dropdown h3 {
    margin: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.cart-items {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.cart-items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #dcdcdc; /* Softer white for text */
}


.cart-item-info {
    flex-grow: 1;
    margin-right: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
}

.cart-item-controls button {
    background-color: #DB9324; /* Gold color */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.8rem;
    margin: 0 5px;
}

.cart-item-controls button:hover {
    background-color: #b57a1c; /* Darker gold on hover */
}
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #437042;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    display: none; 
    z-index: 1100;
    animation: fadeOut 3s forwards;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}
@media screen and (max-width: 768px) {
    .product-card {
        width: 90%; 
    }
}

@media screen and (max-width: 768px) {
    .product-card {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
    }

    .products .container {
        width: 90%; 
    }
}
@media screen and (max-width: 1024px) {


}