/*
Theme Name: Yattee Farms
*/

<style>
  :root{
    --text: #ffffff;
    --shadow: rgba(0,0,0,0.55);
  }

  * { box-sizing: border-box; }

  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #000;
    font-family: 'Copperplate', 'Georgia', 'Times New Roman', serif;
    overflow: hidden;
  }

  .page {
    position: relative;
    width: 100vw;
    height: 100vh;
    /*background-image: url('bg-image.jpg');
    background-size: cover;
    background-position: center;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .bg {
    position: absolute;
    inset: 0;
    background-image: url('bg-image.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.975) contrast(1.02) saturate(0.95) hue-rotate(8deg);
    z-index: 0;
  }

    .bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(180, 200, 220, 0.12); /* cool blue-gray tint */
      mix-blend-mode: overlay;
  }
  
 /* .logo {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(160px, 14vw, 260px);
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)) brightness(1.05);
  }*/
     .logo {
  position: absolute;
  top: auto;
  bottom: 5%;
  left: auto;
  right: 3%;
  transform: none;
  width: clamp(45px, 4.5vw, 70px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.55)) brightness(1.05);
}

  .panel {
    position: absolute;
    bottom: 20%;
    width: 40%;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px var(--shadow), 0 0 14px rgba(255,255,255,0.55);
  }

  .panel.left { left: 3%; }
  .panel.right { right: 3%; }

  .panel h2 {
    font-family: Copperplate, "Copperplate Gothic Light", fantasy; font-style: normal; font-variant: normal;
    font-size: clamp(0.95rem, 1.6vw, 1.35rem);
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    font-weight: 800;
  }

  .panel p {
    font-family: Copperplate, "Copperplate Gothic Light", fantasy; font-style: normal; font-variant: normal;
    line-height: 1.55;
    font-size: clamp(0.72rem, 0.90vw, 0.95rem);
    line-height: 1.55;
    font-weight: 700;
    margin: 0 0 12px 0;
  }

  .panel a {
    color: var(--text);
    text-decoration: underline;
    font-weight: 700;
  }

  .contact {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 46%;
    text-align: center;
    color: var(--text);
    text-shadow: 0 1px 4px var(--shadow), 0 0 14px rgba(255,255,255,0.55);
  }

  .contact h2 {
    font-family: Copperplate, "Copperplate Gothic Light", fantasy; font-style: normal; font-variant: normal;
    font-size: clamp(0.95rem, 1.6vw, 1.35rem);
    letter-spacing: 3px;
    margin: 0 0 8px 0;
    font-weight: 800;
  }

  .contact p {
    font-family: Copperplate, "Copperplate Gothic Light", fantasy; font-style: normal; font-variant: normal;
    font-size: clamp(0.72rem, 0.90vw, 0.95rem);
    line-height: 1.5;
    margin: 0 0 4px 0;
    font-weight: 700;
  }

  .contact a {
    color: var(--text);
    text-decoration: underline;
    font-weight: 700;
  }

  @media (max-width: 800px) {
    .page { overflow-y: auto; height: auto; min-height: 100vh; }
    .page { display: flex; flex-direction: column; padding-bottom: 20px; }
    body { overflow: auto; }
    .bg {
      filter: brightness(0.8) contrast(1.05) saturate(1.05);
    }
    .logo { position: static; transform: none; width: clamp(45px, 20vw, 70px); margin: 20px auto 10px; display: block; order: 4;}
    .panel { position: static; width: 90%; margin: 0 auto 24px; text-align: center; }
    .contact { position: static; width: 90%; margin: 0 auto 30px; transform: none; }
  }
      </style>