.main h1 {
    font-size:4em;
    font-weight:300;
    margin-bottom:1em;
    color:#fff9b8; /* pale yellow */
    margin-top:5%;
}

/* tour dates */

.venue {
    float:left;
    clear:left;
    width:100%;
    margin-bottom:0.25em;
    background-color:#779f05; /* green */
    border-radius: 0.25em;
}

    .venue-date {
        float:left;
        width:10%;
        background-color:#0d4232; /* dark green */
        padding:1em;
        margin-right:2%;
        border-radius: 0.25em;
    }
    
        .main .day,
        .main .month,
        .main .year {
            text-align: center;
            width:100%;
            margin-bottom:0;
        }
        
        .venue-date div {
            float:left;
            width:50%;
        }
    
        .main .day {
            color:#fff;
            font-size:3em;
            line-height: 1;
        }
        
        .main .month {
            font-size:1.3em;
            color:#fffaa8; /* yellow */
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            line-height: 1;
        }
        
        .main .year {
            font-size:1em;
            color:#fff;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
    
    .venue-main {
        float:left;
        width:100%;
        padding:0.75em;
        text-align: left;
    }
    
        .venue-main .text {
            float:left;
            width:66%;
        }
    
        .venue-main h2 {
            float:left;
            font-size:2em;
            font-weight:300;
            margin-bottom: 0;
            color:#fffaa8; /* yellow */
        }

            .venue-main h2 span {
                font-weight:400;
                color:#0d4232; /* dark green */
            }
        
        .main p.time {
            float:left;
            clear:left;
            font-size:1.2em;
            margin-bottom:0;
            color:#0d4232; /* dark green */
        }
    
    .venue-buy {
        float:right;
        width:20%;
        background-color:#779f05; /* green */
    }
    
        .venue-buy a {
            float:left;
            background-color:#0d4232; /* dark green */
            width:100%;
            padding:1em;
            color:#fff;
            font-size:1.6em;
            text-align: center;
            text-decoration: none;
            border-radius: 0.25em;
        }
        
            .venue-buy .soon,
            .venue-buy .sold-out,
            .venue-buy .soon:hover,
            .venue-buy .sold-out:hover{
                background-color:#999;
            }
            
            .venue-buy a p.lastfew {
                font-size:0.5em;
                color:red;
                margin-bottom:0;
            }
            
            .venue-buy a:hover {
                background-color:#a6cb03;
            }

/* media */

.music {
    float:left;
    clear:left;
    width:100%;
    margin-top:2em;
}

.song {
    float:left;
    clear:left;
    width:100%;
    padding:2em;
    margin-bottom:2em;
    background-color:#779f05; /* green */
    border-radius: 0.25em;
}

    .song h3 {
        color:#0d4232; /* dark green */
    }

audio {
    width:100%;
    background-color:#0d4232; /* dark green */
    padding:1em;
    float:left;
    clear:left;
    position:relative;
    z-index:0;
    border-radius: 0.25em;
}

/* login */

#fuLoginForm input {
    display:inline-block;
    border:1px solid #fff;
    outline:none;
    padding:1em;
    font-size:1.2em;
    margin-bottom:em;
    color:#fff;
    background:none;
}

#fuLoginForm li {
    margin-bottom:1em;
}

/* cast crew */

.cast {
    float:left;
    clear:left;
    width:100%;
}

.person {
    float:left;
    background-color:#0d4232; /* dark green */
    padding:1em;
    text-decoration: none;
    border-radius:0.25em;
}

    .person:nth-of-type(3n) {
        margin-right:0;
    }
    
    .person h2,
    .person p{
        margin-bottom:0;
    }
    
    .cast-photo {
        background-color:#0d4232; /* dark green */
        padding:2em;
        margin-bottom:2em;
    }

    .person:hover h2 {
        text-decoration: underline;
    }

.tabs {
    margin-bottom:2em;
}

