/* HOME PAGE BACKGROUND */
body.home-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image:url("/static/images/barn-garden.jpeg"); /* your cropped image */
    background-size: cover;
    background-position: center;
    font-family: 'Merriweather', serif;
    color: #fefefe;
    overflow: hidden;
}

/* FADE-IN BACKGROUND OVERLAY */
.home-fade-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    animation: fadeInBg 1.2s ease forwards;
    z-index: 0;
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wmr-banner {
  background: #F7D000;
  padding: 18px 22px;
  font-family: "Merriweather", serif;
  color: #000000;
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 322px;
  z-index: 4; /* stays under your click layer */
    /* diagonal caution stripe border */
    border: 3px solid #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);

    background-image:
        repeating-linear-gradient(
            -45deg,
            #000000 0,
            #000000 8px,
            #F7D000 8px,
            #F7D000 16px
        );
    background-size: 100% 6px;
    background-repeat: repeat-x;
    background-position: bottom;
}


.wmr-banner-title {
  margin: 0 0 8px 0;
  font-weight: 700;
  text-transform: uppercase;
}

.no-block {
  pointer-events: none; /* <-- the critical part */
}



/* CENTERED OVERLAY */
.home-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.start-btn {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: transparent;
    border: none;
    cursor: default;
}

/* WELCOME BOX */
.welcome-box {
    background-color: rgba(255, 255, 255, 0.12);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(3px);
    transition: background-color 0.3s ease;
    z-index: 4;
    pointer-events: none;
}

.welcome-box:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

/* FADE-IN TEXT */
.home-fade-in {
    opacity: 0;
    animation: fadeInText 1.4s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* START TEXT */
.home-start-text {
    margin-top: 20px;
    font-size: 1.2em;
    font-style: italic;
    color: #e0e0e0;
}

.abort-row {
    margin-top: 60px;
}
