* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  color: #2b2b2b;
  background-color: #fff;
  line-height: 1.6;
}

header {
  background-color: #f6dede;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}

img {
	width: 100%;
	object-fit: contain;
}

header nav a {
  text-decoration: none;
  color: #2b2b2b;
  margin: 0 1.5rem;
  font-size: 1rem;
}

header h1 {
  font-weight: normal;
  font-size: 1.1rem;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
}

.hero img {
  width: 300px;
  max-width: 90%;
  height: auto;
  animation: fadeIn 2s ease-in-out;
}

.hero h2 {
  margin-top: 2rem;
  font-weight: normal;
  font-size: 1.2rem;
}

.hero button {
  margin-top: 1rem;
  background-color: #f6dede;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero button:hover {
  background-color: #f8cfcf;
  transform: scale(1.05);
}

.intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}

.intro div {
  flex: 1;
  min-width: 280px;
  margin: 1rem;
  background-color: #f6dede;
  padding: 1.5rem;
  border-radius: 8px;
  animation: fadeInUp 1.5s ease;
}

.section {
  background-color: #f6dede;
  padding: 3rem 2rem;
  position: relative;
}

.section img.bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  opacity: 0.3;
}

.section img.bg-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  opacity: 0.3;
}

.products {
  text-align: center;
  padding: 3rem 1rem;
}

.products h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.product-item {
  width: 200px;
  height: 200px;
  background-color: #f6dede;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  animation: fadeInUp 1.5s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

.product-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.delivery { 
	background-color: #f6dede; 
	padding: 3rem 2rem; 
	text-align: left; 
	display: flex; 
	flex-wrap: wrap; 
	align-items: center; 
	justify-content: space-around; 
}

.footer { 
	text-align: center; 
	font-size: 0.9rem; 
	padding: 2rem 1rem; 
	border-top: 1px solid #ddd; 
} 

.footer a { 
	color: #2b2b2b; 
	text-decoration: none; 
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-height: 50%;
  border-radius: 8px;
  animation: fadeIn 0.5s ease;
}

.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }

  header nav {
    margin-top: 0.5rem;
  }

  .intro {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .section {
    text-align: center;
  }

  .section img.bg-left,
  .section img.bg-right {
    display: none;
  }

  .delivery {
    flex-direction: column;
    text-align: center;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}


