/* styles.css */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

header {
  background-color: #ffc107;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
  animation: fadeIn 1s ease-in-out;
}

.store-name {
  margin: 0;
  font-size: 36px;
  letter-spacing: 2px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

section {
  margin: 0 auto;
  max-width: 800px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: scaleIn 0.5s ease-in-out;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.product {
  display: inline-block;
  width: 300px;
  margin: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  background-color: #f9f9f9;
  transition: transform 0.3s;
  animation: slideInLeft 0.5s ease-in-out;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product img {
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  animation: fadeIn 1s ease-in-out;
}

.logo img {
  width: 50px;
  height: 50px;
}

section#welcome {
  text-align: center;
  padding: 50px 0;
  background-color: #f2f2f2;
  animation: fadeIn 1s ease-in-out;
}

section#welcome h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  animation: slideInLeft 0.5s ease-in-out;
}

section#welcome p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  animation: slideInLeft 0.5s ease-in-out;
}

section#contact {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

section#contact h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  animation: slideInLeft 0.5s ease-in-out;
}

section#contact p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  animation: slideInLeft 0.5s ease-in-out;
}
