/* Website template by freewebsitetemplates.com */
html {
    font-family: 'Trebuchet MS', sans-serif, Arial, Helvitica;
}

body {
    background-color: #fff996;
    margin: 0;
    padding-top: 19px;
}

/**********************************************************/
.olcards,
.olcards * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.olcards {
    list-style: none;
    counter-reset: cardCount;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    --cardsGap: 1rem;
    gap: var(--cardsGap);
    padding-bottom: var(--cardsGap);
}

    .olcards li {
        counter-increment: cardCount;
        display: flex;
        color: white;
        --labelOffset: 1rem;
        --arrowClipSize: 1.5rem;
        margin-top: var(--labelOffset);
    }

        .olcards li::before {
            content: counter(cardCount, decimal-leading-zero);
            background: white;
            color: var(--cardColor);
            font-size: 2em;
            font-weight: 700;
            transform: translateY(calc(-1 * var(--labelOffset)));
            margin-right: calc(-1 * var(--labelOffset));
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-inline: 0.5em;
        }

        .olcards li .content {
            background-color: var(--cardColor);
            --inlinePadding: 1em;
            --boxPadding: 0.5em;
            display: grid;
            padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize)) var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
            grid-template-areas:
                "icon title"
                "icon text";
            gap: 0.25em 1em;
            clip-path: polygon( 0 0, calc(100% - var(--arrowClipSize)) 0, 100% 50%, calc(100% - var(--arrowClipSize)) 100%, calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)), 0 calc(100% + var(--cardsGap)) );
            position: relative;
        }

            .olcards li .content::before {
                content: "";
                position: absolute;
                width: var(--labelOffset);
                height: var(--labelOffset);
                background: var(--cardColor);
                left: 0;
                bottom: 0;
                clip-path: polygon(0 0, 100% 0, 0 100%);
                filter: brightness(0.75);
            }

            .olcards li .content::after {
                content: "";
                position: absolute;
                height: var(--cardsGap);
                width: var(--cardsGap);
                background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
                left: 0;
                top: 100%;
            }

        .olcards li .icon {
            grid-area: icon;
            align-self: center;
            font-size: 2em;
        }

        .olcards li .content .title {
            grid-area: title;
            font-size: 1.25em;
            /* font-weight: 700; */
        }

        .olcards li .content .text {
            grid-area: text;
        }
/**********************************************************/

#background {
    background: url(../images/bg-body.jpg) repeat;
    min-height: 1440px;
    border-top: 1px solid #cc9f0f;
}

#page {
    width: 960px;
    margin: 0 auto;
}

@font-face {
    font-family: 'CorbenBold';
    src: url('../css/fonts/corben-bold-webfont.eot');
    src: local('?'), url('../css/fonts/corben-bold-webfont.woff') format('woff'), url('../css/fonts/corben-bold-webfont.ttf') format('truetype'), url('../css/fonts/corben-bold-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

img {
    border: 0;
}

.container {
    font-weight: 800;
    justify-content: center;
    margin-top: 45px;
}

#connect .facebook, #connect .twitter, #connect .vimeo {
    background: url(../images/icons.gif) no-repeat;
}

/*------------------------------ HEADER ------------------------------*/
#header {
    background: url(../images/bg-header.jpg) no-repeat center top;
    min-height: 340px;
    margin-bottom: 20px;
}

#connect {
    float: left;
    display: inline-block;
    height: 30px;
    width: 300px;
    margin: 15px 0 15px 10px;
}

    #connect a {
        display: inline-block;
        height: 30px;
        margin: 0 10px;
        padding: 0;
    }

    #connect .facebook {
        background-position: 0 2px;
        width: 27px;
    }

    #connect .twitter {
        background-position: 0 -36px;
        width: 36px;
    }

    #connect .vimeo {
        background-position: 0 -74px;
        width: 32px;
    }

#infos {
    float: right;
    color: #635320;
    display: inline-block;
    height: 30px;
    width: 200px;
    margin: 15px 0;
}

    #infos a {
        color: #635320;
        font-family: Arial;
        font-size: 14px;
        line-height: 30px;
        margin: 0 5px;
        text-decoration: none;
    }

/** Logo **/
#logo {
    clear: both;
    display: block;
    height: 217px;
    width: 950px;
    margin: 0 auto;
}

