@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

:root {
    --white-color: #fff;
    --lightGrey-color: #f7f7f7;
    --grey-color: #777;
    --darkGrey-color: #292928;
    --black-color: #000;

    --gold-color: #ff7f50;
    /* --gold-color: #ffb93a; */
    --red-color: #f44336;
    --coral-opacity-color: rgba(255, 127, 80, 0.726);
    --gold-opacity-color: rgba(255, 127, 80, 0.534);

    --red-light-color: #fff3f3;
}

::selection {
    background: var(--gold-color);
}

* {
    margin: 0;
    padding: 0;

    font-family: "Open Sans", sans;
}

body {
    background-color: var(--lightGrey-color);
}

/* Header */
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(1, 14, 65, 0.7), rgba(1, 14, 65, 0.7)),
        url(assets/photos/mainBackground.webp);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 300px;
    height: auto;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.nav-links ul li::after {
    content: " ";
    width: 0%;
    height: 2px;
    background: var(--gold-color);
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 96px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 26px;
    color: var(--white-color);
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 20px 42px;
    font-size: 18px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-weight: bold;
}

.hero-btn:hover {
    background: var(--gold-color);
    border: 1px solid var(--gold-color);
    transition: 1s ease;
}

nav .fa {
    display: none;
}

@media(max-width: 700px) {
    .text-box h1 {
        font-size: 26px;
    }

    .text-box p {
        font-size: 20px;
    }

    .hero-btn {
        font-size: 15px;
    }

    nav img {
        width: 150px;
        height: auto;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links ul li a {
        color: var(--darkGrey-color);
    }

    .nav-links {
        position: fixed;
        background: var(--gold-color);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    .nav-links ul {
        padding: 30px;
    }

    nav .fa {
        display: block;
        color: var(--white-color);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    nav .fa-times {
        color: var(--darkGrey-color);
    }
}

/* Offers */
.offers-s {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 1em;
}

h1 {
    font-size: 36px;
    font-weight: 400;
    font-family: "DM Serif Display", sans-serif;
}

h2 {
    font-weight: 300;
    font-family: "DM Serif Display", sans-serif;
}

p {
    color: var(--grey-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 2em;
    display: flex;
    justify-content: space-between;
}

.offers-s-col {
    flex-basis: 48%;
    background: var(--coral-opacity-color);
    border-radius: 10px;
    margin-bottom: 2em;
    padding: 3em 1em;
    box-sizing: border-box;
    transition: 0.5s;

    display: flex;
    justify-content: space-between;
}

.offer-special {
    flex-basis: 98% !important;
}

.offers-s-col img {
    width: 50%;
    /* height: auto; */
    flex-basis: 48%;
    border-radius: 10px;
    object-fit: cover;
}

.offers-s-col div {
    flex-basis: 48%;
    text-align: center;
}

.offers-s-col div h3 {
    padding: 5%;
}

.offers-s-col div p {
    font-weight: 600;
    color: var(--darkGrey-color);
    padding: 5%;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.offers-s-col:hover {
    box-shadow: 0 0 20px 0 rgba(255, 127, 80, 0.2);
}

@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }

    .offers-s-col {
        flex-direction: column;
    }

    .passes-col{
        flex-direction: column;
    }

    .offers-s-col img {
        width: 100%;
        border-radius: 10px;
    }

    .passes-col img {
        width: 100%;
        border-radius: 10px; 
    }
}

/* Passes */

.passes{
    width: 80%;
    margin: auto;
    text-align: center;
}

.passes h1{
padding: 1em 0 1em 0;
}

.passes-col{
    flex-basis: 30%;
    text-align: center;
    background: var(--coral-opacity-color);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.passes-col img {
    margin-top: 2em;
    width: 40%;
    flex-basis: 80%;
    border-radius: 10px;
    object-fit: cover;
}

.passes-col h3 {
    padding-top: 1em;
}

.passes-col p {
    font-weight: 700;
    color: var(--darkGrey-color);
    padding-bottom: 1em;
}

/* Horses */
.horses {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.horses h1 {
    color: var(--darkGrey-color);
}

.horses-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.horses-col img {
    width: 100%;
    display: block;
}

.horses-sp-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    overflow: hidden;
}

.horses-sp-col img {
    width: 100%;
    border-radius: 10px;
}

.horses-sp-col p {
    padding: 0;
}

.horses-sp-col h3 {
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover {
    background: var(--gold-opacity-color);
}

.layer h3 {
    width: 100%;
    font-weight: 600;
    color: var(--darkGrey-color);
    font-size: 31px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer p {
    width: 100%;
    font-weight: 400;
    color: var(--darkGrey-color);
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer p a {
    color: var(--darkGrey-color);
    text-decoration: none;
    border-bottom: 1px solid var(--darkGrey-color);
    border: 1px solid var(--darkGrey-color);
    padding: 10px 15px;
    transition: 0.3s ease;
}

.layer p a:hover {
    padding: 15px 20px;
}

.layer:hover h3 {
    bottom: 50%;
    opacity: 1;
}

.layer:hover p {
    bottom: 40%;
    opacity: 1;
}

/* Horses Gallery */
.horses-gallery {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.horses-gallery-col {
    flex-basis: 48%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    height: 50vh;
}

.horses-gallery-col img {
    height: 100%;
    border-radius: 10px;
}

.horses-gallery-col h1 {
    text-align: left;
}

.horses-gallery-col p {
    text-align: left;
}

@media(max-width:700px) {

    .horses-gallery-col img {
        height: auto;
        width: 100%;
    }

    .first-box {
        order: 1;
    }

    .second-box {
        order: 2;
    }
}

/* Offers */
.offers {
    width: 80%;
    margin: auto;
    padding-top: 50px;
    text-align: center;
}

.offers h1 {
    color: var(--darkGrey-color);
}

.offers-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    transition: 0.5s ease;
}

.offers-col:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.like-hover {
    box-shadow: 0 0 30px 0 rgba(255, 127, 80, 0.39);
}

.offers-col img {
    width: 100%;
    border-radius: 10px;
}

.offers-col p {
    padding: 0;
    margin-bottom: 5%;
}

.offers-col p a {
    text-decoration: none;
    color: var(--grey-color);
    transition: 0.3s ease;
}

.offers-col p a:hover {
    text-decoration: none;
    color: var(--darkGrey-color);
}

.offers-col h3 {
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    width: 100%;
    margin: auto;
    /* padding-top: 50px; */
    text-align: center;

    background-image: linear-gradient(rgba(1, 14, 65, 0.7), rgba(1, 14, 65, 0.7)),
        url(assets/photos/kliencifullHD.webp);
    background-position: center;
    background-size: cover;
    position: relative;
}

.testimonials h1 {
    padding-top: 1em;
    color: var(--white-color);
}

.testimonial-col {
    flex-basis: 47%;
    border-radius: 10px;
    margin: 0 1em 1em 1em;
    text-align: left;
    background: var(--red-light-color);
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.testimonial-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.testimonial-col p {
    padding: 1em 0 0 0;
}

.testimonial-col h3 {
    text-align: left;
}

.testimonial-col .fa {
    color: var(--gold-color);
}

@media(max-width: 700px) {

    .offers-col{
        box-shadow: 0 0 20px 0 rgba(128, 128, 128, 0.2);
        margin: 0 0 10% 0;
    }

    .testimonial-col{
        margin: 0 5% 10% 5%;
    }

    .testimonial-col img {
        margin-left: 0px;
        margin-right: 15px;
    }

    .testimonials h1 {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .offers h1 {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .horses h1 {
        font-size: 24px;
        margin-bottom: 50px;
    }
}

/* Call To Action */
.cta {
    margin: 1em auto;
    width: 100%;
    background-image: linear-gradient(120deg, rgba(1, 14, 65, 0.7), rgba(1, 14, 65, 0.7)),
        url(assets/photos/tlo1.webp);
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
}

.cta h1, h2 {
    color: var(--white-color);
    padding: 0;
}

.cta a{
    margin-top: 2em;
}

@media(max-width: 700px) {
    .cta h1 {
        font-size: 20px;
    }

    .cta h2 {
        font-size: 15px;
    }
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 0 0 50px 0;
    /* background-color: #292928; */
}

.icons .fa {
    color: var(--gold-color);
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

/* --- FARM PAGE --- */
.sub-header {
    height: 40vh;
    width: 100%;
    background-image: linear-gradient(rgba(1, 14, 65, 0.7),
    rgba(1, 14, 65, 0.7)),
        url(assets/photos/tlo1.webp);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: var(--white-color);
}

.sub-header h1 {
    margin-top: 25px;
    font-size: 64px;
    text-transform: capitalize;
}

.farm {
    width: 80%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.farm-col {
    flex-basis: 45%;
    padding: 30px 2px;
}

.farm-col img {
    width: 100%;
    border-radius: 10px;
}

.farm-col h1 {
    padding-top: 0;
}

.farm-col p {
    padding: 15px 0 25px;
}

.red-btn {
    border-color: 1px solid var(--red-color);
    background: transparent;
    color: var(--red-color);
}

.gold-btn {
    border-color: 1px solid var(--gold-color);
    background: transparent;
    color: var(--gold-color);
}

.dark-btn {
    border-color: 1px solid var(--darkGrey-color);
    color: var(--darkGrey-color);
    background: transparent;
}

.red-btn:hover {
    color: var(--white-color);
}

.dark-btn:hover {
    color: var(--white-color);
}

.gold-btn:hover {
    color: var(--white-color);
}

@media(max-width: 700px) {
    .sub-header h1 {
        margin-top: 80px;
        font-size: 20px;
    }

    .farm-col {
        text-align: center;
    }
}

/* Blog */
.blog-content {
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.blog-left {
    flex-basis: 65%;
}

.blog-left img {
    width: 100%;
}

.blog-left h2 {
    color: var(--darkGrey-color);
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p {
    color: var(--grey-color);
    padding: 0;
}

.blog-right {
    flex-basis: 32%;
}

.blog-right h3 {
    background-color: var(--red-color);
    color: var(--white-color);
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--grey-color);
    padding: 8px;
    box-sizing: border-box;
}

.comment-box {
    border: 1px solid var(--grey-color);
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-box h3 {
    text-align: left;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}

.comment-form button {
    margin: 10px 0;
}

@media(max-width:700px) {
    .sub-header h1 {
        font-size: 24px;
    }
}

/* Contact */
.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 32%;
    margin: 30px 0;
    text-align: center;
}

.contact-map {
    width: 100%;
    flex-basis: 64% !important;
    border: 1px solid var(--grey-color) !important;
    border-radius: 10px !important;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col .fa {

    font-size: 24px;
    background-color: var(--gold-color);
    color: var(--white-color);
    padding: 4%;
    border-radius: 50px;
    margin: 10px;
}

.contact-col img{
    width: 100%;

    padding-top: 20%;
}

.contact-col div p {
    padding: 0;
}

.contact-col h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input,
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid var(--grey-color);
    box-sizing: border-box;
}

/* Gallery */
.gallery {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 2%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: sans-serif;
}

.grid-container {
    columns: 5 200px;
    column-gap: 1.5rem;
    width: 80%;
    margin: 0 auto;
}

.grid-container div {
    width: 150px;
    margin: 0 1.5rem 1.5rem 0;
    display: inline-block;
    width: 100%;
    /* border: solid 1px var(--darkGrey-color); */
    /* padding: 5px; */
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); */
    border-radius: 5px;
    /* transition: all .25s ease-in-out; */
}

.grid-container div img {
    width: 100%;
    border-radius: 5px;
    /* transition: all .25s ease-in-out; */
}

.grid-container div p {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-style: italic;
}

/* .grid-container div:hover {
    border-color: coral;
} */