﻿* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
}
body {
    overflow: hidden;
    overflow-y: auto;
}

section {
    padding: 20px 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #8e6f3e;
}

a:hover {
    color: #8e6f3e;
}

.instagram{
    display: flex;
    align-items: stretch;
    flex-direction: column
}
.section-title{
    font-family: acumin-pro-semi-condensed,"Franklin Gothic",sans-serif;
    font-weight: 700;
    font-size: 280%;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.2;
    margin-top: 10px;
}
.short-hr{
    width: 100px;
    border-width: 5px;
    border-color: #c5a563;
}

.panel-one{
    display: flex;
    align-self: center;
}

section h3 {
    font-family: "United Sans",Impact,"Arial Black","sans serif";
    font-weight: 700;
    font-size: 1.875rem;
    color: #727272;
}

#inside-tracks-list{
    height: 560px;
    overflow: hidden;
    overflow-y: auto;
}

.inside-track {
    margin-bottom: 40px;
}

.event_bar {
    border-left: 6px solid #8e6f3e;
    /*width: 0.7772435897rem;
    background-color: #8e6f3e;*/
}
.event_title {
    margin: 0;
    padding: 0;
    font-family: acumin-pro-semi-condensed,"Franklin Gothic",sans-serif;
    font-size: 1.2954059829rem;
    font-weight: 700;
    color: #000;
}

.spotlight {
    position: relative;
    height: 300px;
    width: 100%;
    cursor: pointer;
}

.spotlight:hover,
.spotlight:focus {
    /*transition: 0.25s;
    transform: translateY(-0.3em);
    box-shadow: 0px 3px 5px black;
    text-decoration: underline;*/
}

.spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight .spotlight-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-family: United Sans, Impact, Arial Black, sans serif, serif;
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 2px 2px 4px #000000;
    text-decoration: inherit;
}

.spotlight .spotlight-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: inherit;
}

.spotlight .spotlight-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    align-content: flex-end;
    color: #fff;
    font-family: United Sans, Impact, Arial Black, sans serif, serif;
    background: rgb(0,0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 25%, rgba(0,0,0,0) 100%);
    word-wrap: break-word;
    padding-bottom: 10px;
    text-decoration: inherit;
}

.spotlight .spotlight-text:hover{
    background: rgba(0,0,0,0);
    text-shadow: 1px 1px 1px #000;
}

#blog-posts {
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
}

.post-card{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.post-card>img{
    max-height: 150px;
    max-width: 150px;
    object-fit: fill;
    margin-right: 10px;
}

.post-card>div>a{
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #8e6f3e;
}

.post-card>div>a:hover{
    text-decoration: underline;
}

.posts-btn {
    background-color: #cfb991;
    border: 2px solid #8e6f3e;
    color: black;
    font-family: United Sans, Impact, Arial Black, sans serif, serif;
    border-radius: 0;
    font-weight: bold;
    font-size: 20px;
    padding: 5px 20px;
    align-self: center;
}

.social {
    text-align: center;
    height: 100%;
}

.social-bundle > a {
    text-decoration: none;
    color: #000;
}

.social-bundle > a:hover {
    text-decoration: none;
    color: #8e6f3e;
}

.contact h3 {
    text-align: center;
}

.card-style{
    aspect-ratio: 1/1;
    display: flex;
    color: white;
    background-image: url('https://source.unsplash.com/600x600/?tree,nature');
}

.card-style:hover,
.card-style:focus {
    transition: 0.25s;
    transform: translateY(-0.3em);
    box-shadow: 0px 3px 5px black;
    cursor: pointer;
}

.card-body-style{
    display: flex;
    flex-direction: column-reverse;
    background-color: rgba(0, 0, 0, 0.5);
}

.card-title{
    font-weight: bold;
}

.blog-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

#content{
    background-color: rgba(207, 185, 145, 0.5);
}