:root {
  --background-color: #FDEAE7;
  --secondary-background-color: #F7F4EF;
  --highlight-color: #AAB6EC;
  --light-color: #FBFAF9;
  --dark-color: #3A3341;
  --color: #4F4A5A;
  --button-color: #C8D8C2;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  position: relative;
}

body {
  background-color: var(--background-color);
  color: var(--color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, button {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

section {
  min-height: 100vh;
  padding: 2rem 1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--color);
  padding: 0.9rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, transform 0.2s ease;
  max-width: 90vw;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #b3cdb5;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

.highlight-text {
  font-weight: 600;
  color: var(--highlight-color);
}

.hidden {
  display: none;
}

section.hero {
  background: var(--highlight-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 600px;
}

.hero-container h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-container h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

section.about {
  position: relative;
  display: flex;
  justify-content: center;
}

.background-rounded {
  position: absolute;
  width: 100%;
  height: 30vh;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    var(--highlight-color) 0%,
    var(--highlight-color) 10%,
    var(--background-color) 100%
  );
  z-index: -1;
}

.about-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 1500px;
}

.about-card {
  background-color: rgba(247, 244, 239, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 1rem auto;
  max-width: 400px;
  color: var(--color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 275px;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-card p {
  font-style: italic;
  margin: 0;
  color: #6A6673;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-card li {
  line-height: 1.5;
  position: relative;
  padding-left: 32px;
  text-align: left;
}

.about-card li::before {
  content: "🦊";
  position: absolute;
  left: 0;
  top: 0;
}

.promise {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
}

.promise p {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .promise p {
    font-size: 2.5rem;
  }
}

.testimonial-block {
  background-color: rgba(247, 244, 239, 0.85);
  padding: 2rem 1.5rem;
  margin: 2rem auto;
  border-radius: 1rem;
  max-width: 700px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--highlight-color);
}

.testimonial-block blockquote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color);
}

.testimonial-block .quote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: normal;
}

.testimonial-block .quote em {
  font-style: italic;
  color: #6A6673;
}

.testimonial-block .reflection {
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-block footer {
  font-size: 0.95rem;
  color: #7a7680;
  margin-top: 0.5rem;
}

.about-me-container {
  padding: 3rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(253, 234, 231, 0.5);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(2px);
  color: var(--color);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-me-container h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.about-me-container p {
  line-height: 1.6;
  font-size: 1rem;
}

.about-me-container em {
  font-style: italic;
  color: #6a6673;
}

.cta {
  min-height: 50vh;
  background-color: var(--highlight-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-notify {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-notify h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.cta-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.cta-form input[type="email"] {
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  color: var(--color);
  width: calc(100% - 2.4rem);
}

.cta-form input::placeholder {
  color: #888;
}

.cta-form button {
  background-color: var(--button-color);
  color: var(--color);
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-form button:hover {
  background-color: #b3cdb5;
  transform: translateY(-2px);
}

.form-success {
  margin-top: 1.5rem;
  background-color: var(--button-color);
  color: var(--text-color);
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInSlideUp 0.6s ease forwards;
}

@keyframes fadeInSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background-color: var(--secondary-background-color); /* #F7F4EF */
  color: var(--color); /* #4F4A5A */
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
  margin: 0.5rem 0;
}
