 @font-face {
  font-family: 'Pacifico';
  src: url('fonts/Pacifico-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
 
 .logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #1c5e3c 0%, #388fa3 100%);
      padding: 1px 0 12px 0;
    }
    .logo-text {
      font-family: 'Pacifico', cursive, Arial, sans-serif;
      font-size: 46px;
      color: #fffbe7;
      text-shadow: 2px 4px 10px rgba(30, 85, 60, 0.22);
      letter-spacing: 2px;
      margin-left: 16px;
      background: linear-gradient(90deg, #fffde9 0%, #ffb700 100%);
 
      background-clip: text;
    }
    .fish-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Для мобильных — уменьшение лого */
    @media (max-width: 600px) {
      .logo-text { font-size: 28px; }
      .fish-icon { width: 36px; height: 36px; }
      .logo-container { padding: 12px 0; }
    }