﻿:root {
    --primary: #67c6ba;
    --black: #000;
    --white: #fff;
    --dark-gray: #333;
    --mid-gray: #444;
    --light-gray: #f8f8f8;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "komet", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background: var(--black);
    color: #fff;
    line-height: 1.1;
}

strong {
    font-weight: 600;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.notices { 
    z-index:100000; 
    width:400px; 
    position:fixed; 
    top:10px; 
    left:50%; 
    padding:0 10px;
    margin:0 -200px; 
    box-sizing:border-box; 
    text-align:center;
}

.notices .notice { 
    width: 100%; 
    display: block;
    padding: 15px 15px 15px 74px; 
    line-height: 1.2; 
    margin: 0 auto 15px auto; 
    background-position: 10px center; 
    background-repeat: no-repeat; 
    font-size: 1.1em; 
    color: var(--black); 
    -webkit-border-radius: 20px; 
    -moz-border-radius: 20px; 
    border-radius: 20px; 
    text-align: left;
    border: 2px solid var(--black);
}
.notices .notice span { 
    font-weight: bold; 
    font-size: 1.3em; 
    padding: 0 0 2px 0; 
    display: block; 
}
.notices .notice.error { 
    background-image: url('../images/site/notice_x.png');
    background-color: #fc838c; 
}
.notices .notice.success { 
    background-image: url('../images/site/notice_tick.png');
    background-color: #67c6ba;
}
.notices .notice:hover { 
    cursor:pointer; 
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../images/heros/studio.jpg') no-repeat center top/cover;
}

.hero-overlay {
    height: 100%;
    width: 100%;
    background: rgba(103, 198, 186, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-intro {
    padding: 40px;
    text-align: center;
}
.hero-overlay h1 {
    display: inline-block;
    text-indent: -9999px;
    width: 250px;
    height: 290px;
    margin: 0 0 20px 0;
    background: url(../images/site/dude_in_studio_logo.png) center center/contain no-repeat;
}
.hero-overlay p {
    font-size: 1.5rem;
    color: var(--black);
    width: 55%;
    margin: 0 auto;
}
.hero a.live_btn {
    background-color: var(--black);
    border-radius: 20px;
    box-shadow: 0 0 10px 10px var(--primary);
    padding: 12.5px 20px 0 20px; 
    height: 70px;
    line-height: 70px;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    color: var(--primary);
}
.hero a.live_btn img { 
    display: inline-block; 
    width: 44px; 
    height: 44px; 
    margin: 0 7px 0 0;
    border-radius: 10px;
    float: left;
}
.hero a.live_btn div {
    display: inline-block; 
}
.hero a.live_btn i { 
    display:inline-block; 
}

.hero a.live_btn span.live {
    font-size: 1rem;
    color: var(--white);
    display: block;
    line-height: 1;
    padding: 0 0 3px 0;
}
.hero a.live_btn span.show {
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    line-height: 1;
}
.section {
    padding: 50px 20px;
}
.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
    font-family: "komet", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 5rem;
    line-height: 1;
}
.section p.header {
    font-size: 1.5em;
    margin: -30px auto 15px auto;
    width: 70%;
    text-align: center;
}
.section p.footer {
    font-size: 0.9em;
    margin: 15px auto 0 auto;
    width: 70%;
    text-align: center;
}
.section .show_more {
    width: 100%;
    text-align: center;
    padding:20px 20px 10px 20px;
}
.section .show_more button {
    width: 60%;
    padding: 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    background: var(--primary);
    border-radius: 30px;
    outline: 0;
    border: 0;
}
.section .show_more button:hover {
    cursor: pointer;
}
.section#shows {
    border-top: 6px solid var(--black);
    background-color: var(--light-gray);
    background-image: url(../images/site/arrow_black.png);
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--black);
}
section#shows .show-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.section#shows .show-card {
    overflow: hidden;
    flex: 1 1 calc(33% - 30px);
    max-width: calc(33% - 30px);
    display: flex;
    flex-direction: column;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    border-bottom-right-radius: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section#shows .show-card .show-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(103, 198, 186, 0.9);
    color: var(--black);
}
.section#shows .show-card.live .show-card-content {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary);
}
.section#shows .show-card.past .show-card-content {
    background-color: rgba(255, 255, 255, 0.9);
}
.show-card-content .show-info {
    width: 100%;
}
.section#shows .show-card-content .show-title {
    flex: 1;
    padding-bottom: 20px;
}   
.section#shows .show-card-content h3 {
    margin-bottom: 10px;
    font-size: 4.5em;
    line-height: 0.9;
    font-weight: 800;
}
.section#shows .show-card-content .show-day {
    font-size: 2.5rem;
    font-weight: 700;
    margin: -7px 0 7px 0;
    line-height: 0.9;
}
.section#shows .show-card.live .show-day {
    color: var(--white);
}
.section#shows .show-card-content .show-time {
    font-size: 2.5rem;
    font-weight: 300;
}
.section#shows .show-card.live .show-time {
    color: var(--white);
}
.show-card-content .show-time span {
    font-size: 1rem;
    font-weight: 700;
}
.show-card-content .show-button {
    color: var(--black);
    height: 60px;
    line-height: 60px;
    font-weight: 400;
    margin-top: 5px;
    font-size: 1.8rem;
    text-align: right;
}
.show-card-content .show-button a {
    color: var(--black);
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    display: block;
}
.section#shows .show-card.live .show-button a {
    color: var(--primary);
}
.show-card-content .show-button iframe {
    width: 100%;
    height: 60px;
    border-radius: 20px;
    border: none;
    outline: none;
}
.section#songs {
    background-color: var(--dark-gray);
}
.section#songs h2 {
    color: var(--white);
}
.song-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.song-card {
    background: var(--black);
    overflow: hidden;
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    display: flex;
    flex-direction: column;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    border-bottom-right-radius: 30px;
}
.song-card img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.song-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--primary);
}
.song-card-content h3 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    flex: 1;
}
.song-card-content p {
    font-size: 1rem;
    line-height: 1;
    margin-top: 10px;
    color: var(--white);
}
.song-card-content p.song-tags {
    font-size: 1rem;
    line-height: 1;
    margin-top: 10px;
    color: #848484;
}

