/* 1. THE SHIELD: Prevents any sideways movement globally */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    background-image: url('images/Lake\ Diefenbaker\ Expanse.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* CHANGE: 'fixed' causes wiggle on phones. 'scroll' is stable. */
    background-attachment: scroll; 
    
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* 2. THE SPACER: Moves your title to the top 1/3 */
.spacer {
    height: 20vh; /* 20% of screen height */
    width: 100%;
}

.content-container {
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    /* Removed margin-left to prevent overflow */
}

h1 {
    color: white;
    font-size: clamp(1.5rem, 11vw, 5rem);
    line-height: 1.2;
    word-wrap: break-word;
    margin: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}