/*
Theme Name: Cynthiad
Author: Tristan et Virginie inc.
Author URI: https://www.tristanetvirginie.com/
Description:
Version: 0.1
*/

@font-face {
    font-family: "Baskerville";
    src: url("fonts/Baskerville.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Cinzel";
    src: url("fonts/Cinzel.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Lato Light";
    src: url("fonts/Lato-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Lato Thin";
    src: url("fonts/Lato-Thin.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Manrope";
    src: url("fonts/Manrope.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Open Sans";
    src: url("fonts/OpenSans.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.button,
button {
    font-family: "Manrope", regular;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    font-size: 1rem;
    color: #fff;
    background: none;
    border: 1px solid white;
    padding: 1rem 2rem;
    cursor: pointer;
    max-width: fit-content;
    max-height: fit-content;
}

.button:hover,
button:hover {
    color: #fff;
    background: #9e9873 !important;
    box-shadow: 0px 15px 25px -7px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.front-page nav {
    position: absolute !important;
}

nav {
    display: flex;
    justify-content: center;
    position: initial;
    top: 0;
    border-bottom: 1px solid black;
    padding-top: 1rem;
    width: 100%;
    z-index: 100;
}

nav .mobile-nav-logo {
    display: none;
}

nav ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 1024px;
    max-height: 80px;
}

nav ul li {
    font-family: "Baskerville", regular;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 10px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
}

nav ul li a:hover {
    color: #007bff;
}

nav ul li img {
    max-width: 100%;
    height: auto;
    padding-top: 1rem;
}

nav ul li img:hover {
    transform: scale(1.25);
    transition: transform 0.3s ease-in-out;
}

nav .lang-select {
    position: absolute;
    right: 3rem;
    top: 3rem;
    font-family: "Baskerville", regular;
    font-size: 1rem;
}

@media (max-width: 1260px) {
    .hamburger {
        display: block;
        margin-right: 1rem;
    }

    nav {
        position: sticky;
        justify-content: space-between;
        align-items: center;
        background: #fff;
    }

    nav .mobile-nav-logo {
        display: block;
        max-height: 80px;
        margin-bottom: 0.25rem;
    }

    nav ul {
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        border-bottom: 1px solid #000;

        transform: translateY(-20px);
        transition:
            opacity 0.4s ease,
            visibility 0.4s ease,
            transform 0.4s ease;
    }

    nav ul.active {
        opacity: 0.97;
        visibility: visible;
        transform: translateY(0);
        max-height: none;
    }

    nav ul li {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.25s ease;
        margin: 1rem 0;
        text-align: center;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
    }

    nav ul.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    nav ul.active li:nth-child(2) {
        transition-delay: 0.15s;
    }
    nav ul.active li:nth-child(3) {
        transition-delay: 0.2s;
    }
    nav ul.active li:nth-child(4) {
        transition-delay: 0.25s;
    }
    nav ul.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-logo {
        display: none;
    }

    .lang-select {
        display: none;
    }
}

.hero {
    display: flex;
    align-items: start;
    justify-content: center;
    background-size: cover;
    background-position: 14% 100px;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min-content;
    margin-top: 180px;
}

@media (max-height: 667px) {
    .hero-content {
        margin-top: 120px;
    }
}

.hero-content h1 {
    font-family: "Cinzel", regular;
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
    width: max-content;
}

.hero-content p {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    margin: 1rem 0;
}

.hero-content .button {
    color: #000;
    border: 1px solid black;
}

.hero-content .button:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0px 15px 25px -7px rgba(0, 0, 0, 0.1);
}

@media (min-width: 744px) and (min-height: 1133px) {
    .hero-content {
        min-width: min-content;
        max-width: 600px;
        width: 520px;
    }

    .hero-content p {
        font-size: 3rem;
    }
}

@media (min-width: 819px) and (min-height: 1179) {
    .hero {
        align-items: center;
        justify-content: end;
    }

    .hero-content {
        width: 500px;
        margin: 0 0 200px 0;
    }

    .hero-content p {
        font-size: 3rem;
    }
}

@media (min-width: 1023px) and (min-height: 1365px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 5rem;
    }

    .hero-content button {
        margin-top: 1rem;
        padding: 2rem 3rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 1132px) and (min-height: 743px) {
    .hero {
        background-position: 28%;
        justify-content: end;
        align-items: center;
        /*align-items: end;*/
    }

    .hero-content {
        /*background: rgba(255, 255, 255, 0.75);*/
        margin: 10rem 0 0 0;
        /*margin: 0 0 2rem 0;*/
        width: 45%;
        max-width: 550px;
        padding: 58px;
    }

    .hero-content p {
        font-size: 3.25rem;
    }
}

@media (min-width: 1261px) {
    .hero {
        background-position: 28%;
        justify-content: end;
    }
}

@media (min-width: 1261px) and (max-height: 667px) {
    .hero-content {
        margin: 17rem 25% 0 0;
    }
}

.about {
    min-height: 100vh;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1130px) {
    .about {
        display: flex;
        flex-direction: row;
        height: 100vh;
    }
}

.about .about-portrait {
    flex: 0 0 40%;
    overflow: hidden;
    /*background-image: url("images/cynthia.jpg");
    background-size: cover;
    background-position: center;
    */
}

.about .about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 1261px) {
    .about .about-portrait {
        flex: 1;
    }
}

@media (max-width: 489px) {
    .about .about-portrait {
        background-size: 54vh;
        background-position: 43% 32%;
    }
}

.about .about-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 0 5% 2rem 5% !important;
    text-align: left !important;
}

@media (max-width: 1261px) {
    .about .about-portrait img {
        object-position: auto -80px;
    }

    /*.about .about-content {
        flex: 0.25;
        padding: 1rem;
    }*/
}

.about .about-content h2 {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    font-weight: normal;
    max-width: 880px;
}

@media (max-width: 489px) {
    .about .about-content h2 {
        font-size: 1.25rem;
    }
}

.about .about-content p {
    font-family: "Manrope", light;
    font-size: 1rem;
    margin: 0 0 40px 0;
    max-width: 880px;
}

.about .about-content .button {
    border: none;
    margin-top: 1em;
    color: #fff;
    background-color: #716d52;
}

.services {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #716d52;
    padding: 2rem 1rem;
}

.services .services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services .services-content h2 {
    font-family: "Baskerville", regular;
    font-size: 2.24rem;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.services .services-content .events {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem 1rem;
    justify-content: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

@media (max-width: 1180px) {
    .services .services-content .events {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 1.5rem 5vw;
        scroll-padding-inline-start: 5vw;
        margin: 0 -5vw;
        width: 100vw;
        box-sizing: border-box;
    }

    .services .services-content .events .event {
        flex: 0 0 85%;
        scroll-snap-align: start;
        max-width: 380px;
    }

    /* Hide scrollbars */
    .services .services-content .events {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    .services .services-content .events::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
}

.services .services-content .events .event {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 650px;
    height: auto;
}

.services .services-content .events .event img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.services .services-content .events .event span {
    margin-top: 1rem;
}

.cta {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

@media (max-width: 1261px) {
    .cta {
        flex-direction: column-reverse;
        padding-bottom: 2rem;
        height: 95vh;
    }
}

.cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 50%;
    gap: 1rem;
}

@media (max-width: 1261px) {
    .cta .cta-content {
        flex: 1;
        height: fit-content;
        padding: 2rem;
    }
}

.cta .cta-content h2 {
    color: #716d52;
    font-family: "Cinzel", regular;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.cta .cta-content q {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    text-align: center;
    quotes: "« " " »";
    max-width: 600px;
    margin-bottom: 1rem;
}

@media (max-width: 1261px) {
    .cta .cta-content q {
        font-size: 1.5rem;
    }
}

.cta .cta-content .button {
    color: #fff;
    background-color: #716d52;
}

.cta .cta-image {
    display: flex;
    flex: 0 0 50%;
    background-image: url("images/cta.jpg");
    background-size: cover;
    background-position: center;
}

@media (max-width: 1261px) {
    .cta .cta-image {
        flex: 3;
    }
}

.contact {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

.contact .contact-image {
    display: flex;
    flex: 0 0 50%;
    min-height: 300px;
    background-image: url("images/contact.jpg");
    background-size: cover;
    background-position: center;
}

.contact .contact-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
    background-color: #716d52;
    color: #fff;
}

.contact .contact-content .form-header {
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
}

.contact .contact-content h2 {
    font-family: "Baskerville", regular;
    font-size: 1.5rem;
    font-weight: 200;
}

.contact .contact-content p {
    font-family: "Manrope", regular;
    font-size: 1rem;
}

.contact .contact-content form {
    display: flex;
    flex-direction: column;
    font-family: "Manrope", regular;
    font-size: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1355px) {
    .contact .contact-content .form-header,
    .contact .contact-content form {
        width: 75%;
    }
}

.contact .contact-content form input {
    border: none;
    padding: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact .contact-content form textarea {
    border: none;
    padding: 1rem;
    margin-bottom: 1.25rem;
    min-height: 192px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact .contact-content form button {
    width: 100% !important;
    max-width: 100% !important;
}

.contact .contact-content form button:hover {
    background-color: #5e5b48;
}

@media (max-width: 1261px) {
    .contact {
        flex-direction: column;
    }

    .contact .contact-content {
        flex: 1;
        gap: 1rem;
    }

    .contact .contact-image {
        flex: 4;
        background-position: center bottom;
    }

    .form-header h2 {
        /*display: none;*/
    }
}

footer {
    display: flex;
    flex-direction: column;
    background-image: url("images/logo2.svg");
    /*background-size: auto;
    background-position: center;*/
    background-size: 50%;
    background-position: 50% 20%;
    background-repeat: no-repeat;
}

.footer-content {
    display: flex;
    /*align-items: flex-end;*/
    padding: 2rem 2rem 0 2rem;
    /*min-height: 420px;*/
}

.footer-menu {
    flex: 0 0 33%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.footer-menu span {
    font-family: "Baskerville", regular;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-menu ul {
    padding: 0px;
    list-style-type: none;
    /*margin-bottom: 15%;*/
}

.footer-menu ul li {
    font-family: "Manrope", regular;
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-menu ul li a {
    text-decoration: none;
    color: #000;
}

.footer-menu ul li a:hover {
    text-decoration: none;
    color: #007bff;
}

.footer-menu .footer-menu-legal {
    font-family: "Manrope", regular;
    font-size: 0.75rem;
}

.footer-menu .footer-menu-legal a {
    text-decoration: underline;
    color: #000;
}

.footer-logo {
    flex: 0 0 33%;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 420px;
}

.footer-logo img {
    height: 100%;
}

.footer-bottom {
    font-family: "Manrope", regular;
    font-size: 13px;
    text-align: center;
}

.footer-bottom a {
    text-decoration: underline;
    color: #000;
}

.footer-bottom a:hover {
    text-decoration: none;
    color: #007bff;
}

@media (min-width: 667px) {
    footer {
        background-size: contain;
        background-position: center;
    }

    .footer-content {
        min-height: 360px;
    }
}

@media (max-width: 1261px) {
    .footer-content {
        justify-content: space-between !important;
    }

    .footer-menu {
        flex: 1 !important;
    }

    .footer-logo {
        display: block !important;
        flex: 1 !important;
        justify-content: normal !important;
        align-items: normal !important;
        height: auto !important;
    }

    .footer-logo img {
        width: 17rem;
    }
}

/******************************************************************************
*
*   About page
*
***/

.about-landing {
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Set the height to 100vh, minus the height of the nav bar */
    height: calc(100vh - (84px + 16px));

    background-image: url("images/about-hero-bg.jpg");
    background-size: cover;
}

.about-landing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.8);
}

.about-landing-content h1 {
    font-family: "Cinzel", regular;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0;
}

.about-landing-content h2 {
    font-family: "Baskerville", regular;
    font-size: 2.5rem;
    font-weight: 100;
    text-transform: uppercase;
    margin: 0;
}

.about-landing-content p {
    font-family: "Manrope", light;
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 744px) {
    .about-landing {
        align-items: center;
    }

    .about-landing-content {
        width: fit-content;
    }
}

.about-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
}

.about-intro-content {
    display: flex;
}

.about-intro img {
    height: 420px;
    width: auto;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
}

.about-intro h3 {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    font-weight: 100;
    text-transform: uppercase;
}

.about-intro-content p {
    /*font-family: "Manrope", regular;*/
    font-family: "Open Sans", regular;
    font-size: 1rem;
}

.about-intro-content ul li {
    /*font-family: "Manrope", regular;*/
    font-family: "Open Sans", regular;
    font-size: 1rem;
    margin: 1rem 0;
}

.about-intro-content ul li:first-of-type {
    margin-top: 0;
}

@media (min-width: 1024px) {
    .about-intro {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }

    .about-intro img {
        height: 720px;
    }
}

.about-outro {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #716d52;
    color: white;
    padding: 4rem;
}

.about-outro h3 {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    font-weight: 100;
    text-transform: uppercase;
}

.about-outro .button {
    margin-top: 2rem;
}

.about-outro-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 750px;
}

.about-outro-content p {
    /*font-family: "Manrope", regular;*/
    font-family: "Open Sans", regular;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    max-width: 964px;
}

/******************************************************************************
*
*   Services page
*
***/

.services-landing {
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Set the height to 100vh, minus the height of the nav bar */
    height: calc(100vh - (84px + 16px));

    background-image: url("images/services-hero-bg.jpg");
    background-size: cover;
}

.services-landing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.8);
}

.services-landing-content h1 {
    font-family: "Cinzel", regular;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0;
}

.services-landing-content h2 {
    font-family: "Baskerville", regular;
    font-size: 2.5rem;
    font-weight: 100;
    text-transform: uppercase;
    margin: 0;
}

.services-landing-content p {
    font-family: "Manrope", light;
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 744px) {
    .services-landing {
        align-items: center;
    }

    .services-landing-content {
        width: fit-content;
    }
}

.services-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.services-details h3 {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    font-weight: 100;
    text-transform: uppercase;
}

.services-details img {
    width: auto;
    height: 420px;
    padding: 2rem;
    box-shadow:
        0 0 1rem rgba(0, 0, 0, 0.4),
        0 0 1.25rem rgba(0, 0, 0, 0.35);
}

.services-details ul li {
    /*font-family: "Manrope", regular;*/
    /*font-family: "Open Sans", regular;*/
    font-family: "Lato Light";
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.services-details ul li:last-of-type {
    margin-bottom: 0;
}

.services-details ul li span {
    font-weight: bold;
}

.services-details .button {
    border: none;
    margin-top: 1em;
    color: #fff;
    background-color: #716d52;
}

.services-details-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-details-content img {
    transform: rotate(-2deg);
}

.services-locations {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services-locations img {
    transform: rotate(1deg);
}

.services-pledge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #716d52;
    color: white;
}

.services-pledge h3 {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    font-weight: 100;
    text-transform: uppercase;
}

.services-pledge p {
    /*font-family: "Manrope", regular;*/
    /*font-family: "Open Sans", regular;*/
    font-family: "Lato Thin";
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.services-faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.services-faq h3 {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    font-weight: 100;
    text-transform: uppercase;
}

.services-faq details {
    font-family: "Manrope", regular;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 620px;
}

.services-faq a {
    font-family: "Manrope", regular;
    font-size: 1rem;
}

@media (min-width: 744px) {
    .services-details img {
        height: 520px;
    }

    .services-details-content {
        flex-direction: row;
        gap: 2rem;
        margin-left: 2rem;
    }

    .services-locations {
        flex-direction: row-reverse;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .services-pledge p {
        max-width: 830px;
    }

    .services-faq {
        max-width: fit-content;
        margin: 0 auto;
    }
}

/******************************************************************************
*
*   Contact page
*
**/

.contact-landing {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Set the height to 100vh, minus the height of the nav bar */
    height: calc(100vh - (84px + 16px));

    background-image: url("images/contact-landing-bg.jpg");
    background-size: cover;
}

.filter {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-color: #716d52;
    opacity: 0.7;
}

.contact-landing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 4rem;
    /*background: rgba(255, 255, 255, 0.8);*/
    color: white;
    z-index: 2;
}

.contact-landing-content h1 {
    font-family: "Cinzel", regular;
    font-size: 4rem;
    text-transform: uppercase;
    margin: 0;
}

.contact-landing-content p {
    font-family: "Manrope", light;
    font-size: 1.25rem;
    margin: 0;
}

@media (min-width: 744px) {
    .contact-landing {
        align-items: center;
    }

    .contact-landing-content {
        width: fit-content;
    }
}

.contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #716d52;
}

.contact-main h3 {
    font-family: "Baskerville", regular;
    font-size: 2rem;
    font-weight: 100;
    color: white;
}

.contact-main p {
    font-family: "Manrope", regular;
    font-size: 1rem;
    color: white;
    max-width: 600px;
}

.contact-main form {
    display: flex;
    flex-direction: column;
    font-family: "Manrope", regular;
    font-size: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
}

.contact-main form input {
    border: none;
    padding: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-main form textarea {
    border: none;
    padding: 1rem;
    margin-bottom: 1.25rem;
    min-height: 192px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-main form button {
    width: 100% !important;
    max-width: 100% !important;
}

.contact-main form button:hover {
    background-color: #5e5b48;
}

.page-not-found {
    font-family: "Baskerville", regular;
    font-size: 3rem;
    text-align: center;
    padding: 2rem;
}

/******************************************************************************
*
*   Portfolio Page
*
***/

.portfolio-landing {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Set the height to 100vh, minus the height of the nav bar */
    height: calc(100vh - (84px + 16px));

    background-image: url("images/portfolio-landing-bg.jpg");
    background-size: cover;
}

.filter {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-color: #716d52;
    opacity: 0.7;
}

.portfolio-landing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 4rem;
    /*background: rgba(255, 255, 255, 0.8);*/
    color: white;
    z-index: 2;
}

.portfolio-landing-content h1 {
    font-family: "Cinzel", regular;
    font-size: 4rem;
    text-transform: uppercase;
    margin: 0;
}

.portfolio-landing-content p {
    font-family: "Manrope", light;
    font-size: 1.25rem;
    margin: 0;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.portfolio-content h2 {
    font-family: "Baskerville", regular;
    font-size: 3rem;
    font-weight: 100 !important;
    border-bottom: 2px solid black;
    padding-bottom: 2rem;
    margin-bottom: 0px;
}
