/* Reset & Base */
* {
  box-sizing: border-box;
  font-family: "Montserrat", "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  color: #2c2c2c;
  line-height: 1.6;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  width: 100%;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
}
.header h3 {
  color: #ff4e50;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
.header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #444;
}

/* Showcase */
.showcase {
  text-align: center;
  margin: 60px 0;
}
.showcase h2 {
  color: #ff4e50;
  font-size: 28px;
  margin-bottom: 15px;
}
.gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.gallery figure {
  text-align: center;
}
.gallery img {
  max-width: 200px;   /* keeps bags small */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.08);
}
.gallery figcaption {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
}

/* About */
.about {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}
.about h2 {
  color: #ff4e50;
  margin-bottom: 15px;
}

/* Contact */
.contact {
  text-align: center;
  margin: 60px 0;
}
.contact button {
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  border-radius: 30px;
  border: none;
  width: 200px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Instagram Section */
.instagram {
  text-align: center;
  margin: 60px 0;
  padding: 30px;
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.instagram img {
  max-width: 220px;   /* QR code size */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}
.instagram img:hover {
  transform: scale(1.08);
}
.insta-handle {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #fff, #f9d423);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #2c2c2c;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }
  .gallery img {
    max-width: 90%; /* fills most of mobile screen */
  }
}
