* {
  box-sizing: border-box;
}

:root {
  font-family: Inter, system-ui, sans-serif;
  color-scheme: light;
  color: #510101;
  background: #f5f5f9;
}

body {
  margin: 0;
  line-height: 1.6;
  min-height: 100vh;
}

.hero {
  /* Gradient overlay on top of the artwork image */
  background-image: linear-gradient(135deg, rgba(82, 94, 158, 0.217) 0%, rgba(140,98,255,0.86) 100%), url("images/background2.jpg");
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  font-size: 1.1rem;
}

.tagline {
  font-size: 1.05rem;
  opacity: 0.95;
}

.source {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

.social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 1rem;
}

.social a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social a svg { width: 1.15rem; height: 1.15rem; display: block; }

/* accessibility helper */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.contact {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-weight: 600;
}

.contact a { color: #fff; text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.separator { opacity: 0.6; }

.hero-image {
  width: min(100%, 28rem);
  max-width: 100%;
  border-radius: 1.5rem;
  margin: 0 auto 1.5rem;
  display: block;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

button {
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #5b6ee1;
  cursor: pointer;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
/* Special mixtape-style greet button */
#greetButton {
  display: inline-block;
  margin: 1.25rem auto 0;
  padding: 1.1rem 2rem;
  padding-left: 6.5rem;
  padding-right: 6.5rem;
  width: min(420px, 92%);
  background: linear-gradient(180deg, #2b2b2b 0%, #151515 100%);
  color: #fff;
  border-radius: 12px;
  border: 6px solid #e9d9b8;
  box-shadow: 0 14px 40px rgba(0,0,0,0.38), inset 0 -6px 12px rgba(0,0,0,0.25);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.6px;
  text-transform: none;
  position: relative;
  cursor: pointer;
  text-align: center;
}

#greetButton::before,
#greetButton::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f6e9c7 0%, #cfa85e 20%, #7a5129 60%, #2b2b2b 100%);
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.06);
}

#greetButton::before { left: 14px; }
#greetButton::after { right: 14px; }

#greetButton:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.45), inset 0 -8px 16px rgba(0,0,0,0.28);
}

#greetButton:focus {
  outline: 3px solid rgba(91,110,225,0.28);
  outline-offset: 4px;
}

.greeting {
  margin-top: 1rem;
  min-height: 1.4rem;
}

main {
  padding: 2.5rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(91, 110, 225, 0.08);
  margin: 1rem 0;
  padding: 1.75rem;
}

.card h2 {
  margin-top: 0;
}

footer {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  color: #666;
}

code {
  background: rgba(55, 65, 81, 0.08);
  border-radius: 0.35rem;
  padding: 0.2rem 0.45rem;
}

.other-products {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #f5f5f9;
}

.other-products h2 {
  color: #510101;
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
