/* Theme Name: mOre theme: Josiah Orange */


/*https://www.tipsandtricks-hq.com/query-or-show-a-specific-post-in-wordpress-php-code-example-44*/
/*https://developer.wordpress.org/themes/basics/template-hierarchy
/*/
/*https://developer.wordpress.org/themes/template-files-section/taxonomy-templates
/*/


@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Light.ttf');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
	src: url('fonts/OpenSans-Regular.ttf');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}


@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Bold.ttf');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Thin.ttf');
    font-style: normal;
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.ttf');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic.ttf');
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.ttf');
    font-style: normal; 
    font-weight: 500;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.ttf');
    font-style: normal; 
    font-weight: 700;
    font-display: swap;
}

p {
    font-weight:400;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: rgb(95, 95, 95);
}
body {
    font-family: Roboto;
	font-weight:400;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow:auto;
}
body h1 {
	font-weight:800px;
}
.container {
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
}
a:link {
    color: black;
    text-decoration: none;

}
a:visited {
    color: black;
    text-decoration: none;

}
.space {
    margin-top: 50px;
}
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    overflow:hidden;
}

hr{
    width:100%;
    border: 1px solid #ff677e;
}

.new-order{
    font-family: new-order, sans-serif;
}

.more-button{
    padding:10px 25px;
    border:none;
    color:#fff;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s; /* Adding transition */
    background-color: #fc4f31;
    border:1px solid #fc4f31;
}
.more-button:hover{
    background-color: #fff0;
    color:#fc4f31;
}

.section-seperator{
    width: 100%;
}
.section-seperator img{
    width: 100%;
    margin-top: -1px;
    height:100%;
}
.flipped{
    transform: scaleX(-1);
}
.vertical-flipped{
    transform: scaleY(-1);
}
.title-with-logo{
    text-align: center;
    margin: 20px 0px;
}
.title-with-logo b{
    font-size: 3rem;
}

.image-stripe{
    border-bottom:15px solid transparent;
    border-radius: 10px;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #fc4f31, #ff8873) border-box;
}

.image-stripe img{
    border-radius: 10px 10px 0px 0px;
}
.flex-space{
    width: 10%;
}

/*Growing*/
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

/*Animate In https://webmarcello.co.uk/blog/animate-and-slide-in-html-elements-from-any-direction-in-css-and-javascript/*/
.js-animate-element {
    opacity: 0;

    &.bottom-animation{
        transform: translateY(150px);
    }

    &.top-animation{
        transform: translateY(-150px);
    }

    &.right-animation{
        transform: translateX(150px);
    }

    &.left-animation{
        transform: translateX(-150px);
    }

    &.insight {
        transform: translateY(0) translateX(0);
        opacity: 1;
        transition: 1s all ease;
    }
}


@media (max-width: 1333px) {
    .archive-grid-item {
        max-width: 300px;
   }
}
@media (max-width: 1200px) {
    .archive-grid-item {
        max-width: 250px;
   }
}
@media (max-width: 850px) {
    .archive-grid-item {
        max-width: 600px;
   }
}

@media (max-width:950px){
   
}