:root {
  --bubble-bg: #f4f4f4;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fdfdfd;
    color: #1a1a1a;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .logo--footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
  }

  .logo-text--footer {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
  }
  
  .sparkles {
    width: 28px;
    height: 28px;
  }

  .hero {
    /* background: 
      radial-gradient(circle at top left,     #A8C8B9 0%, transparent 50%),
      radial-gradient(circle at top right,    #3D5C4E 0%, transparent 50%),
      radial-gradient(circle at bottom left,  #3D5C4E 0%, transparent 50%),
      radial-gradient(circle at bottom right, #A8C8B9 0%, transparent 50%);
    background-blend-mode: lighten; */
    background: linear-gradient(135deg, #A8C8B9, #3D5C4E);
    /* background: linear-gradient(140deg, #A8C8B9 0%, #3D5C4E 50%, #A8C8B9 100%); */
    /* background: linear-gradient(135deg, #b2fce4, #e5ffe7); */
    padding: 2rem;
    text-align: center;
    position: relative;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  /* login button */
  /* .auth-buttons button {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    border-radius: 80px;
  } */
  
  /* .login {
    background: #000;
    color: #fff;
  } */
  
  /* .signup {
    background: transparent;
    color: #fff;
  } */
  
  .intro {
    max-width: 600px;
    margin: auto;
  }
  /*Oakey Avatar*/
  .avatar {
    flex: 0 0 auto;
    width: 80px; /* Adjust size as needed */
    height: 80px;
    border-radius: 50%;
    border: 4px solid white; /* White circular frame */
    object-fit: cover; /* Ensures the image stays proportional */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
  }
  
  /* First Oakey speech bubble */
  .bubble {
    flex: 1;
    background: #fff;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    position: relative;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
    min-width: 60px;
    max-width: 200px;
  }

  /* triange on left side of the bubble */
  .bubble::before {
    content: "";
    position: absolute;
    top: 5px; /* adjust as needed to vertically align with text */
    left: -15px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-right: 26px solid #fff;
    border-bottom: 13px solid transparent;
  }
  
  .avatar-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-left: 26px;
  }

  /* Wave emoji */
  .wave {
    display: inline-block;
    margin-left: 4px;
    animation: wave-animation 1.5s infinite;
    transform-origin: 70% 70%;
    font-size: 1.2em;
  }
  
  .hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .show {
    opacity: 1;
  }

  /* Oakey speech bubble on left card */
  .avatar-bubble--small {
    align-items: flex-start;
  }

  .avatar-bubble--small .avatar {
    width: 28px;
    height: 28px;
    border: 0px solid white; /* White circular frame */

  }
  
  .avatar-bubble--small .bubble {
    font-size: 13px;
    padding: 10px 14px;
    background-color: var(--bubble-bg);
    max-width: 300px;
  }
  
  .avatar-bubble--small .bubble::before {
    left: -10px;
    top: 8px;
    border-width: 6px 10px 6px 0;
    border-style: solid;
    /* color: var(--bubble-bg);
    background-color: #070404; */
    border-color: transparent var(--bubble-bg) transparent transparent;
  }
  
  h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
  }
  
  h1 span {
    font-weight: bold;
  }
  
  /* .start-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  } */
  
  /* .video-section {
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  
  .video-placeholder {
    background: #f0f4ff;
    width: 60%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  
  .play-button {
    background: #333;
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
  } */
  
  .how-it-works {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .card {
    /* background: #f9f9f9; */
    /* background: linear-gradient(135deg, #f8f8f8, #e5ffe7); */
    /* background: linear-gradient(135deg, #A8C8B9, #3D5C4E); */
    background: #D9D9D9;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
  }
  
  .card h3 {
    margin-top: 0;
  }
  
  .card-img-placeholder {
    font-size: 3rem;
    margin-top: 1rem;
  }
  
  .input-box {
    display: flex;
    margin-top: 1rem;
  }
  
  .input-box input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  
  .input-box button {
    background: #333;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: pointer;
  }
  
  .contact {
    padding: 2rem;
    text-align: center;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background: #111;
    color: #fff;
  }

  /* left card */
  .chat-window {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .chat-window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .red { background-color: #ff5f56; }
  .yellow { background-color: #ffbd2e; }
  .green { background-color: #27c93f; }
  
  .bubble-link {
    opacity: 0; 
    transition: opacity 0.5s ease; 
    display: block; 
    margin-top: 8px;
    color: #3683f0;
    text-decoration: none;
  }

  .bubble-link:hover {
    text-decoration: underline;
  }

  /* right card */
  .search-container {
    display: flex;
    position: relative;
    align-items: stretch;
    border: 1px solid #cdd6e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    /* background-color: #f4feff; */
    max-width: 400px;
    height: 48px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  
  .search-container input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 13px;
    color: #1c1c1c;
    background-color: transparent;
  }

  .search-container .divider {
    width: 1px;
    /* height: 24px; */
    background-color: #cdd6e0;
  }
  
  .search-container button {
    flex: 0 0 60px;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    /* padding: 0 16px; */
    align-items: center;
    justify-content: center;
    /* font-size: 20px; */
    color: #1c1c1c;
    transition: background-color 0.2s ease-in-out;
    padding: 0;
  }
  
  .search-container button:hover {
    background-color: var(--bubble-bg);
    /* background-color: #e0f7fa; */
  }
  
  /* Faded pills */
  .faded-shapes {
    position: relative;
    top: -3px;
    /* left: 20px; */
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 1;
  }

  .pill {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 10px 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
    
  }
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .pill-1 {
    color: rgba(0, 0, 0, 0.4);
    animation-delay: 8.2s;
  }
  .pill-2 {
    color: rgba(0, 0, 0, 0.25);
    animation-delay: 8.5s;
  }
  .pill-3 {
    color: rgba(0, 0, 0, 0.1);
    animation-delay: 8.8s;
  }

  /* Image of custom cursor */
  .custom-cursor {
    position: relative;
    width: 24px;
    height: 24px;
    top: -120px;
    right: -200px;
    z-index: 3;
    pointer-events: none;
  }