@first: #012e35;
@second: #7f947e;
body{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
}
a{ 
    color: inherit; text-decoration: none; 
    &:hover{border-bottom: 1px dotted @second; }
}
.nextpage, .prevpage, .info-paginator, .limit-paginator{display:inline-block; color: @first;}
header{
    font-family: 'BioRhyme';
    text-transform: uppercase;
    background: @first;
    text-align: center;
    position: fixed;      
    z-index: 3;
    width: 100%;
    border-bottom: 1px solid white;

    h1 {
        font-size: 4.9em;
        color: @first;
        font-weight: 800;
        margin: 0; padding: 34px 0;

        line-height: 0.75em;

        text-shadow:
        -1px -1px 0 @second,  
        1px -1px 0 @second,
        -1px 1px 0 @second,
        1px 1px 0 @second;

        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: @second;
    }

    #mobileNav{ display: none; }

    nav{
        display: block;
        padding-bottom: 27px;
        ul{
            padding: 0; margin: 0;
            list-style-type: none;
            li{
                display: inline-block;
                padding: 0 24px;
                border-right: 1px solid @second;
                &:last-child{
                    border: 0;
                }

                a{
                    color: @second;
                    text-decoration: none;
                    &:hover{
                        color: white;
                    }
                }
            }
        }
    }
}
main{

    div.scroller{
        cursor: pointer;
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        background: #000000;
        padding: 10px;
        box-sizing: border-box;
        font-weight: 800;
        z-index: 10;
    }

    section{
        h1{
            font-family: 'BioRhyme';
            text-transform: uppercase;
            font-size: 4.75em;
            line-height: 1.25em;
            text-align: center;
            margin: 0;
            color: @second;
        }

        &#home{
            display: flex;
            align-items: flex-end;
            flex-direction: column;
            justify-content: flex-end;
            height: 100vh;
            background: black;
            //background-image: url(/images/danny-home-image.jpg);
            background-repeat: no-repeat;
            background-position: center 100px;
            background-size: cover;
            color: white;

            position: relative;

            div.content {
                width: 600px;
                position: absolute;
                left: 50%; bottom: 10%;
                line-height: 1.75em;
                padding: 20px;
                box-sizing: border-box;
                background: rgba(0,0,0,0.85);

                h1 {
                    color: white;
                    text-align: left;
                }
            }
            #slider {
                width: 100%;
                div{
                    height: 100%;
                    width: 100%;
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: center;
                }
            }
            #containerArrows {
                width: auto;
                height: 100%;
                position: absolute;
                top: 0;
                z-index: 2;
                display: flex;
                align-items: center;
                justify-content: flex-end;
                ul {
                    list-style-type: none;
                    margin: 0 10px 0 0;
                    padding: 0;
                    li {
                        opacity: 0.5;
                        transition: 0.3s;
                        margin: 0;
                        padding: 10px;
                        line-height: 1;
                        button {
                            color: #ffffff;
                            background: #ffffff;
                            outline: none;
                            border: none;
                            border-radius: 50%;
                            line-height: 0;
                            font-size: 0;
                            padding: 8px;
                            vertical-align: middle;
                        }
                    }
                    li.slick-active {
                        opacity: 1;
                    }
                }
            }
        }
        &#news {
            background-image: url(/images/welcome.jpg);
            background-size: auto;
            background-position: -165px top;
            position: relative;
            background-repeat: no-repeat;
            background-color: #000;
            display: flex;
            min-height: 700px;
            justify-content: flex-end;

            .content {
                display: flex;
                flex-direction: column;
                color: white;
                width: 65%;
                padding: 0 20px 20px;
                box-sizing: border-box;
                height: 100%;
                background: rgba(0,0,0,0.8);
            }
            
            input[type=checkbox]{
                display: none;
            }

            .news-expand {
                opacity:0;
                height: 0;
                padding: 0 8px;
                overflow: hidden;
                transition: all .3s ease .15s;
            }

            input[type=checkbox] + .btn-readmore > label:after {
                content: "READ MORE";
                color: #ffffff;
            }

            input[type=checkbox]:checked + .btn-readmore > label:after {
                content: "READ LESS";
                color: #ffffff;
            }

            input[type=checkbox]:checked ~ .news-expand {
                opacity:1;
                height: auto;
                padding: 8px;   
            }
            .bar {
                margin-top: 50px;
                padding-right: 20px;
                display: flex;
                flex-direction: column;
            }
            .title {
                font-size: 2.5em;
                p {
                    margin: 0;
                    font-family: 'BioRhyme';
                }
            }
            .created {
                font-family: 'BioRhyme';
                font-size: 1em;
                color: #FFF;
                display: flex;
                p {
                    margin: 0.5em 0;
                    font-family: 'Open Sans';
                }
            }
            .name {
                p {
                    margin: 0.5em 0;
                }
            }
            .details {
                display: flex;
                width: 100%;
                justify-content: flex-end;
                flex-direction: column;

            .btn-readmore {
                text-align: right;
                label {
                    font-family: 'BioRhyme';
                    font-weight: bold;
                    font-size: 1em;
                    cursor: pointer;
                }
                label:hover {
                    border-bottom: 1px dotted #7f947e;
                }
            }
            }
        }
        &#bio {
            background: white;
            border: 3px solid white;
            border-left: 0;
            border-right: 0;

            background-image: url(/images/welcome.jpg);
            background-size: cover;
            background-position: -300px center;
            position: relative;
            background-repeat: no-repeat;
            background-color: black;

            div.image{
                display: inline-block;
                vertical-align: top;
                width: 30%;
                float: left;
                img{
                    width: 100%;
                    height: auto;

                }
            }
            div.content{
                display: inline-block;
                color: white;
                vertical-align: top;
                float: right;
                width: 60%;
                padding: 0 20px 20px;
                box-sizing: border-box;
                height: 100%;
                background: rgba(0,0,0,0.8);

                h1 {
                    color: white;
                    text-align: left;
                }
                div.editorContent{
                    font-size: 0.8em;
                }
            }
        }
        &#gallery{
            padding: 40px 0;
            min-height: 457px;
            background: @first;
            color: white;

            h1{
                color: white;
            }

            div.content{
                width: 1153px;
                margin: auto;
            }

            div#buttons{
                text-align: center;
                font-family: 'BioRhyme';
                text-transform: uppercase;
                padding: 10px 0;

                a {
                    background: @second;
                    padding: 3px 10px;
                    border: 1px solid @second;
                    display: inline-block;
                    &:hover{
                        border: 1px solid @second;
                        background: @first;
                    }
                }
            }


            #galleries{
                padding: 10px 0;

                div.gallery{
                    display: inline-block;
                    width: 270px; height: 270px;
                    margin: 7px 7px;
                    a{
                        display: block;
                        width: 100%;
                        height: 100%;
                        position: relative;
                        background-attachment: initial;
                        background-clip: border-box;
                        background-origin: border-box;
                        background-position: center center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        &:hover{ border: 0; }

                        span.title {
                            position: absolute; bottom: 0; left: 0;
                            background: rgba(127, 148, 126, 0.85);
                            display: block; width: 100%;
                            padding: 10px; color: white;
                            text-transform: uppercase;
                            font-size: 1em;
                            box-sizing: border-box;
                        }
                    }
                }
            }

            #videos{
                .video-item{
                    display: inline-block;
                    margin: 7px 7px;
                }
            }
        }

        &#gigs{
            min-height: 660px;
            background: white;

            h1 {
                padding: 35px 0;
            }
            
            div.location {
                .data {
                    color: #000000;
                }
            }

            div.title {
                span {
                    padding-right: 10px;
                }
            }

            div.content{
                width: 1153px;
                margin: auto;
                padding: 20px 0;

                div.event{
                    div.bar{
                        background: white;
                        border: 1px solid #eeeeee;
                        div{
                            display: inline-block;
                            text-transform: uppercase;
                            &.date{
                                font-weight: bold;
                                font-family: 'BioRhyme';
                                color: @first;
                                font-size: 2.5em;
                                vertical-align: middle;
                                padding: 0 20px;
                                min-width: 170px;
                            }
                            &.title{
                                color: @second;
                                vertical-align: middle;
                                padding: 0 25px;
                                font-size: 1.65em;
                                line-height: 1em;
                                span{ font-size: 0.6em; vertical-align: middle; margin: 0; display: inline; }
                            }
                            &.details{
                                float: right;
                                padding: 13px 20px;
                                font-size: 1.65em;
                                vertical-align: middle;
                                a { }
                            }
                        }
                    }
                    .info{
                        width: 100%;
                        box-sizing: border-box;
                        display: none;
                        clear: both;
                        padding: 20px;
                        border: 1px solid #eeeeee;
                        border-top: 0;

                        div.desc{
                            padding: 10px;
                        }
                    }

                    span{
                        display: inline-block;
                        margin-bottom: 15px;

                        &.lbl{
                            font-weight: bold;
                            min-width: 150px;
                        }
                        &.data{
                            text-align: left;                            
                        }
                    }

                    &:nth-of-type(odd){
                        div.bar{ background: #eeeeee; }
                    }
                }
            }
        }
        &#gear{
            min-height: 916px;                          
            background: black;
            background-image: url(/images/gear.jpg);
            background-repeat: no-repeat;
            background-position: center left;
            background-size: cover;

            div.content {
                width: 1153px;
                margin: auto;
                color: white;
                h1 { 
                    color: white; 
                    padding: 40px 0;
                }
                div.editorContent{
                    width: 85%;
                    margin: auto;
                }

                ul {
                    margin: 0; padding: 0;
                    list-style-type: none;
                    li {
                        display: inline-block;
                        margin: 10px 13px;
                        position: relative;

                        img{ display:block; }

                        div.description{
                            width: 100%;
                            height: 100%;
                            position: absolute;
                            top: 0; left: 0;
                            z-index: 3;
                            background: rgba(1, 46, 53, 0.85);

                            visibility: hidden;

                            padding: 7px;
                            box-sizing: border-box;
                        }
                        &:hover{
                            div.description{
                                visibility: visible;
                            }
                        }
                    }
                }
            }
        }
        &#soundclips{
            min-height: 807px;
            h1{
                padding: 23px 0;
            }
            div.content{
                width: 1153px;
                margin: auto;
                color: #363636;

                div.clips{
                    width: 85%;
                    margin: auto;
                    padding: 70px 0;

                    div.clip{
                        padding: 10px 25px;
                        text-transform: uppercase;
                        color: @first;
                        font-weight: bold;
                        font-size: 1.75em;
                        position: relative;

                        &:nth-of-type(odd){
                            background: #eeeeee;
                        }

                        a{ font-size: 0.85em; }
                        audio{ 
                            position: absolute;
                            right: 25px; top: 50%;
                            transform: translate(0, -50%);
                            float: right; width: 200px; 
                        }
                    }
                }
            }
        }
        &#links{
            min-height: 720px;
            background: #0c0c0c;
            background-image: url(/images/danny_links_photo.jpg);
            background-repeat: no-repeat;
            background-position: bottom right;
            //background-size: cover; 
            background-size: contain;

            div.content{
                width: 770px;
                padding: 30px 0 20px 150px;
                h1{
                    margin: 0;
                    color: white;
                    text-align: left;
                }
            }
            #linksImage{display: none;}
        }
        &#contact{
            min-height: 580px;

            div.content{
                width: 840px;
                margin: auto;

                h1{
                    padding: 30px 0;
                }

                form{
                    input[type="text"]{
                        width: 49%;
                        padding: 17px 23px;
                        box-sizing: border-box;
                        font-size: 1.25em;
                        font-family: 'Open Sans';
                        background: #ebebeb;
                        border: 1px solid #ebebeb;
                        margin: 1%;
                    }
                    .flex {
                        display: flex;
                        align-items: flex-end;
                        .g-recaptcha{
                            width: 50%;
                            display: inline-block;
                        }
                        input[type="submit"]{
                            width: 50%;
                            background: @first;
                            border: 1px solid @first;
                            font-size: 2.5em;
                            font-family: 'Open Sans';
                            color: white;
                            text-transform: uppercase;
                            padding: 7px 0;
                            margin-top: 15px;
                            cursor: pointer;
    
                            border-radius: 0;
                            -webkit-appearance: none;
                        }
                    }
                    @media(max-width: 768px) {
                        .flex {
                            flex-direction: column;
                            .g-recaptcha{
                                width: auto;
                                display: block;
                            }
                            input[type="submit"]{
                                width: 100%;
                            }
                        }
                    }
                    textarea{
                        margin-top: 15px;
                        width: 100%;
                        padding: 17px 23px;
                        box-sizing: border-box;
                        font-size: 1.25em;
                        font-family: 'Open Sans';
                        background: #ebebeb;
                        border: 1px solid #ebebeb;

                        height: 136px;
                    }
                }
            }
        }
        &#blog{
            min-height: 660px;
            background: white;

            h1 {
                padding: 35px 0;
            }

            div.content{
                width: 1153px;
                margin: auto;
                padding: 20px 0;

                div.blog{
                    margin: 80px 0;                                             
                    &:first-child{
                        margin-top:0;
                    }
                    div.bar{
                        background: white;
                        border: 1px solid #eeeeee;

                        div{
                            display: inline-block;
                            text-transform: uppercase;
                            &.created{
                                font-weight: bold;
                                font-family: 'BioRhyme';                               
                                font-size: 2em;
                                vertical-align: middle;
                                padding:  20px;
                                max-width: 105px;
                                background-color: @first;
                                color: #FFF;
                                text-align: center;
                                line-height: 1.0em;
                                margin: -30px 0 0 -15px;
                                display:inline-block;
                            }
                            &.name{
                                color: @first;
                                vertical-align: middle;
                                padding: 0 25px;
                                font-size: 2.42em;
                                font-weight:bold;
                                line-height: 1em;                                
                                display:inline-block;
                                font-family: 'BioRhyme';
                                text-transform: uppercase;
                                span{ font-size: 0.6em; vertical-align: middle; margin: 0; display: inline; }
                            }
                            &.short_description{
                                text-transform: none;
                                padding: 40px 25px 20px;    
                            }
                            &.details{
                                width: 100%;
                                text-align:right;
                                box-sizing: border-box;
                                padding: 13px 20px;
                                font-size: 1.0em;
                                vertical-align: middle;
                                a { font-family: 'BioRhyme'; color: @first; font-weight: bold;}
                            }
                        }
                    }
                    .info{
                        width: 100%;
                        box-sizing: border-box;
                        display: none;
                        clear: both;
                        padding: 20px;
                        border: 1px solid #eeeeee;
                        border-top: 0;
                        .readless{
                            float:right;
                            a{color: @first;
                            font-family: 'BioRhyme';
                            font-weight:bold; padding: 20px;}
                        }
                        div.desc{
                            padding: 10px;
                        }
                    }

                    span{
                        display: inline-block;
                        margin-bottom: 15px;

                        &.lbl{
                            font-weight: bold;
                            min-width: 150px;
                        }
                        &.data{
                            text-align: left;                            
                        }
                    }

                    &:nth-of-type(odd){
                        div.bar{ background: #eeeeee; }
                    }
                }
            }
        }
    }
}
footer{
    text-align: center;
    padding: 10px;
    background: @first;
    font-family: 'Open Sans';
    font-size: 1.25em;
    color: white;
    margin-top: 20px;
}

