body { 
  background: url(../images/backgrounds/georgelanding_king.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: transparent !important;
}
.mg-t-img{
  margin-top: 8% !important;
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      color: #ffffff;
      min-height: 100vh;
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      color: #ffffff;
    }

    /* Background image layer */
    .hero::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("../images/backgrounds/georgelanding_king.png");
      background-size: cover;
      background-position: center;
      filter: blur(2px);
      z-index: -2;
    }

    .hero-content {
      max-width: 600px;
    }

    .logo {
      font-size: 0.85rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0.85;
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      margin-bottom: 0.75rem;
    }

    .tagline {
      font-size: 1.1rem;
      margin-bottom: 1.75rem;
      opacity: 0.9;
    }

    .info {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      font-size: 0.95rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .info strong {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.8rem;
      opacity: 0.8;
      display: block;
      margin-bottom: 0.15rem;
    }

    .cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }

    .btn {
      border: none;
      cursor: pointer;
      padding: 0.8rem 1.6rem;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.15s ease, box-shadow 0.15s ease,
        background-color 0.15s ease, color 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: #f4b41a;
      color: #2a1c0f;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
      background: #ffc94d;
    }

    .btn-ghost {
      background: transparent;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.65);
      transform: translateY(-1px);
    }

    footer {
      position: fixed;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.8rem;
      opacity: 0.75;
      text-align: center;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(6px);
    }

@media (max-width: 768px) {
    .hero::before {
      content: "";
      inset: 0;
      background-image: url("../images/backgrounds/georgelanding_kingios.png");
      background-size: cover;
      background-position: center;
      filter: blur(2px);
      z-index: -2;
    }
}    
    
    @media (max-width: 480px) {
      .hero {
        padding: 1.5rem;
      }

      .cta-group {
        flex-direction: column;
      }

      footer {
        width: calc(100% - 2rem);
      }
    }