/** Main Body / Hero Title **/
.welcome-section {
    background-image: url('./img/adopt-bg.png');
  }


/** Adoption A Cat / Why You Should Adopt **/

.botton-group-adopt-01{
    display: flex;
    gap: 30px;
  }

.adoption-section {
    padding: 350px 200px;
  }
  
  .adoption-content {
    max-width: 70vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 6vw, 100px);
  }

  .adoption-text {
    width: 30%;
    min-width: 0;
  }

  .adoption-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-100);
  }

  .adoption-description {
    font-size: 15px;
    line-height: 25px;
    color: var(--text-100);
    margin-bottom: 50px;
  }


  .adoption-image {
    /* Scales smoothly with the viewport instead of jumping between a
       fixed 500x200 box and the mobile override, so it never crowds
       out the text column at in-between window widths. */
    width: clamp(240px, 34vw, 500px);
    height: clamp(130px, 14vw, 200px);
    min-width: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: clamp(12px, 1.1vw, 15px);
    color: var(--text-100);
    border: 1px solid var(--text-100);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .adoption-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .adoption-image-text {
    padding: 20px;
    color: #fff;
  }





  /** Adopt A Cat / Find Match Navigation **/
  .botton-group-adopt-02{
    display: flex;
    gap: 30px;
    padding: 40px;
  }

  .find-match-section {
    padding: 200px 0;
  }
  
  .find-match-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  
  .find-match-image {
    width: 30%;
    margin-top: 150px;
  }
  
  .find-match-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  
  .find-match-text {
    width: 50%;
    margin-top: 100px;
  }
  
  .find-match-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 15px;
  }
  
  .find-match-description {
    font-size: 15px;
    line-height: 25px;
    color: var(--text-100);
    margin-bottom: 15px;
  }
  
  .find-match-list {
    list-style: none;
    margin-bottom: 15px;
    color: var(--text-100);
  }

  .find-match-list a:hover {
    color: var(--accent-200);
  }

  .find-match-list a{
    color: var(--text-100);
    
  }
  
  .find-match-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .paw-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  .animated-paw {
    position: absolute;
    top: -50px;
    right: 0;
    width: 150px;
    transform: translateX(50%) rotate(90deg);
    animation: pawing 2s ease-in-out infinite;
    transform-origin: center center;
  }
  
  @keyframes pawing {
    0% {
      transform: translateX(50%) rotate(90deg);
    }
    50% {
      transform: translateX(50%) rotate(45deg);
    }
    100% {
      transform: translateX(50%) rotate(90deg);
    }
  }

  




  /** Adopt A Cat / Find Your Cat **/
  .cats-list-section {
    margin-top: 100px;
    color: #fff;
    padding-bottom: 300px;
  }

  .cats-list-section .cat-description {
    color: #333 !important;
  }
  
  .section-header {
    text-align: center;
    padding-top: 200px;
    color: #333;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 100px;
  }
  
  .cat-card {
    max-width: 70vw;
    margin: 30px 15vw 0;
    text-align: auto;
  }
  
  .cat-image-container-left {
    margin-bottom: 50px;
    margin-left: 5vw;
  }

  .cat-image-container-right {
    margin-bottom: 50px;
    margin-left: 35vw;
  }
  
  .cat-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 300px;
    object-fit: cover;
  }
  
  .cat-details-left {
    margin-left: 6vw;
    max-width: 25vw;
  }

  .cat-details-right {
    margin-left: 35vw;
    max-width: 25vw;
  }
  
  .cat-name {
    font-size: 28px;
    color:var(--accent-200);
    margin-bottom: 20px;
  }
  
  .cat-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #333 !important;
  }
  
  .cat-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  
  
  .cat-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .cat-thumbnails img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  
  .cat-thumbnails img:hover {
    transform: scale(1.1);
  }


  /** Responsive **/
  @media (max-width: 1024px) {
    .adoption-section {
      padding: 150px 60px;
    }

    .find-match-section {
      padding: 120px 0;
    }

    .cats-list-section {
      padding-bottom: 120px;
    }

    .section-header {
      padding-top: 100px;
    }
  }

  @media (max-width: 900px) {
    .adoption-section {
      padding: 80px 20px;
    }

    .adoption-content {
      flex-direction: column;
      max-width: 100%;
      gap: 40px;
    }

    .adoption-text {
      width: 100%;
    }

    .adoption-image {
      width: 100%;
      max-width: 400px;
      height: 160px;
    }

    .botton-group-adopt-01 {
      flex-wrap: wrap;
    }

    .find-match-section {
      padding: 80px 20px;
    }

    .find-match-content {
      flex-direction: column;
      max-width: 100%;
    }

    .find-match-image {
      width: 60%;
      max-width: 220px;
      margin: 0 auto;
    }

    .find-match-text {
      width: 100%;
      margin-top: 30px;
    }

    .animated-paw {
      display: none;
    }

    .cats-list-section {
      margin-top: 0;
      padding-bottom: 80px;
    }

    .section-header {
      padding-top: 60px;
    }

    .section-description {
      margin-bottom: 40px;
    }

    .cat-card {
      max-width: 100%;
      margin: 80px 20px 0;
    }

    .cat-image-container-left,
    .cat-image-container-right {
      margin-left: 0;
      margin-bottom: 30px;
    }

    .cat-details-left,
    .cat-details-right {
      margin-left: 0;
      max-width: 100%;
    }

    .cat-actions {
      justify-content: flex-start;
    }
  }