    :root {
      --cream: #f0ebe0;
      --pink:  #c97a82;
      --pink-light: #dea8ae;
      --tan:   #b8a898;
      --tan-dark: #9e8e7e;
      --white: #faf7f2;
      --brown: #5c3d2e;
      --nav-bg: #8fa8a0;
    }
 
    body {
  margin: 0;
  background: var(--cream);
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
}
    
    nav {
      display: flex;
      align-items: center;
      background: var(--nav-bg);
      padding: 0 2rem;
      min-height: 72px;
      gap: 0;
    }
 
    .nav-logo {
      display: flex;
      align-items: center;
      margin-right: 2rem;
      flex-shrink: 0;
    }
 
     .nav-logo img {
        height: 40px;
        }
 
    .nav-links {
      display: flex;
      flex: 1;
      justify-content: space-evenly;
      list-style: none;
      margin: 0;
      padding: 0;
    }
 
    .nav-links li a {
      text-decoration: none;
      color: var(--white);
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.01em;
      transition: opacity 0.2s;
    }
    .nav-links li a:hover { opacity: 0.7; }

 @media (max-width: 700px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    min-height: auto;
  }

  .nav-logo {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
    width: 100%;
  }

  .nav-links li {
    flex: 0 1 auto;
  }

  .nav-links li a {
    font-size: 0.95rem;
    white-space: nowrap;
  }
}

.pomodoro-steps {
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
  color: var(--cream);
}

.hero {
  margin: 1.5rem;
  background: var(--pink);
  border-radius: 18px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 380px;
}

.hero-text {
  flex: 1;
  max-width: 55%;
}

.hero-text h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.tagline {
  font-family: 'Courier Prime', monospace;
  font-size: 1.15rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-focus {
  display: inline-block;
  background: var(--nav-bg);
  color: var(--white);
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.18s, background 0.18s;
}

.btn-focus:hover {
  background: #cc8f95;
  transform: scale(1.04);
}

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

.hero-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 200px;
    margin-top: 1rem;
  }
}

-------------------------------
.hero {
  margin: 1.5rem;
  background: var(--pink);
  border-radius: 18px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 380px;
}

.hero-text {
  flex: 1;
  max-width: 55%;
}

.hero-text h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.tagline {
  font-family: 'Courier Prime', monospace;
  font-size: 1.15rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}


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

.hero-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.feature-section {
  margin: 1.5rem;
  border-radius: 18px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 380px;
}

.feature-text {
  flex: 1;
  max-width: 55%;
}

.feature-text h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.feature-tagline {
  font-family: 'Courier Prime', monospace;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.feature-copy {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.pomodoro-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pomodoro-image img {
  max-width: fit-content px;
  width: 100%;
  height: auto;
}

.section-pink {
  background: var(--pink);
}

.section-pink .feature-text h2,
.section-pink .feature-tagline,
.section-pink .feature-copy {
  color: var(--white);
}

.section-tan {
  background: var(--tan);
}

.section-tan .feature-text h2,
.section-tan .feature-tagline,
.section-tan .feature-copy {
  color: var(--brown);
}

.section-cream {
  background: var(--white);
}

.section-cream .feature-text h2,
.section-cream .feature-tagline,
.section-cream .feature-copy {
  color: var(--brown);
}

.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 700px) {
  .hero,
  .feature-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    min-height: auto;
  }

  .hero-text,
  .feature-text {
    max-width: 100%;
  }

  .hero-image img,
  .feature-image img {
    max-width: 220px;
    margin-top: 1rem;
  }
}
-------------------------------
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pt-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pt-container {
  width: 100%;
  max-width: 600px;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);

  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pt-title {
  color: #33312E;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.pt-divider {
  width: 100%;
  height: 2px;
  border: none;
  background-color: #33312E;
  opacity: 0.3;
  border-radius: 999px;
  margin-bottom: 40px;
}

.pt-timer {
  color: #33312E;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.pt-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pt-btn {
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 14px;
  cursor: pointer;
  min-width: 140px;

  transition: all 0.2s ease;
}

.pt-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.pt-btn-start {
  background-color: #7FA38A; 
}

.pt-btn-stop {
  background-color: #B85C5C; 
}

.pt-btn-reset {
  background-color: #6B8C8E;
}

.pt-title {
  font-family: "Courier New", monospace;
  font-weight: 700;
}

.pt-timer {
  font-family: "Courier New", monospace;
}

--------------------------------    
.cte-wrapper {
  min-height: calc(100vh - 150px);
  display: flex;
  justify-content: center;
  align-items: center;
}


.cte-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);

  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cte-title {
  font-family: "Courier New", monospace;
  color: #BC6266;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cte-divider {
  border: none;
  height: 1px;
  background: #33312E;
  opacity: 0.3;
  margin-bottom: 30px;
}

.cte-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.cte-input-wrapper label {
  font-size: 1.2rem;
  font-family: "Courier New", monospace;
  color: #33312E;
}

