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

    body, html {
      height: 100%;
      font-family: "Cormorant Garamond", serif;
      font-optical-sizing: auto;
    }

    .hero {
      
      background-size: cover;
      background-position: center;
      height: 100vh;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 20px;
      position: relative;
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.45);
      z-index: 1;
    }

    .hero-content {
      z-index: 2;
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }

    .logo {
      margin-bottom: 20px;
    }
    .logo img { 
      filter: brightness(0) invert(1);
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    p {
      font-size: 1.3rem;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .button {
      display: inline-block;
      padding: 12px 24px;
      background-color: white;
      color: #333;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .button:hover {
      background-color: #eee;
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .socials a {
      color: white;
      font-size: 1.4rem;
      text-decoration: none;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 1.8rem;
      }

      p {
        font-size: 1rem;
      }
    }