
:root {
  --bg: rgb(248, 244, 241);
  --bg-alt: #e6dccf;
  --text: #1f1f1f;
  --muted: #6a645c;
  --accent: #a2673f;
  --accent-soft: #d8b89c;
  --border: #e2d8cc;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
    scroll-behavior: smooth;
		scroll-padding-top: 100px;
		
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  padding: 8px;
  z-index: 10000;
	text-decoration:none;
}

.skip-link:focus {
  top: 10px;
}


body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: -webkit-sticky; /* For Safari */
  position: sticky;
	border-bottom:1px solid #e2d8cc;
	background-color:var(--bg);
	top:0;
  z-index: 9999; /* Set a very high value */
	
}

.logo img {
  height: 100px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
	padding: 8px 0;
}

nav a:hover {
  color: var(--text);
}

p {
	margin:12px 0;
}

/* HERO */
.hero,
.about {
  display: grid;
  gap: 24px;
  padding: 56px 0;
	padding-bottom:0px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.about h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.hero p,
.about p {
  color: var(--muted);
  /*max-width: 520px;*/
  max-width: 560px;
}

.hero img,
.about img {
  border-radius: 14px;
}

/* SECTIONS */
.section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.section.alt {
  border-radius: 12px;
  padding: 40px 24px;
  margin: 40px 0;
  background: var(--bg-alt);
}

.section h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.section p {
  color: var(--muted);
  max-width: 600px;
}

/* PRODUCT FEATURE */
.product {
  display: grid;
  gap: 20px;
}

.product-logo {
  height: 32px;
}

.product-image {
  border-radius: 12px;
  border: 1px solid var(--border);
}

.product a {
	font-weight: bold;
	text-decoration:none;
	color:#000000;
}
.product a:hover {
	text-decoration:underline;
}


ul.features {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: 15px;
	color: rgb(106, 100, 92);
	list-style-position: inside;
}
ul.features li {
	line-height: 1em;
}


.product a.button {
	margin-top:20px;
  appearance: none;
  background-color: rgb(244, 239, 232);
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

.product a.button:hover {
  background-color: #F3F4F6;
  text-decoration: none;
  transition-duration: 0.1s;
}





/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
	text-align: center;
	overflow:hidden; /* Important: clips the badge ends */
	position:relative;
}

.product-card .badge {
  background: var(--bg-alt);
  color: var(--text);
  text-align: center;
  padding: 5px 0;
  width: 155px;
  position: absolute;
  top: 25px;
  left: -37px; /* Pulls it out so only the center is visible */
  transform: rotate(-45deg);
  font-weight: bold;
}
.product-card .badge.now {
	background:#8B6F47;
	color:#fff;
}


.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.product-card img {
  max-height: 50px;
  margin: 20px auto;
}

.product-card p {
  font-size: 13px;
  color: var(--muted);
}

footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

/* DESKTOP */
@media (min-width: 768px) {
  .hero,
	.about {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .product {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*FOOTER*/
footer {
	text-align:center;
}
.copyright {
  border-top: 4px solid gray;
	margin:0px auto;
	max-width: 400px;
}

.social-icons,
.illustration {
	display:inline;
	width:auto;
  filter: invert(19%) sepia(48%) saturate(0%) hue-rotate(183deg) brightness(175%) contrast(100%);
	
}

.social-icons img {
	width:50px;
	display:inline;
}
.social-icons img:hover {
  filter: saturate(100%) brightness(0%);
}
.illustration {
	width:50px;
}




