@font-face {
    font-family: 'Baby Child';
    src: url('../fonts/baby-child-regular.woff2') format('woff2'),
         url('../fonts/baby-child-regular.woff') format('woff'),
         url('../fonts/baby-child-regular.otf') format('opentype'),
         url('../fonts/baby-child-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "Barlow", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--green-color);
}

.home-header {
    background-color: #fff;
    height: 90px;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.home-logo {
    height: 60px;
}

.home-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 24px;
    padding-right: 24px;
    gap: 12px;
}

.home-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: sticky;
    top: 24px;
}

.home-image img {
    width: 100%;
    height: auto;
    transform: translateY(-40px);
}

.logo {
    width: 80%;
    height: auto;
    max-width: 240px;
}

.home-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.event-title {
    margin-top: 32px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    text-align: center;
}

.event-title-line1 {
    font-family: 'Baby Child', cursive;
    font-size: 4rem;
    font-weight: normal;
    color: white;
    line-height: 1;
    display: block;
}

.event-title-line2 {
    font-family: 'Impact', 'Arial Narrow', sans-serif;
    font-size: 1.75rem;
    color: var(--orange-color);
    line-height: 1.1;
    display: block;
    letter-spacing: 0.02em;
}

.event-title-line3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 8px 18px;
    display: inline-block;
    align-self: center;
    margin-top: 8px;
    letter-spacing: 0.03em;
}

.cards-wrapper {
    display: flex;
    gap: 2rem;
    padding-top: 24px;
    padding-bottom: 24px;
    max-width: 600px;
  }

  .card {
    background-color: white;
    border-radius: 20px;
    padding: 12px 24px;
    flex: 1;
    display: flex;
    gap: 12px;
    flex-direction: column;
    text-align: left;
    color: var(--text-primary);
    text-decoration: none;
    transition: all ease 0.3s;
  }

  .card:hover {
    transform: scale(1.05);
  }

  .card .btn:hover {
    color: white!important;
  }

  .card.yellow {
    .btn {
         background-color: var(--orange-color);
    }
    .card-icon {
        color: var(--orange-color);
    }
  }

  .card.green {
    .btn {
         background-color: var(--green-light-color);
    }
    .card-icon {
        color: var(--green-light-color);
    }
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
  }

  .btn {
    padding: 8px 12px;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: auto; 
    margin-bottom: 8px;
  }

  .info-section {
    margin-top: 20px;
    max-width: 600px;
  }

  .info-title {
    color: var(--orange-color);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
  }

  .info-section p {
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }

  .info-section strong {
    color: white;
  }

  .info-list {
    color: white;
    font-size: 0.85rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    margin: 0;
  }

  .info-list li {
    margin-bottom: 0.3rem;
  }

  .home-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .home-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .home-step p {
    margin: 0;
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .home-step strong {
    color: white;
  }

  .home-step-number {
    background-color: var(--orange-color);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .home-step-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-section {
    margin-top: 24px;
    max-width: 600px;
    background-color: var(--orange-color);
    color: white;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .contact-section strong {
    font-size: 1rem;
  }

  .contact-section a {
    color: white;
    text-decoration: underline;
  }

  @media screen and (max-width: 992px) {
    .home-container {
        grid-template-columns: 1fr;
        padding-top: 32px;
        padding-bottom: 48px;
        gap: 40px;
    }

    .home-content {
        margin: 0 auto;
    }

    .event-title {
        margin-top: 16px;
    }

    .event-title-line1 {
        font-size: 4rem;
    }

    .event-title-line2 {
        font-size: 1.9rem;
    }

    .event-title-line3 {
        font-size: 1.1rem;
    }

    .home-image img {
        transform: translateY(0);
        max-width: 400px; 
        margin: 0 auto;
    }
  }

  @media screen and (max-width: 640px) {
    .cards-wrapper {
        flex-direction: column;
        gap: 16px;
        padding-top: 16px;
    }

    .event-title-line1 {
        font-size: 3rem;
    }

    .event-title-line2 {
        font-size: 1.5rem;
    }

    .event-title-line3 {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .card {
        align-items: center; 
        text-align: center;
    }

    .card-icon {
        margin-bottom: 8px;
    }

    .card p {
        margin-bottom: 12px; 
    }

    .btn {
        width: 90%; 
        max-width: 300px;
    }
  }