/** Navigation **/
#navigation {
    height: 40px;
    list-style-type: none;
    margin: 0;
    padding: 8px 20px 12px 0;
    color: black;
}

    #navigation li {
        float: left;
        font-family: 'CorbenBold';
        font-size: 22px;
        font-weight: bold;
        line-height: 40px;
        width: 186px;
        text-align: center;
    }

    #navigation a {
        color: black;
    }

        #navigation a:hover, #navigation li.selected a {
            color: #f9f9f5;
            text-shadow: 1px 1px 0 #a8840b;
        }

/*------------------------------ CONTENTS ------------------------------*/
#contents {
    margin: 0 0 40px;
    padding: 0 5px;
}

#main {
    /*background: url(../images/border-dashed.jpg) repeat-x left bottom;*/
    margin: 0 0 30px;
    padding: 0 0 30px;
}

    #main p {
        color: #755a0b;
        font-size: 14px;
        line-height: 20px;
        margin: 0;
        padding: 0 0 20px;
    }

        #main p a {
            color: #755a0b;
        }

    #main address {
        color: #ffffff;
        font-style: normal;
        width: 350px;
        margin: 0 auto;
        text-align: center;
    }

        #main address span {
            color: #9d7912;
            display: block;
            font-family: 'CorbenBold';
            font-size: 18px;
            line-height: 20px;
            margin: 20px 0;
            width: 350px;
        }

#adbox {
    /*background: #ffffff url(../images/bottom-shadow-headliner.jpg) no-repeat center bottom;*/
    height: 371px;
    width: 875px;
    margin: 0 auto;
    padding: 7px 7px 22px;
    position: relative;
    border-width: 4px;
    border-color: #0026ff;
}

    #adbox img {
        height: 356px;
        width: 862px;
        margin: auto;
    }

.task {
    padding-left: 10px;
}

    .task p {
        position: relative;
        top: -5px;
    }

        .task p::before {
            content: '';
            position: absolute;
            background: #222;
            width: 5px;
            height: 5px;
            left: -13px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
        }

.listing {
    margin-bottom: 10px;
}

#featured {
    background: url(../images/border-dashed.jpg) repeat-x left bottom;
    padding: 0 0 42px;
    position: relative;
}

    #featured ul {
        display: inline-block;
        text-align: center;
        list-style-type: none;
        margin: 0 auto;
        padding: 0;
    }

        #featured ul li {
            float: left;
            font-weight: 800;
            background: #ffffff url(../images/bottom-shadow-img.jpg) no-repeat center bottom;
            text-align: left;
            height: 150px;
            width: 204px;
            margin-right: 128px;
            padding: 6px 6px 15px;
            border-color: black;
        }

            #featured ul li.last {
                margin-right: 0;
            }

            #featured ul li img {
                border: 1px solid #e4e0d1;
            }

    #featured a.button {
        background: url(../images/bg-button.jpg) no-repeat;
        color: #8e7217;
        display: block;
        font-family: 'CorbenBold';
        font-size: 28px;
        font-weight: 800;
        height: 30px;
        line-height: 30px;
        width: 144px;
        padding: 4px 0 6px;
        text-align: center;
        text-decoration: none;
        position: absolute;
        bottom: -20px;
        left: 403px;
    }

/*------------------------------ Blog Page ------------------------------*/
#blogs {
    background: url(../images/border-dashed.jpg) repeat-x left bottom;
    padding: 0 0 20px;
    position: relative;
}

    #blogs div {
        background: url(../images/border-dashed.jpg) repeat-x left bottom;
        display: inline-block;
        margin: 0 0 20px;
        padding: 0 0 20px;
    }

        #blogs div.last {
            background: none;
            margin: 0;
        }

    #blogs span {
        float: left;
        background: #ffffff url(../images/bottom-shadow-img.jpg) no-repeat center bottom;
        display: block;
        height: 253px;
        width: 204px;
        margin-bottom: 6px;
        margin-right: 40px;
        padding: 6px 6px 15px;
    }

        #blogs span img {
            border: 1px solid #e4e0d1;
        }

    #blogs h3 {
        background: url(../images/border-dashed.jpg) repeat-x left bottom;
        line-height: 30px;
        margin: 0 0 20px 258px;
        padding: 0 0 10px;
    }

    #blogs p {
        color: #755a0b;
        max-height: 160px;
        line-height: 20px;
        margin: 0 0 20px 258px;
        padding: 0 0 20px;
        overflow: hidden;
    }

        #blogs p a {
            color: #755a0b;
        }

    #blogs a.more {
        color: #000000;
        font-style: italic;
        text-decoration: none;
    }

    #blogs div.buttons, #blogs div.blog-entry-buttons {
        background: none;
        display: inline-block;
        width: 328px;
        margin: 0;
        padding: 0;
        position: absolute;
        bottom: -20px;
        left: 311px;
    }

        #blogs div.buttons a, #blogs div.blog-entry-buttons a {
            float: left;
            background: url(../images/bg-button.jpg) no-repeat;
            color: #8e7217;
            display: block;
            font-family: 'CorbenBold';
            font-size: 18px;
            height: 30px;
            line-height: 30px;
            width: 144px;
            margin-right: 20px;
            padding: 4px 0 6px;
            text-align: center;
            text-decoration: none;
        }

    #blogs div.blog-entry-buttons {
        width: 690px;
        left: 258px;
    }

        #blogs div.blog-entry-buttons a.back {
            float: right;
            font-size: 16px;
            margin-right: 0;
        }

