/* ===== Honey Apps Lab — styles ===== */

/* ---- Theme (all site colours live here) ---- */
:root {
  --color-brown: #a57b17;      /* primary brand / headings / links */
  --color-orange: #f7931e;    /* secondary accent */
  --color-yellow: #f7c639;    /* borders / dividers */
  --color-tint: #fdf3d8;      /* soft section background */

  --color-bg: #ffffff;
  --color-ink: #111111;
  --color-text: #333333;
  --color-text-muted: #6b5a1f;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-family: system-ui, sans-serif;
  background: var(--color-bg);
  color: var(--color-ink);
  background-image: url("bg.svg");
  background-repeat: repeat;
  background-size: 30%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-size: 1.4rem;
}

ul, ol {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Hero (home / top section) ---- */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

#svg-container {
  width: 90%;
  max-width: 640px;
  padding: 0 0 1.5rem 0;
}

.tagline {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 2rem;
  font-weight: 700;
  max-width: 40ch;
  background: #fff;
  width: 100%;
  padding: 1rem ;
}

/* ---- About (full-width section) ---- */
.about {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--color-tint);
  border-top: 3px solid var(--color-yellow);
  border-bottom: 3px solid var(--color-yellow);
}

.about .wrap {
  width: 100%;
  max-width: 720px;
}

.about h2 {
  font-size: 2rem;
  color: var(--color-brown);
  margin-bottom: 1.25rem;
}

.about p {
  
  color: var(--color-text);
  max-width: 62ch;
}

.about p + p {
  margin-top: 1rem;
}

/* ---- Sub-pages (Kids Clock Wise / Privacy Policy) ---- */
.page-wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1.5rem 3rem;
}

.back-link {
  align-self: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-brown);
}

.back-link::before {
  content: "\2190  ";
}

.content-card {
  width: 100%;
  max-width: 720px;
  background: var(--color-bg);
  border: 4px solid var(--color-yellow);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  /* flat, unblurred offset — the retro "sticker" look */
  box-shadow: 0 6px 0 var(--color-orange);
}

.badge-retro {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-orange);
  color: var(--color-bg);
  padding: 0.35em 0.9em;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.content-card h1 {
  font-size: 2rem;
  color: var(--color-brown);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.content-card h2 {
  font-size: 1.15rem;
  color: var(--color-brown);
  letter-spacing: 0.02em;
  margin: 1.75rem 0 0.5rem;
}

.content-card p {
  color: var(--color-text);
  max-width: 62ch;
}

.content-card p + p {
  margin-top: 0.75rem;
}

.content-card .meta {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.text-link {
  color: var(--color-brown);
  text-decoration: underline;
  font-weight: 700;
}

.content-card ul {
  max-width: 62ch;
  margin-top: 0.5rem;
}

.content-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-text);
  margin-top: 0.4rem;
}

.content-card li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 800;
}

/* ---- Footer ---- */
.site-footer {
  width: 100%;
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---- Contact button (used in footer) ---- */
.contact-link {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--color-bg);
  padding: 0.4em 1em;
  border-radius: 999px;
  background: var(--color-brown);
  border: solid 5px var(--color-bg);
  font-weight: bold;
  transition: all 0.2s ease;
}

.contact-link:hover {
  background: var(--color-text);
}

.contact-link:active {
  transform: scale(0.96);
}

.text-box{
  border: solid 10px var(--color-orange);
  padding: 3rem;
  border-radius: 30px;
  background: var( --color-yellow);
}

.section-style-1{
background:var(--color-brown) ;

}


.section-style-1 h2{
color: #fff;
}

.section-style-1 p{
color: #fff;
}



/* ---- Burger button (fixed, top right) ---- */
.burger-btn {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-bg);
  border: 3px solid var(--color-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-brown);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Slide-out menu (right side) ---- */
.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(280px, 80vw);
  background: var(--color-bg);
  border-left: 3px solid var(--color-yellow);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 190;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-top: 6rem;
}

.slide-menu.open {
  transform: translateX(0);
}

.slide-menu a {
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-tint);
}

.slide-menu a:hover {
  background: var(--color-tint);
  color: var(--color-brown);
}

/* ---- Backdrop behind the slide-out menu ---- */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 640px) {
  .about h2 {
    font-size: 2.5rem;
  }
}

/*
 --color-brown: #a57b17;   
        Brown

 --color-orange: #f7931e; 
        secondary accent   

  --color-yellow: #f7c639; 
         borders / dividers /

  --color-tint: #fdf3d8;     
        soft section background 

  --color-bg: #ffffff;
  --color-ink: #111111;
  --color-text: #333333;
  --color-text-muted: #6b5a1f;
  */