#message { 
    clear: both; margin-bottom: 0.5em;
    position:absolute;
    top: 180px;
    width: 100%;
    box-sizing:border-box; 
}

#message .success {
    padding-top: 7px;
    padding-bottom: 7px;
    width: auto;    
    background: #E2F1D0 url(/images/icons/check.png) no-repeat left;
    background-position: 10px 7px;
    color: #061A5B; 
    border: 1px solid #ccc;
}
#message .success .text {
    padding-left: 3em;
    font-weight: bold;
}

#message .error {
    padding-top: 7px;
    padding-bottom: 7px;
    width: auto;    
    background: #FFD9D9 url(/images/icons/warning_16.png) no-repeat left;
    background-position: 10px 7px;
    color: #800; 
    border: 1px solid #ccc;
}
#message .error .text {
    padding-left: 3em;
    font-weight: bold;
}

#message .info {
    padding-top: 7px;
    padding-bottom: 7px;
    width: auto;    
    background: #F0F1FF url(/images/icons/information.png) no-repeat left;
    background-position: 10px 7px;
    color: #060C6A; 
    border: 1px solid #ccc;
}
#message .info .text {
    padding-left: 3em;
    font-weight: bold;
}
.event > .bar > .info {
    transition: 0.3s;
}
.info-hidden {
    max-height: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    margin: 0 !important;
    
}
.bar > .title {
    max-width: 60%;
}