/* Minimal Responsive Homepage Title & Subtitle */
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: url('images/tractor.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

header {
    text-align: center;
    padding: clamp(20px, 5vw, 40px) 20px 20px;
    font-family: 'Rye', serif;
}

.main-title {
    font-size: clamp(0.8rem, 8vw, 4rem); /* scales with viewport */
    font-family: 'Rye', serif;
    letter-spacing: clamp(1px, 0.4vw, 3px); /* spacing shrinks on small screens */
    text-shadow: 2px 2px 6px #000;
    white-space: nowrap;   /* stay on one line */
    max-width: 100vw;      /* never exceed viewport width */
    overflow: hidden;      /* avoid horizontal scroll */
    display: block;
    text-align: center;
}

.subtitle {
    font-size: clamp(0.7rem, 5vw, 2rem); /* responsive subtitle sizing */
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    font-weight: bold;
    white-space: nowrap;   /* also stay on one line */
    max-width: 100vw;
    overflow: hidden;
    display: block;
    text-align: center;
}