.song-grid .platform-icons {
    margin: 15px 5px 0 5px;
    padding-top: 10px;
    text-align: right; 
    font-size: 1.2em;
}

.platform-icons a {
  margin-right: 2px;
  font-size: 1.2em;
}

.platform-icons a.preview-play {
    float:left;
    padding:0;
    margin-left:-10px;
}
.platform-icons a.preview-stop {
    float:left;
    padding:0;
    margin-left:-5px;
}

.platform-icons a.spotify-link {
    margin-right: 5px;
}
.platform-icons a.deezer-link {
    margin-right: 5px;
}
.platform-icons a.disabled {
    color: var(--dark-gray);
    cursor: default;
    pointer-events: none;
}

.section#updates {
    background: var(--primary);
    color: var(--black);
}
.section#updates h2 {
    color: var(--black);
}

.section#updates .form-box {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 35px;
}
.section#updates form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    flex: 1;
    background: var(--black);
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    border-bottom-right-radius: 30px;
}

.section#updates form .form-card {
    overflow: hidden;
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 20px 0;
}

.section#updates form .form-card label {
    display: block;
    color: var(--white);
    padding:0 0 6px 0;
}

.section#updates form .form-card input {
    width: 100%;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 40px;
    height: 40px;
    border: none;
    outline: none;
}

.section#updates form .form-card select {
    width:100%;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 40px;
    height: 40px;
    border: none;
    outline: none;
}

.section#updates form .form-card#update-mobile {
    display:none;
}
.section#updates form .form-card .mobile-box {
    width:100%;
}
.section#updates form .form-card .mobile-box select.cc {
    width:40%;
}
.section#updates form .form-card .mobile-box input.cc {
    width:60%;
}
.section#updates form .form-card button {
    width: 100%;
    background: var(--primary);
    color: var(--black);
    font-weight: 700;
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 40px;
    height: 40px;
    border: none;
    outline: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.section#updates form .form-card button:hover {
    cursor: pointer;
}
.section#updates form .form-card button[disabled] {
    cursor:wait;
}

.section#followers {
    background: var(--black);
}

.section#followers h2 {
    color: var(--primary);
}
    
.followers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }
.followers-item {
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
    min-width: calc(25% - 30px);
    background: var(--primary);
    padding: 20px;
    transition: transform 0.3s;
    color: var(--black);
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    border-bottom-right-radius: 30px;
  }
