@font-face {
    font-family: 'with_my_woesregular';
    src: url('../fonts/withmywoes-webfont.woff2') format('woff2'),
         url('../fonts/withmywoes-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
    font-family: 'with_my_woesregular', serif;
    overflow-x: hidden;
}

.hero {
    background-color: #000000;
}
.hero.is-fullheight .hero-body {
    align-items: flex-start;
    padding-top: 2vh;
}
.hero .nav,
.hero.is-success .nav {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.hero .title {
    color: #FFD700;
}

.bird {
    width: min(460px, 75vw);
    aspect-ratio: 1 / 1;
    margin: 0 auto 0.5rem;
    background-color: #FFD700;
    -webkit-mask: url('../img/FauxVO_bird.svg') center/contain no-repeat;
    mask: url('../img/FauxVO_bird.svg') center/contain no-repeat;
}

.signup {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.signup-input,
.signup-button {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.6rem 1rem;
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    border-radius: 0;
    outline: none;
}
.signup-input {
    min-width: 240px;
}
.signup-input::placeholder {
    color: #FFD700;
    opacity: 0.5;
}
.signup-button {
    cursor: pointer;
    letter-spacing: 0.05em;
}
.signup-button:hover,
.signup-button:focus {
    background-color: #FFD700;
    color: #000000;
}

/* Mobile (Bulma's mobile breakpoint: max-width 768px) */
@media screen and (max-width: 768px) {
    .hero.is-fullheight .hero-body {
        padding: 1rem;
        padding-top: 3vh;
    }
    .hero .title.is-1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    .hero .title.is-3 {
        font-size: 1.25rem;
    }
    .bird {
        margin-bottom: 1rem;
    }
    .signup {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    .signup-input,
    .signup-button {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

/* Tablet only (769-1023) */
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .hero .title.is-1 {
        font-size: 2.5rem;
    }
}