.cte-input {
  padding: 30px;
  border-radius: 10px;
  border: none;
  font-family: "Courier New", monospace;
}

.cte-timer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.time {
  flex: 1;
}

.time h2 {
  font-family: "Courier New", monospace;
  font-size: 2.5rem;
  color: #6B8C8E;
}

.time p {
  font-size: 0.8rem;
  color: #33312E;
}

.section-quote {
      margin: 0 1.5rem 1.2rem;
      background: var(--white);
      border-radius: 18px;
      padding: 2.2rem 2.8rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      animation: fadeUp 0.6s 0.25s ease both;
      border: 2px solid #e6ddd0;
      position: relative;
      overflow: hidden;
    }
 
    .section-quote::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 9rem;
      color: var(--pink-light);
      opacity: 0.25;
      font-family: Georgia, serif;
      line-height: 1;
      pointer-events: none;
    }
 
    .quote-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--pink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }
 
    .quote-content { flex: 1; }
 
    .quote-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 0.4rem;
    }
 
    #quote-text {
      font-family: 'Courier Prime', monospace;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--brown);
      line-height: 1.6;
      transition: opacity 0.4s;
      min-height: 2.5em;
    }
 
    #quote-author {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--tan-dark);
      margin-top: 0.5rem;
      transition: opacity 0.4s;
    }
 
    #quote-text.fading,
    #quote-author.fading { opacity: 0; }
 
    .btn-new-quote {
      flex-shrink: 0;
      background: var(--pink);
      color: var(--white);
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.85rem;
      padding: 0.65rem 1.4rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: background 0.18s, transform 0.18s;
      letter-spacing: 0.03em;
      white-space: nowrap;
    }
 
    .btn-new-quote:hover {
      background: #b5666e;
      transform: scale(1.05);
    }
 
    .btn-new-quote:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    @media (max-width: 700px) {
      .section-quote { flex-wrap: wrap; padding: 1.5rem; }
      .btn-new-quote { width: 100%; text-align: center; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

     @keyframes floatAnim {
      0%, 100% { transform: translateY(0px) rotate(-2deg); }
      50%       { transform: translateY(-14px) rotate(2deg); }
    }
 
 
    .overlay {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(92, 61, 46, 0.4);
      align-items: center; justify-content: center;
    }
    .overlay.open { display: flex; animation: fadeIn 0.2s ease; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
 
  
    .modal {
      background: var(--white); border-radius: 20px; padding: 2.2rem 2.4rem;
      width: 100%; max-width: 440px; position: relative;
      border: 1.5px solid #e6ddd0; animation: slideUp 0.22s ease;
    }
    @keyframes slideUp { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform: translateY(0); } }
 
    .modal-close {
      position: absolute; top: 1rem; right: 1.2rem; background: none;
      border: none; font-size: 1.5rem; cursor: pointer; color: var(--tan);
      line-height: 1; transition: color 0.15s;
    }
    .modal-close:hover { color: var(--pink); }
 
    .modal h3 { font-size: 1.35rem; font-weight: 900; color: var(--brown); margin-bottom: 0.2rem; }
    .modal .sub { font-family: 'Courier Prime', monospace; font-style: italic; color: var(--tan); font-size: 0.88rem; margin-bottom: 1.5rem; }
 
    .form-group { margin-bottom: 1rem; }
    .form-group label {
      display: block; font-size: 0.72rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--pink); margin-bottom: 0.3rem;
    }
    .form-group input,
    .form-group textarea {
      width: 100%; padding: 0.65rem 0.9rem;
      border: 1.5px solid #e0d5c8; border-radius: 10px;
      background: var(--cream); color: var(--brown);
      font-family: 'Nunito', sans-serif; font-size: 0.95rem;
      outline: none; transition: border-color 0.18s; resize: none;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--pink); }
    .form-group textarea { height: 90px; }
 
    .error-msg { font-size: 0.78rem; color: var(--pink); margin-top: 0.25rem; display: none; }
 
    .btn-submit {
      width: 100%; margin-top: 0.3rem; background: var(--pink); color: var(--white);
      font-family: 'Courier Prime', monospace; font-weight: 700; font-size: 1rem;
      padding: 0.8rem; border-radius: 50px; border: none; cursor: pointer;
      transition: background 0.18s, transform 0.15s; letter-spacing: 0.03em;
    }
    .btn-submit:hover { background: #c06a73; transform: scale(1.02); }

    .success { display: none; text-align: center; padding: 1.5rem 0 0.5rem; }
    .success .tick { font-size: 2.8rem; margin-bottom: 0.6rem; }
    .success h4 { font-size: 1.2rem; font-weight: 900; color: var(--brown); margin-bottom: 0.3rem; }
    .success p { font-family: 'Courier Prime', monospace; font-style: italic; color: var(--tan); font-size: 0.9rem; }

       *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 