* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f7f4ef; /* cream */
  color: #193E66;      /* dark text */
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: transparent;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.25rem;
  max-width: 600px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.cta {
  text-decoration: none;
  color: #ffffff;
  background: #1a1a1a;
  padding: 15px 35px;
  border-radius: 40px;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.about {
  padding: 80px 40px;
  background: #f7f4ef;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.site-header {
  text-align: center;
  padding: 40px 20px;
}

.site-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.shop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.product img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product h3 {
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  margin-bottom: 15px;
}

.product button {
  padding: 10px 20px;
  border: none;
  background: #1a1a1a;
  color: white;
  cursor: pointer;
  border-radius: 20px;
}
