body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #2c2c2c;
  color: #DBCCAB;
}

h1, h2 {
  text-align: center;
  color: #AA8C49;
  font-weight: 600;
  font-family: 'Abril Fatface';
  letter-spacing: 7px;
}

header {
  background-color: #a0aecd;
  padding: 20px;
  color: #AA8C49;
  font-size: 2rem;
  letter-spacing: 1px;
  border-bottom: 4px solid #AA8C49;
}

header h1 {
  text-shadow: 2px 2px 2px #2c2c2c;
}

.cart-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #AA8C49;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.2);
}

nav {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #a0aecd;
  margin-bottom: 30px;
}

nav button {
  padding: 12px 20px;
  margin: 0 10px;
  background-color: #2c2c2c;
  color: #AA8C49;
  border: 2px solid #AA8C49;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  border-radius: 30px;
}

nav button:hover {
  background-color: #DBCCAB;
  color: #2c2c2c;
  border-color: #AA8C49;
}

button {
  padding: 10px 15px;
  background-color: #AA8C49; 
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2e200c; 
}

.search-bar {
  padding: 12px 20px;
  margin: 0 10px;
  background-color: #2c2c2c;
  color: #AA8C49;
  border: 2px solid #AA8C49;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  border-radius: 30px;
  width: 60px;
}

.search-bar:hover {
  background-color: #DBCCAB;
  color: #2c2c2c;
  border-color: #AA8C49;
  width: 100px;
}

.popup {
  display: none;
  position: fixed; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(107, 88, 88, 0.5); 
  justify-content: center; 
  align-items: center;
  z-index: 1000; 
}

.popup-content {
  background-color: #2c2c2c;
  margin: auto; 
  padding: 10px; 
  border: 1px solid #888;
  width: 400px; 
  text-align: center;
  margin: 0 auto;  
  border-radius: 8px; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
  max-width: 90%; 
  transition: all 0.3s ease; 
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

input[type="email"] {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type="text"] {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-content input {
  background-color: #363434;
}

.popup-content>h2{
  text-align: center;
  letter-spacing: 1px;
}

section.welcome {
  background-color: #2c2c2c;
  padding: 50px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome h2 {
  font-family: 'Abril Fatface';
  letter-spacing: 3px;
}

.image-story {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-color: #a0aecd; 
  gap: 40px; 
}

.image-slider1 {
  flex: 2;
  position: relative;
  height: 500px;
  max-width: 100%;
  overflow: hidden;
}

.image-slider1 > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity  2s ease-in-out;
}

.blend-of-the-month {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px; 
}

.blend-image-wrapper {
  position: relative;
  width: 100%;
  height: 397px; 
}

.blend-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.blend-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(61, 45, 34, 0.7);
  color: white;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blend-info h3 {
  font-family: 'Abril Fatface';
  letter-spacing: 3px;
}

.blend-image-wrapper:hover .blend-image {
  filter: blur(4px);
}

.blend-image-wrapper:hover .blend-info {
  opacity: 1;
}

.blend-footer {
  text-align: center;
  background-color: #2c2c2c;
  color: #AA8C49; 
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
  border-bottom: 4px solid #AA8C49; 
}

section.history {
  background-color: #2c2c2c; 
  padding: 50px; 
  text-align: center; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.history h2 {
  font-family: 'Abril Fatface'; 
  letter-spacing: 3px; 
  color: #AA8C49; 
}

.history p {
  color: #DBCCAB; 
  line-height: 1.6; 
}

.slideshow-container {
  display: flex;
  padding: 40px; 
  background-color: #a0aecd; 
  gap: 35px;
}

.top-seller-slideshow {
  flex: 1; 
  padding: 20px; 
  background-color: #2c2c2c; 
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.weekly-events-slideshow {
  flex: 1; 
  padding: 20px; 
  background-color: #2c2c2c; 
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.image-slider2 {
  position: relative; 
  height: 500px; 
}

.image-slider2 > img {
  position: absolute; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: opacity  2s ease; 
  opacity: 0; 
} 

.image-slider2 > img:first-child {
  opacity: 1; 
  visibility: visible; 
}

.image-slider3 {
  position: relative; 
  height: 500px; 
}

.image-slider3 > img {
  position: absolute; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: opacity  2s ease; 
  opacity: 0; 
} 

.image-slider3 > img:first-child {
  opacity: 1; 
  visibility: visible; 
}

.slideshow-footer {
  text-align: center;
  margin-top: 20px;
  color: #DBCCAB; 
  font-size: 1.2rem;
}

.slideshow-container h2 {
  letter-spacing: 2px;
  font-weight: 100;
}

.slideshow-footer p {
  font-family: 'Abril Fatface';
  font: normal;
}

footer {
  background-color: #2c2c2c;
  padding: 40px;
  color: #000000;
  text-align: center;
  border-top: 5px solid #AA8C49;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contact, .footer-social {
  flex: 1;
  margin: 20px;
}

.footer-contact h3, .footer-social h3 {
  color: #86847d;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-shadow: 1px 1px 1px #2c2c2c;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 1rem;
  color: #86847d;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}


.social-icon:hover {
  transform: scale(1.1);
}

.rights p {
  color: #86847d;
}


.map-container {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; 
}

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

  .image-slider {
    height: auto;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-contact, .footer-social {
    margin-bottom: 20px;
  }

  .popup-content {
    width: 90%; 
  }

  .close-button {
    font-size: 24px; 
  }

  nav {
    flex-direction: column; 
    align-items: center;    
  }

  nav button {
    width: 100%;        
    margin: 10px 0;      
  }

  .search-bar {
    width: 100%;       
    margin: 10px 0;      
  }
}


nav button, .search-bar {
  padding: 12px 20px;   
  background-color: #2c2c2c; 
  color: #AA8C49; 
  border: 2px solid #AA8C49; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  font-size: 1rem; 
  border-radius: 30px; 

}