.tabs a {
    display:inline-block;
    line-height: 1;
    background-color:var(--dgreen);
    color:#fff;
    text-decoration: none;
    font-size: 2em;
    font-weight:300;
    padding:1em;
}

    .tabs a.active,
    .tabs a:hover {
        background-color:var(--green);
    }

.tab-content {
    display:none;
}

    .tab-content:first-of-type {
        display: block;
    }

.people {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:1.5em;
}
    
/* gallery */

.gallery {
    float:left;
    clear:left;
    width:100%;
}

    .gallery a {
        float:left;
        width:23.5%;
        margin-right:2%;
        margin-bottom:2%;
        background-color:#0d4232; /* dark green */
        padding:0.5em;
    }
    
        .gallery a:nth-of-type(4n) {
            margin-right:0;
        }
        
        .gallery a:hover {
            background-color:#779f05; /* green */
        }

/* About */

.cgraphic {
    position: relative;
}

    .cgraphic > img {
        width:100%;
    }

    .cgraphic a {
        position:absolute;
        width:50%;
        height:5%;
        left:7%;
    }

        #fb {
            top:58.5%;
        }

        #tw {
            top:52%;
        }

        #in {
            top:64.75%;
        }

    .main.about p {
        font-size:1.8em;
        color:#fff;
    }
    .main.about td p {
        color:#d5d09f;
        font-size:1em;
    }

/* Store */
.category {
    background-color:#000000aa;
    padding:3em;
    margin-bottom:1em;
}

    .item {
        border:1px solid var(--green);
        border-radius:1em;
        padding:2em;
        margin-bottom:1em;
        display:grid;
        grid-template-columns: 1fr 3fr 1fr;
        grid-gap:2em;
    }

        .item > img {
            width:100%;
        }

        .item .text {
            text-align:left;
        }

            .main .item h3 {
                margin-bottom:0.25em;
            }

            .item .gradient-btn {
                margin:0 0 0.5em 0;
                font-size:1.6em;
            }

        

@media screen and (max-width:1250px){
    .venue-date div {
        width:100%;
    }
}

@media screen and (max-width:949px) {
    
    .main .venue-buy a {
        font-size:1.4em;
    }
    
    .main .day {
        font-size:3em;
    }
    
    .person {
        padding:2%;
    }
    
        .person h2 {
            font-size:1.6em;
        }
        
        .person p {
            font-size:1.2em;
        }
}

@media screen and (max-width:649px) {
    
    .venue-date {
        width:25%;
    }
    
    .venue-main .text {
        width:73%;
    }
    
    .venue-main h2 {
        font-size:2em;
    }
    
    .venue-buy {
        float:left;
        clear:left;
        width:25%;
        padding:0;
        margin-top:2%;
    }
    
    .gallery a {
        width:49%;
    }
    
        .gallery a:nth-of-type(4n) {
            margin-right:2%;
        }
        
        .gallery a:nth-of-type(2n) {
            margin-right:0;
        }

    .people {
        grid-template-columns: repeat(2,1fr);
    }

    .item {
		grid-template-columns: 1fr 3fr;
	}

		.item .links {
			grid-column: 2/3;
			grid-row: 2/3;
		}

		.item .links .cta {
			margin-bottom:0.5em;
		}
    
}

@media screen and (max-width:599px) {
    .main table td {
        display:block;
        text-align: center;
        width:100% !important;
        margin-bottom:1em;
    }

        .main table td h3 {
            margin-bottom:0;
            font-size:2em;
        }
}

@media screen and (max-width:459px) {
    .item {
		grid-template-columns: 1fr;
		grid-gap:1em;
	}

		.item .links {
			grid-row: unset;
			grid-column: unset;
		}
}

@media screen and (max-width:419px) {
    .venue-buy {
        width:100%;
    }

    .people {
        grid-template-columns:1fr;
    }
}

@media screen and (max-width:299px) {
    .main .day {
        font-size:3em;
    }
    
    .person {
        width:100%;
        margin-right:0;
        padding:5%;
    }
}