@font-face {
  font-family: 'OptimaNovaLTPro'; /* Name you’ll use in CSS */
  src: url('fonts/OptimaNovaLTProBlack.otf') format('opentype'); /* Path to your font */
  font-weight: normal;
  font-style: normal;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'OptimaNovaLTPro', Arial, sans-serif;
    }

    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      background: #A9A97A;
      color: white;
      text-align: center;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    /* Logo animation */
    .logo {
      margin-top: 20px;
      animation: float 3s ease-in-out infinite;
    }

    .logo img {
      width: 500px;
      height: 100px;
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.1);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Headline animation */
    .headline {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-size: 2.5rem;
      font-weight: bold;
      padding: 0 20px;
      opacity: 0;
      animation: fadeIn 2s ease forwards 0.5s;
    }
    
    .headline p {
        font-size: 1rem;
        margin-top: 20px;
        font-weight: 100;
    }
    
    a {
        text-decoration: none;
        color: #7D5764;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    footer {
      margin-bottom: 20px;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .headline {
        font-size: 1.7rem;
      }

      .logo img {
        width: 250px;
        height: 70px;
      }

      .cta {
        padding: 10px 25px;
        font-size: 0.9rem;
      }
    }
  