.followers-item:hover {
    transform: translateY(-5px);
}
.followers-item i {
    font-size: 2.5rem;
    background: var(--black);
    color: var(--primary);
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    border-radius: 35px;
    font-size: 40px;
}
.counter {
    font-size: 4rem;
    font-weight: 800;
}
.label {
    font-size: 1.3rem;
    margin-top: -5px;
}
.social {
    width:100%;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.3;
    padding: 10px 75px;
}
.social h3 {
    font-size: 2rem;
    font-weight: 700;
    padding: 10px 0 5px 0;
}
.social-icons a {
  margin: 0 5px;
  font-size: 2.5rem;
}
.section#contact {
    background-color: var(--dark-gray);
}
.section#contact h2 {
    color: var(--white);
}
.contact-form {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--black);
    padding: 30px 40px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    border-bottom-right-radius: 30px;
}
.contact-form label {
    display:block;
    position:relative;
}
.contact-form label span {
    vertical-align:middle;
    position:absolute;
    display:inline-block;
    top: 2px;
    left: 30px;
}
.contact-form p {
    line-height:1.4;
}
.contact-form input[type=text],.contact-form input[type=email],.contact-form input[type=tel] {
    width: 100%;
    background: var(--white);
    color: var(--black);
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 40px;
    height: 40px;
    border: none;
    outline: none;
    margin-top:-9px;
}
.contact-form input[type=checkbox] {
    background: var(--white);
    font-size: 1.4rem;
    border: none;
    outline: none;
    height: 20px;
    width: 20px;
    vertical-align: middle;
}
.contact-form input[type=checkbox]:hover {
    cursor: pointer;
}
.contact-form input.mobile {
    padding: 0 10px 0 140px;
}
.contact-form textarea {
    width: 100%;
    background: var(--white);
    color: var(--black);
    padding: 10px 10px;
    font-size: 1.2rem;
    height: 120px;
    border: none;
    outline: none;
    margin-top:-9px;
    resize: none;
}
.contact-form select {
    width: 120px;
    background: var(--white);
    color: var(--black);
    padding: 0 10px;
    font-size: 1.2rem;
    line-height: 40px;
    height: 40px;
    line-height: 1.2;
    border: none;
    outline: none;
    position:absolute;
    margin-top:-9px;
}
.btn {
    width: 100%;
    background: var(--primary);
    color: var(--black);
    font-weight: 700;
    padding: 0 10px;
    font-size: 1.5rem;
    line-height: 48px;
    height: 48px;
    border: none;
    outline: none;
    border-radius: 20px;
}
.btn:hover {
    cursor: pointer;
}
.btn[disabled] {
    cursor:wait;
}

footer {
  text-align: center;
  padding: 40px;
  background: var(--white);
}

footer p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

@media only screen and (max-width:601px)
{
    .section h2 {
        font-size: 4rem;
    }
    .hero-overlay {
        /*align-items: flex-start;*/
        padding-bottom:100px;
    }
    .hero-overlay p {
        width: 100%;
    }
    .notices { 
        width:100%; 
        margin:0 -50%; 
    }
    .hero a.live_btn {
        margin: 20px -20px 0 -20px;
    }
    .section p.header {
        width: 100%;
    }
    .section .show_more button {
        width: 100%;
    }
    .section#shows .show-card {
        flex: 1 1 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    .section#shows .show-card-content h3 {
        font-size: 4em;
    }
    .song-card {
        flex: 1 1 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    .section#updates .form-box {
        padding: 0 15px;
    }
    .section#updates form {
        padding: 20px 10px;
        gap: 5px;
    }
    .section#updates form .form-card {
        flex: 1 1 calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin: 0 0 10px 0;
    }
    .section#updates form .form-card button {
        border-radius: 20px;
    }
    .followers-item {
        flex: 1 1 calc(100% - 30px);
        max-width: calc(100% - 30px);
        min-width: calc(100% - 30px);
    }
    .social {
        padding: 10px 30px;
    }
    .contact-form {
        width: calc(100% - 30px);
    }
    .contact-form label.checker {
        margin-bottom:5px;
    }
    .btn {
        margin-top:10px;
    }
    .contact-form {
        padding: 30px 20px;
    }
}
@media only screen and (min-width:601px) and (max-width:900px) 
{
    .hero-overlay p {
        width: 100%;
    }
    .section h2 {
        font-size: 4.5rem;
    }
    .section p.header {
        width: 100%;
    }
    .section#shows .show-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
    .section .show_more button {
        width: 100%;
    }
    .song-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
    .section#updates .form-box {
        padding: 0 20px;
    }
    .section#updates form {
        padding: 20px 10px;
        gap: 5px;
    }
    .section#updates form .form-card {
        flex: 1 1 calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin: 0 0 10px 0;
    }
    .followers-item {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
        min-width: calc(50% - 30px);
    }
    .social {
        padding: 10px 30px;
    }
    .contact-form {
        width: calc(100% - 30px);
    }
    .contact-form label.checker {
        margin-bottom:10px;
    }
    .btn {
        margin-top:10px;
    }
    .contact-form {
        padding: 30px 30px;
    }
}
@media only screen and (min-width:901px) and (max-width:1024px) 
{
    .hero-overlay p {
        width: 80%;
    }
    .section h2 {
        font-size: 4.5rem;
    }
    .section#shows .show-card {
        flex: 1 1 calc(33% - 30px);
        max-width: calc(33% - 30px);
        background: #ff0000;
    }
    .song-card {
        flex: 1 1 calc(33% - 30px);
        max-width: calc(33% - 30px);
    }
    .followers-item {
        flex: 1 1 calc(33% - 30px);
        max-width: calc(33% - 30px);
        min-width: calc(33% - 30px);
    }
    .social {
        padding: 10px 40px;
    }
    .contact-form {
        width: calc(80% - 30px);
    }
}
