/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f5;
  color: #111;
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: #000;
  color: #fff;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.logo span {
  font-weight: 400;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 16px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero layout */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr; /* ⭐ More balanced desktop layout */
  gap: 32px; /* ⭐ More breathing room */
  padding: 40px 8vw;
  background-color: #ffffff;
  align-items: center;
}

.hero-left img,
.hero-right img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* ⭐ Right column always visible + centered */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ⭐ Product card styling */
.hero-right > div {
  width: 100%;
  max-width: 420px; /* ⭐ Larger on desktop */
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12); /* ⭐ Adds depth */
}

/* Center column text */
.hero-center h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-center h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #555;
}

.hero-center p {
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-center .learn-more a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
}

.hero-center .learn-more a:hover {
  text-decoration: underline;
}

/* Contact section */
.contact-section {
  text-align: center;
  padding: 32px 16px 40px;
  background-color: #f0f0f0;
}

.contact-section h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.contact-section a {
  color: #0066cc;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 16px;
  background-color: #000;
  color: #fff;
  font-size: 0.9rem;
}

/* ⭐ Mobile layout stays perfect */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-center {
    order: -1;
  }

  .hero-left img,
  .hero-right img {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-right > div {
    max-width: 320px; /* ⭐ Perfect mobile size */
    padding: 20px;
  }
}
