/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: #E6E2DD; */
}

html, body {
    height: 100%; /* Ensure full height for the body */
    width: 100%; /* Ensure full width for the body */
    background-color: #E6E2DD;
}

/* Body Styles */
/* body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
} */

/* Header Styles */
header {
    background-color: #E6E2DD;
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0; /* Stick the header to the top of the viewport */
    z-index: 1000; /* Ensure the header stays above other elements */
}

.logoimage {
    height: auto; /* Let the browser calculate the height automatically */
    max-width: 50%; /* Ensure the logo fits within its container */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E6E2DD; /* Set white background color */
    height: 100vh; /* Take full viewport height */
    margin-top: 50px;
    
    
    

    
}

.image-container img {
    max-width: 100%; /* Ensure image doesn't exceed container width */
    max-height: 100%; /* Ensure image doesn't exceed container height */
    border-radius: 25%;
    
    
}

/* Header Font styling */
.bodoni-moda, .selection {
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    
}

.kelly-slab-regular, header p  {
    font-family: "Kelly Slab", sans-serif;
    font-weight: 400;
    font-style: italic;
    
  }

  .kelly-slab-regular, h1 {
    font-family: "Kelly Slab", sans-serif;
    font-weight: 400;
    text-align: center;
    
    
  }
  
header p {
    font-size: 1.5rem;
    text-align: center;
    color: #474244;
    background-color: #E6E2DD;
    margin-bottom: 50px;
    margin: 0;
    margin-top: 25px;
    
}

.fa-cart-shopping {
    color: #474244;
    
}

.fa-cart-shopping:hover {
    color: #cf700f;
    
}

/* header h1 {
    font-size: 3.5rem;
} */

 header nav ul {
    list-style: none;
    font-size: 2rem;
    text-align: center;
} 

header nav ul li {
    display: inline;
    margin-right: 1rem;
}

header nav ul li a {
    color: #cf700f;
    text-decoration: none;
}

header nav ul li a:hover {
    text-decoration: solid;
    color: #474244;
}

/* Shop Section */
#shop {
    padding: 2rem;
    text-align: center;
}

.product {
    margin-bottom: 2rem;
}

.product img {
    max-width: 200px;
}

.product h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.product p {
    font-size: 1rem;
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #cf700f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #a44a00;
}

/* Cart Section */
#cart {
    padding: 2rem;
    text-align: center;
}

.cart-items {
    margin-bottom: 2rem;
}

.checkout {
    margin-top: 1rem;
}

.checkout button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #cf700f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.checkout button:hover {
    background-color: #a44a00;
}




/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.fa-brands, .fa-facebook {
    padding: 30px;
    margin-top: -10px;
    margin-bottom: -50px;
    color: #E6E2DD;
}

footer p {
    font-size: 0.8rem;
    color: white;
    background-color: #333333;
    text-align: center;
}


.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
  }
  
  .address, .hours {
    flex: 1;
  }
  
  .address h3, .hours h3 {
    color: #fdb347;
    font-size: 1.2rem;
  }
  
  .address p, .hours p {
    margin-bottom: 10px;
    
  }