/* Reset margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lato', sans-serif;
    color: #f5f5f5;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #000;   /* black fallback background */
  }
  
  /* Orchard background with 50% opacity */
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('orchard-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.5;   /* orchard at 50% */
    z-index: 0;
  }
  
  /* Dark overlay for readability (optional — can remove if too dark) */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
  }
  
  .container {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
  }
  
  .logo {
    width: 300px;
    height: auto;
    margin-bottom: 25px;
  }
  
  .tagline {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.95;
    color: gold;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  
  .brandline {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #ddd;
    opacity: 0.9;
  }
  
  .brandline .highlight {
    color: gold;
    font-weight: 500;
  }
  
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }