* { box-sizing: border-box; }

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

    body {
      min-height: 100vh;
      overflow: hidden;
      background: #000;
      font-family: Arial, Helvetica, sans-serif;
    }

    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      background-image: url("879014a9-8a49-4703-95e0-713112624444.jpg");
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.08);
      pointer-events: none;
    }

    /* Sectiunea social media din partea de sus */
    .social-bar {
      position: absolute;
      z-index: 3;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      padding: 22px 28px;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0)
      );
    }

    .social-link {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.65);
      border-radius: 50%;
      color: #fff;
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      text-decoration: none;
      transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    }

    .social-link:hover,
    .social-link:focus-visible {
      transform: translateY(-2px);
      background: rgba(0, 0, 0, 0.55);
      border-color: #fff;
      outline: none;
    }

    .social-link svg {
      width: 19px;
      height: 19px;
      fill: currentColor;
    }

    @media (max-width: 600px) {
      .hero {
        background-size: contain;
        background-position: center center;
        background-color: #000;
      }

      .social-bar {
        top: 0;
        left: 0;
        width: 100%;
        justify-content: center;
        padding: 16px 12px;
        gap: 12px;
      }

      .social-link {
        width: 42px;
        height: 42px;
      }

      .social-link svg {
        width: 19px;
        height: 19px;
      }
    }

      .social-bar {
        justify-content: center;
        padding: 16px 20px;
      }

      .social-link {
        width: 40px;
        height: 40px;
      }

      .social-link svg {
        width: 18px;
        height: 18px;
      }
    }

@media (max-width: 380px) {
  .social-bar {
    padding-top: 12px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 17px;
    height: 17px;
  }
}
