body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Add this to push the main content down by the header height */
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "new-zen", sans-serif;
}

h1, h2, h3 {
    color: #ffffff;
}

p {
    line-height: 1.6;
    color: #666;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.fetr {
    background-color: white;
    color: #fff;
    text-align: center;
    padding: 0.625rem 0; /* 10px ≈ 0.625rem */
    width: 100vw;
    box-sizing: none;
    margin: 0;
    border: none; /* 4px ≈ 0.25rem */
    margin-top: auto; /* Pushes footer to the bottom */
    position: relative;
    bottom: 0;
}

main, header.header-main, .fetr {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main {
    margin-top: 3.5rem; /* 56px ≈ 3.5rem, matches closed header */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: margin-top 0.7s cubic-bezier(0.77,0,0.175,1);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-seq {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.77,0,0.175,1) forwards;
    animation-play-state: paused;
}

.video-container {
    padding: 2rem;
    padding-bottom: 20rem;
}
footer, .wpulike {
	display:none;
}