/*------------------------------ Shop Page ------------------------------*/
#shop {
    background: url(../images/border-dashed.jpg) repeat-x left bottom;
    padding: 0 0 20px;
    position: relative;
}

    #shop ul.items {
        display: inline-block;
        list-style-type: none;
        margin: 0 auto 16px;
        padding: 0;
    }

        #shop ul.items li {
            float: left;
            color: #8f6f05;
            height: 340px;
            width: 216px;
            margin-bottom: 20px;
            margin-right: 28px;
        }

            #shop ul.items li span {
                background: #ffffff url(../images/bottom-shadow-img.jpg) no-repeat center bottom;
                display: block;
                height: 253px;
                width: 204px;
                margin-bottom: 10px;
                padding: 6px 6px 14px;
            }

                #shop ul.items li span img {
                    border: 1px solid #e4e0d1;
                }

                #shop ul.items li span.price {
                    float: right;
                    background: none;
                    color: #ffffff;
                    display: inine-block;
                    font-size: 17px;
                    height: 20px;
                    line-height: 20px;
                    width: 80px;
                    margin: 0;
                    padding: 0;
                    text-align: right;
                }

            #shop ul.items li a.buy {
                background-color: #fff36b;
                color: #8f6f05;
                display: block;
                font-family: 'CorbenBold';
                font-size: 14px;
                height: 20px;
                line-height: 20px;
                width: 80px;
                border-radius: 3px;
                margin: 13px auto 0;
                padding: 1px 0 4px;
                text-align: center;
                text-decoration: none;
            }

            #shop ul.items li.last {
                margin-right: 0;
            }

/*------------------------------ FOOTER ------------------------------*/
#footer {
    padding: 0 5px;
}

#description {
    background: url(../images/border-dashed.jpg) repeat-x left bottom;
    margin: 0 0 30px;
    padding: 0 0 30px;
}

    #description div {
        float: left;
        width: 180px;
        margin-right: 50px;
    }

        #description div a.logo {
            background: url(../images/logo-footer.gif) no-repeat;
            display: block;
            height: 30px;
            width: 175px;
            margin: 0 0 10px;
        }

        #description div span {
            color: #9d7912;
            display: block;
            font-size: 11px;
            line-height: 20px;
        }

            #description div span a {
                color: #9d7912;
                text-decoration: none;
            }

    #description p {
        color: #9d7912;
        font-size: 13px;
        line-height: 20px;
        margin: 20px 0;
        text-align: justify;
    }

        #description p a {
            color: #9d7912;
        }

#footer div.navigation {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    width: 400px;
    margin: 0 auto 20px;
    text-shadow: 0 1px 0 #af9e31;
}

    #footer div.navigation a {
        color: #ffffff;
        padding: 0 15px;
        text-decoration: none;
        text-shadow: 1px 1px 0 #af9e31;
    }

        #footer div.navigation a:hover {
            color: #9d7912;
        }

/*------------------------------ For IE6 ------------------------------*/
#background {
    _height: 1440px;
}

#featured a.button {
    _top: 299px;
}

#blogs {
    _height: 620px;
}

    #blogs div.buttons, #blogs div.blog-entry-buttons {
        _top: 620px;
    }

.feedback-form {
    max-width: 400px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.rating {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row-reverse; /* this is the magic */
    justify-content: flex-end;
}

    .rating input {
        display: none;
    }

    .rating label {
        font-size: 24px;
        cursor: pointer;
    }

        .rating label:hover,
        .rating label:hover ~ label { /* reason why the stars are in reverse order in the html */
            color: green;
        }

    .rating input:checked ~ label {
        color: green;
    }

.comment {
    margin-bottom: 20px;
}

.ordernumber {
    margin-bottom: 20px;
}

.comment textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.submit-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
