body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5b7cc, #98e7d1);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2d2d2d;
  }

/* header */


header {
    background-color: #fff7f9;
    border-bottom: 1px solid #ddd;
  }
  .wrapper{
    display: flex;
    flex-direction: column;
  }

  .part1 {
    display: flex;
    flex-direction: column;
  }
  
  /* .navbar щоб тягнулась на всю ширину */
  .navbar {
    display: flex;
   
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white; /* або прозорий */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  /* Щоб блоки контенту не злипались */
  .part2 {
    display: flex;
   
    flex-direction: column;
    padding: 30px 20px;
  }

  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d488aa;
  }

  .nav-links {
    display: flex;
    gap: 1.2rem;
  }

  .nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #d488aa;
  }

  .search {
    margin-left: auto;
  }

  .search input {
    padding: 0.4rem 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #666;
    margin: 4px 0;
  }




@media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }

    .nav-links,
    .search {
      display: none;
      width: 100%;
      flex-direction: column;
      margin-top: 1rem;
    }

    .nav-links.active,
    .search.active {
      display: flex;
    }

    .nav-links a {
      padding: 0.5rem 0;
    }

    .search input {
      width: 100%;
    }
  }

/* end header */

.part2 {
  
}


  .container {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-align:center;
  }
  p {
    font-size: 1.2rem;
    color: #555;
  }
  .soon {
    margin-top: 1rem;
    font-style: italic;
    color: #888;
  }

  
  .row{
    display:flex;
    flex-direction: row;
   
  }
.bigblock {
    display:flex;
    flex-direction: column;
    justify-content:space-around;
    margin: 40px;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
}