.site-header {
  text-align: center;
  padding: 2rem 0 1rem;
}

.site-logo {
  max-width: 480px;
  height: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

.event-embed {
    margin-top: 1.5rem;
    overflow: hidden;
  }

  .tag-button {
    display: inline-block;
    background-color: #000000;
    color: #ff8080;
    padding: 6px 10px;
    border-radius: 5px;
    margin: 3px;
    text-decoration: none;
    font-size: 0.9em;
  }
  .tag-button:hover {
    background-color: #a2ad00;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .layout-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .layout-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2rem;
    text-align: left;
  }
  
  header h1 {
    margin-top: 1em;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
  }
  
  nav.toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin: 1em auto;
    flex-wrap: wrap;
    font-size: 1.2rem;
  }
  
  nav.toolbar button,
  nav.toolbar a {
    background: #fff;
    border: 1px solid #ccc;
    padding: 0.5em 1em;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
  }
  
  nav.toolbar button[disabled] {
    cursor: default;
    opacity: 0.6;
  }
  
  #search-form {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  #search-input {
    padding: 0.5em;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    z-index: 10;
    text-align: left;
    font-size: 1rem;
  }
  
  .result-item {
    padding: 0.5em;
  }
  
  .result-item:hover {
    background-color: #f0f0f0;
  }
  
  main p {
    font-size: 1.2rem;
    margin-top: 2em;
  }

  .feature-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .feature-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #c9f1f8;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
  }
  .feature-block:nth-child(1) { animation-delay: 0.1s; }
  .feature-block:nth-child(2) { animation-delay: 0.3s; }
  .feature-block:nth-child(3) { animation-delay: 0.5s; }
  .feature-block:nth-child(4) { animation-delay: 0.7s; }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .feature-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .feature-block.left { flex-direction: row; }
  .feature-block.right { flex-direction: row-reverse; }
  
  .feature-img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .feature-text {
    max-width: 500px;
  }
  
  .feature-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #00796b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    background: linear-gradient(to right, #00796b, #004d40);
    border: none;
    transition: background 0.3s ease, transform 0.2s;
  }

  .feature-link:hover {
    background: #003c33;
    transform: translateY(-2px);
  }  
