﻿body {
    margin: 0;
    padding: 0;
  }

  #home {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
  }

  video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .container {
    position: relative;
    z-index: 2;
  }

  h1 {
    font-family: 'Miller Banner';
    font-size: 80px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  .description {
    font-family: 'Miller Banner';
    font-weight: 300;
    font-style: normal;
    font-size: 30px; /* Am făcut-o mai mare */
    /* font-weight: 200; */
    letter-spacing: 0.5px;
    margin: 0 auto 2rem auto;
    max-width: 600px; /* Mai îngust */
    line-height: 1.5;
  }

  .description a {
    color: #ffffff;
    font-size: 20px; /* Am făcut-o mai mare */

  }

  .description a:hover {
    color: rgba(255, 255, 255, 0.9)

  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    h1 {
      font-size: 40px;
    }
    .description {
      font-size: 18px;
      max-width: 90%;
    }
    .description a {
        font-size: 16px; /* Am făcut-o mai mare */
      }
  }