body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Google Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  color: #333;
}

section {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
}

/* Parallax Background Logic */
.parallax {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Section 1: Hero */
#hero {
  background-image: url('/imgs/header-bg.jpg');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: max(400px, 45vh);
  max-height: min(900px, 45vh);
  padding: 80px 0;
}

#logo {
  min-width: min(300px, 85vw);
  max-width: min(500px, 90vw);
  aspect-ratio: 500/401;
}

/* Section 2: Products */
#products {
  background-color: #f4f4f4;
}

.product-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.product-card {
  max-width: 250px;
}

.product-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.product-card p {
  line-height: 1.4rem;
  text-align: center;
}

/* Section 3: Message */
#message {
  background-image: url('/imgs/second-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40vh;
  justify-content: end;
}

#message-container {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  margin: 0px 30px;
  border-radius: 15px;
  line-height: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Section 4: Order */
#order {
  background-color: #fff;
  min-height: 20vh;
}

#order p {
  margin-top: 0;
}

.insta-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s;
}

.insta-btn:hover {
  transform: scale(1.05);
}

/* Section 5: Location */
#location {
  background-color: #222;
  color: #eee;
  min-height: 30vh;
}
