
:root {
  --cream: #f3e1c8;
  --cream-light: #f9efdd;
  --ink: #2e2e2e;
  --accent: #6cb7ba;
  --accent-dark: #4d9b9f;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: var(--ink);
  background: #ffeef5;
}

.top-header {
  position: relative;
  padding: 20px 6vw 80px;
  background: #ffeef5;
  overflow: hidden;
  z-index: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo img {
  width: 300px;
  height: 200px;

}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-btn {
  text-decoration: none;
  background: #ffffff;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  font-size: 14px;
}

.hero {
  margin-top: 24px;
  display: flex;              
  justify-content: center;    
  align-items: flex-start;       
  padding: 10px;       
  text-align: center;
  position: relative;
  z-index: 1;
}


.hero-text h1 {
  margin: 0 0 6px;
  margin-top: -100px;
	color: #40E0D0;
	font-family: "Comic Sans MS", cursive, sans-serif;
font-size: 40px;
}

.hero-text p {
	margin: 0 0 14px;
	color: #5b2ac3; 
        font-family: "Comic Sans MS", cursive, sans-serif; 
        font-weight: bold;
        font-size: 18px;
}
 


.hero-text-indent {
  padding-left: 20px;
}

.cta {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 320px;
}

.wave {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: -1px;
  height: 140px;
  z-index: 0;
  pointer-events: none;
}

.wave svg {
  width: 100%;
  height: 140px;
  display: block;
}

main {
  padding: 10px 6vw 40px;
  background: #ffeef5;
}

.tools h2 {
  text-align: center;
  color: #5b2ac3;
  margin-bottom: 20px;
font-family: "Comic Sans MS", cursive, sans-serif;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 10px;
  justify-items: center;
}

.tool-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.tool-btn {
  background: var(--accent);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.info {
  margin-top: 32px;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
}

.info h2 {
  margin: 0 0 6px;
	font-family: "Comic Sans MS", cursive, sans-serif; 
	color: #5b2ac3
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-image img {
    max-width: 240px;
  }
}
