/* Fonts */
@font-face {
    font-family: "Adam";
    src: url("/adam.otf");
}

@font-face {
    font-family: "Helvetica";
    src: url("/HelveticaNeue.otf");
}

@font-face {
    font-family: "Condiment";
    src: url("fonts/Condiment-Regular.ttf");
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "PoppinsExtraBold";
    src: url("fonts/Poppins-ExtraBold.ttf");
}

.Condiment {
    font-family: "Condiment", cursive;
    font-weight: 400;
    font-style: normal;
}

.Poppins {
    font-family: "Poppins";
    color: #fff;
}

.PoppinsExtraBold {
    font-family: "PoppinsExtraBold";
    color: #fff;
}

.Adam {
    font-family: "Adam";
    color: #fff;
}

.Helvetica {
    font-family: "Helvetica";
    color: #fff;
}

.genericDiv {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    align-items: center;
}


img {
    max-width: 100%;
    border: 0;
}

/* unvisited link */
a:link {
    color: white;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: white;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #de2222;
    text-decoration: none;
}

/* selected link */
a:active {
    color: white;
    text-decoration: none;
}

.oneColumnSpan {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    text-align: center;
    text-align: -webkit-center;
}

.mainContainer{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    text-align: -webkit-center;
}

.navButton{
    cursor: pointer;
    display: flex;
    padding-right: 1%;
    padding-left: 1%;
}

.videoThumbnail:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.tipsThumbnail:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.sendButton {
    border-radius: 15px;
    border: solid gray;
    cursor: pointer;
    background-color: lightgrey;
    color: black;
}

.sendButton:hover {
    background-color: #8F110D;
    color: white;
}

.buttonStyle {
    border-radius: 15px;
    border: solid gray;
    cursor: pointer;
    background-color: lightgrey;
    color: black;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.buttonStyle:hover {
    background-color: #8F110D;
    color: white;
}

.moviePoster:not([src*="_blank"]),
.videoThumbnail:not(.courseBooks):not([src*="_blank"]),
.clientLogo:not([src*="_blank"]) {
    border: 1px solid #555;
    border-radius: 8px;
}

/* ── Logo ── */
.topLogo {
    max-width: 25%;
    height: auto;
}

/* ── Thumbnail grid rows: always allow wrapping ── */
.mainContainer > section {
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Responsive Vimeo embeds ── */
.vimeo-wrap {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto 2em;
}
.vimeo-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    border: 0;
}

/* ── Mobile ── */
@media (max-width: 768px) {

    .topLogo { max-width: 65%; }

    .navButton {
        padding: 4px 3%;
    }
    .navButton a {
        display: flex;
        align-items: center;
        min-height: 44px;
    }

    /* poster grid: 2-up on mobile */
    #pageContentID {
        justify-content: center;
    }

    /* contact form: full-width fields */
    .contactWrap {
        width: 88% !important;
        min-width: unset !important;
    }
}
















