/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffe6f0; /* soft general background */
  color: #333;
}

/* Hero Section */
.hero {
    width: 100%;
  height: 180px; /* or whatever height you want */
  background-image: url('banner.jpg'); /* replace with your image file */
  background-size: cover;           /* image covers entire hero area */
  background-position: center;       /* centers the image */
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;          /* vertical centering */
  align-items: center;              /* horizontal centering */
  text-align: center;
  position: relative;
}

.hero header h1 {
  color: white;
  font-size: 48px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  margin: 0;
}

.hero .button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.hero .button:hover {
  background: #ff1493;
}

/* About Section */
#about {
  background: #ffe0eb; /* soft pastel pink */
  padding: 25px;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 12px;
}

#about h2 {
  color: #ff1493;
  text-align: center;
  margin-bottom: 15px;
}

/* Products Section */
#products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffc0d6; /* light bubblegum pink */
  padding: 25px;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 12px;
}

#products > h2 {
  grid-column: 1 / -1; /* heading spans all columns */
  text-align: center;
  color: #ff1493;
  margin-bottom: 20px;
}

.product {
  border: 1px solid #ffb6c1;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  background: #ffe6f2; /* very light pink for product cards */
}

.product img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

button {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #ff1493;
}

/* Contact Section */
#contact {
  background: #ffb6c1; /* deeper pink */
  padding: 25px;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 12px;
  text-align: center;
}

#contact h2 {
  color: #fff;
  margin-bottom: 15px;
}

.contact-images {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.contact-images img {
  width: 40px;
  height: auto;
}

/* Responsive Design */
@media screen and (max-width: 800px) {
  #products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  #products {
    grid-template-columns: 1fr;
  }
}
