@charset "utf-8";
/*
@font-face {
	font-family: "gothic";
	src: url("http://localhost:8080//content/assets/fonts/gothic.eot") format("eot"),
	url("http://localhost:8080//content/assets/fonts/gothic.woff") format("woff"),
	url("http://localhost:8080//content/assets/fonts/gothic.ttf") format("truetype")
}
*/
@font-face {
	font-family: "gothic";
	src: url("https://riff-grup.ro//content/assets/fonts/gothic.eot") format("eot"),
	url("https://riff-grup.ro//content/assets/fonts/gothic.woff") format("woff"),
	url("https://riff-grup.ro//content/assets/fonts/gothic.ttf") format("truetype")
}


:root {
    --background: rgb(2, 2, 7);
    --color1: rgb(224, 224, 224);
    --color2: rgb(7, 29, 61);
    --color3: rgb(255, 217, 0);
    --color4: #222;

}

*, *::before, *::after {
    margin: 0;
    box-sizing: border-box;
}

.content {
    overflow-x: hidden;
    overflow-y: auto;
    width: auto;
    min-height: calc(100vh - 130px);
}

body {
    margin: 0;
    color: var(--color1);
    background: var(--background);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 0.8em;
}

#app {
    display: grid;
    width: 100%;
	height: 100vh;
	overflow: hidden;
	-ms-text-overflow-style: none;
	scrollbar-width: none;
}

#app::-webkit-scrollbar {
	display: none;
}

header {
    position: relative;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    text-align: center;
    z-index: 1000;
    width: 100%;
    height: auto;
}

.logo img {
    width: 55px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 1em;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--color1);
    height: 4px;
    width: 4em;
    border-radius: 4px;
    position: relative;
    transition: all 500ms ease-in-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 12px;
    transform-origin: 2em 12px;
}

.nav-toggle-label span::after {
    top: 12px;
    transform-origin: 2em -12px;
}

header nav {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background: var(--background);
    width: 100%;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
}

header nav ul,
.anii_menu_container nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav li {    
    margin-bottom: 0.5em;
    margin-left: 1em;
}

header nav a,
.anii_menu_container nav a {
    color: var(--color1);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "gothic";
    font-weight: normal;
	font-style: normal;
    letter-spacing: 0.15em;
    opacity: 0;
    padding: 2px;
    border-radius: 8px;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    text-shadow: 0 0 0.5em var(--color1);
    transition: all 150ms ease-in-out;
}

header nav a:hover,
.anii_menu_container nav a:hover,
.router-link-exact-active {
    color: var(--background);
    background: var(--color1);
    text-shadow: none;
    box-shadow: inset 0 0 1.5em 0 var(--color1), 0 0 1.5em 0 var(--color1);
}

.noborder {
    border: none;
    background: none;
}

.noborder:hover {
    background: none;
    box-shadow: none;
}

.logos {
    width: 30px;
    height: 30px;
}

.logos:hover {
    box-shadow: inset 0 0 1.5em 0 var(--color1), 0 0 1.5em 0 var(--color1);
}

.nav-toggle:checked ~ nav {
    transform: scale(1, 1);
    
}

.nav-toggle:checked ~ nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}

.nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotateZ(45deg) translateY(12px);
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotateZ(-45deg) translateY(-12px);
}

.section_container {
    padding: 10px;
    min-height: calc(100vh - 190px);
    background: linear-gradient(var(--background), var(--color2), var(--background));
}

p {
    color: var(--color1);
    text-indent: 20px;
	text-align: justify;
    padding-top: 3px;
    padding-bottom: 3px;
}

.img_band_container a img {
    width: 90vw;
    height: auto;
    padding: 2px;
    border: solid 1px var(--color1);
    box-shadow: 0 0 0.5em var(--color1);
    transition: all 500ms ease-in-out;
}

.img_band_container a:hover img {
    border-color: var(--color3);
    box-shadow: 0 0 0.5em var(--color3);
}

footer {
    padding: 5px;
    font-size: 0.57em;
    background: linear-gradient(var(--background), var(--color2), var(--background));
}

.footer1,
.footer2,
.footer3,
.footer4,
.footer5,
.footer6 {
    text-align: left;
}

.footer4 {
    display: none;
    padding-top: 2px;
    padding-bottom: 2px;
}

@media only screen and (min-width: 1000px) {
    .nav-toggle-label {
        display: none;
    }

    header {
        display: grid;
        grid-template-columns: minmax(80px, 1fr) auto minmax(0, 1fr);
    }

    .logo {
        grid-column: 1 / 2;        
    }

    .logo img {
        width: 80px;
    }

    header nav {
        all: unset;
        grid-column: 2 / 3;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    header nav ul,
    .anii_menu_container nav ul {
        display: flex;
        justify-content: flex-end;
    }
    
    header nav li,
    .anii_menu_container nav li {
        margin-left: 0.08em;
        margin-bottom: 0;
    }
    
    header nav a,
    .anii_menu_container nav a {
        opacity: 1;
        position: relative;
        font-size: 0.65rem;
        font-weight: bold;
        letter-spacing: 0.1em;
        padding: 4px;
        border: solid 2px var(--color1);
        border-radius: 15px;
    }

    .noborder {
        border: none;
        background: none;
    }

    .noborder:hover {
        background: none;
        box-shadow: none;
    }

    .logos {
        width: 20px;
        height: 20px;
    }

    .content {
        min-height: calc(100vh - 190px);
    }

    body {
        font-size: 0.8em;
    }

    .img_band_container a img {
        width: 60vw;
        height: auto;
    }

    footer {
        display: grid;
        grid-template-rows: repeat(3, auto);
        font-size: 1em;
    }

    .footer1 {
        display: grid;
        grid-column: 1 / 2;
    }
    
    .footer2 {
        display: grid;
        grid-column: 2 / 3;
    }
    
    .footer3 {
        display: grid;
        grid-column: 3 / 4;        
    }
    
    .footer4 {
        display: grid;
        grid-column: 1 / 4;
        font-size: 0.7em;
    }
    
    .footer5 {
        display: grid;
        grid-column: 1 / 3;
        font-size: 0.7em;
    }
    
    .footer6 {
        display: grid;
        grid-column: 3 / 4;
        font-size: 0.7em;
    }

    .footer3,
    .footer6 {
        text-align: right;
    }
}

@media only screen and (min-width: 1400px) {

    header nav a {
        opacity: 1;
        position: relative;
        font-size: 0.9rem;
        font-weight: bold;
        letter-spacing: 0.1em;
        padding: 6px;
        border: solid 2px var(--color1);
        border-radius: 20px;
    }

    header nav li {    
        margin-left: 0.3em;
        margin-bottom: 0;
    }

    .logos {
        width: 30px;
        height: 30px;
        position: relative;
        margin-top: -6px;
    }
}

.band_flex_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.img_band_container {
    flex: 1 1 1fr;
    margin: 5px;
    color: var(--color1);
    width: auto;
    height: auto;
}

.text_band_container {
    flex: 1 1 auto;
}

.text_band_container ul {
    font-weight: normal;
	font-style: normal;
	text-align: left;
    color: var(--color1);
}

.text_band_container li {
    text-align: justify;
    padding: 5px;
}

.componenta_grid_container,
.discografie_grid_container {
    display: grid;
    justify-items: center;
    color: var(--color1);
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    box-shadow: 0 0 0.5em var(--color1);
}

.componenta_name,
.discografie_name,
.noutati_an {
    font-style: italic;
    font-size: 2em;
    text-indent: 25vw;
}

.discografie_name {
    text-indent: 10vw;
}

.componenta_img,
.discografie_img {
    align-self: center;
    text-align: center;
}

.componenta_img img {
    border-radius: 50%;
    box-shadow: 0 0 0.5em var(--color1);
    animation: animopacity 0.5s ease-in;
}

.discografie_img img {
    box-shadow: 0 0 0.5em var(--color1);
    animation: animopacity 0.5s ease-in;
}

.componenta_detalii,
.discografie_playlist,
.discografie_detalii {
    display: block;
    width: fit-content;
}

.discografie_valign {
    display: flex;
    align-items: center;
    height: 100%;
}

.discografie_playlist ul {
    list-style-type: decimal;
}

.discografie_detalii ul {
    list-style-type: none;
}

/* CSS FOR ANII */

.anii_menu_container {
    position: relative;
    margin: 10px;
    width: fit-content;
    height: auto;
}

.text_anii_container {
    margin-bottom: 10px;
}

.text_anii_container,
.poze_anii_container {
    padding: 10px;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    box-shadow: 0 0 0.5em var(--color1);
}

.text_anii {
    text-align: left;
    margin-bottom: 10px;
}

.poza_anii {
    display: inline-block;
    margin: 5px;
    width: fit-content;
    height: fit-content;
}

.poza_anii img {
    padding: 2px;
    border: solid 1px var(--color1);
    box-shadow: 0 0 0.5em var(--color1);
    transition: all 500ms ease-in-out;
    animation: animopacity 0.5s ease-in;
}

.poza_anii img:hover {
    border-color: var(--color3);
    box-shadow: 0 0 0.5em var(--color3);
}

/* CSS FOR SLIDE ANII */

.section_rock_container {
    height: calc(100% - 40px);
    background: linear-gradient(var(--background), var(--color2), var(--background));
}

.view_rock {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.slide_rock {
    display: grid;
    grid-template-columns: auto auto auto;
    width: auto; 
    height: auto;
    padding: 10px;
    background-color: var(--background);
    border: solid 1px var(--color1);
    border-radius: 10px;
    box-shadow: 0 0 0.5em var(--color1);
    transition: 0.5s linear;
    -ms-transition: 0.5s linear;
    -moz-transition: 0.5s linear;
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    animation-duration: 1s;
    animation-name: slidein;
}

@keyframes slidein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.close {
    display: grid;
    grid-column: 3 / 4;
    opacity: 0.4;
    cursor: pointer;
}

.close:hover {
    opacity: 0.9;
}

.left {
    display: grid;
    grid-column: 1 / 2;
    place-items: center;
    background-color: var(--background);
    opacity: 0.4;
    cursor: pointer;
}
  
.left:hover {
    opacity: 0.9;
}

.poze_slide_rock {
    display: grid;
    grid-column: 2 / 3;
    width: auto;
    height: auto;
}
  
.right {
    display: grid;
    grid-column: 3 / 4;
    place-items: center;
    background-color: var(--background);
    opacity: 0.4;
    cursor: pointer;
}
  
.right:hover {
    opacity: 0.9;
}

/* CSS FOR CONCERTE-TURNEE */

.concerte_bts {
    display: inline-block;
    margin: 2px;
    padding-left: 5px;
    padding-right: 5px;
    border: solid 1.5px var(--color1);
    border-radius: 10px;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    text-shadow: 0 0 0.5em var(--color1);
    transition: all 500ms ease-in-out;
}

.concerte_bts a {
    font-size: 1em;
    text-decoration: none;
    color: var(--color1);
    transition: color 500ms ease-in-out;
}

.concerte_bts:hover,
.concerte_bts_active {
    background: var(--color1);
    text-shadow: none;
    box-shadow: inset 0 0 1.5em 0 var(--color1), 0 0 1.5em 0 var(--color1);
}

.concerte_bts:hover a,
.a_active {
    color: var(--background);    
}

.concert {
    margin-top: 15px;
    padding: 4px 4px 0 4px;
    width: fit-content;
    height: 100%;
    justify-content: center;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    box-shadow: 0 0 0.5em var(--color1);
}

.concerte_menu_container {
    background: linear-gradient(var(--background), var(--color2), var(--background));
}

.text_concert {
    text-align: justify;
    padding: 15px;
    width: fit-content;
}

.colon {
    display: inline-block;
    vertical-align: middle;
    height: fit-content;
    margin: 5px;
}

.colon img {
    display: block;
    margin: 10px;
    animation: animopacity 0.5s ease-in;
}

@media only screen and (max-width: 1000px) {
    .concert img,
    .colon img {
        max-width: 95%;
    }
}

@media only screen and (min-width: 1400px) {
    .concerte_bts {
        border-radius: 20px;
    }
    .concerte_bts a {
        font-size: 1.2em;
    }
}

/* CSS FOR FESTIVALURI-GALE */

.title_festival {
    font-style: italic;
    font-size: 2em;
    padding-top: 10px;
}

.text_container_festival {
    margin-bottom: 10px;
}

.text_container_festival,
.diplome_container_festival {
    padding: 10px;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    box-shadow: 0 0 0.5em var(--color1);
}

.diplome_festival {
    display: inline-block;
    padding: 10px;
}

.diplome_festival img {
    box-shadow: 0 0 0.5em var(--color1);
    animation: animopacity 0.5s ease-in;
}

/* CSS FOR MASSMEDIA */

.massmedia {
    margin: 15px;
}

.massmedia_title {
    font-size: 2em;
    margin: 5px;
    margin-bottom: 15px;
    text-shadow: 0 0 0.5em var(--color1);
}

.massmedia_text {
    padding: 15px;
    width: fit-content;
    margin: 5px;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    box-shadow: 0 0 0.5em var(--color1);
}

.massmedia_img {
    margin: 5px;
    width: fit-content;
    height: fit-content;
}

.massmedia_img img {
    display: block;
    padding: 2px;
    border: solid 1px var(--color1);
    box-shadow: 0 0 0.5em var(--color1);
    animation: animopacity 0.5s ease-in;
}

@keyframes animopacity {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.massmedia_link_envelope {
    margin-bottom: 10px;
    margin-top: 15px;
}

.massmedia_link {padding: 5px;
    text-decoration: none;
    font-size: 0.9em;
    color: var(--color1);
    background-color: var(--color2);
    border-radius: 4px;
    transition: all 500ms ease-in-out;
}

.massmedia_link:hover {
    color: var(--background);
    background-color: var(--color1);
}

.iteratie_discuri {
    width: fit-content;
}

@media only screen and (max-width: 1000px) {
    .massmedia_img img {
        max-width: 100%;
    }
}

/* CSS FOR AUDIO/VIDEO */

.video_div {
    display: inline-block;
    margin: 5px;
    border: solid 1px var(--color2);
    box-shadow: 0 0 0.5em var(--color1);
}

.video_div:hover {
    box-shadow: 0 0 0.5em var(--color3);
}

/* CSS FOR SHOP */

.riff_shop {
    width: auto;
    margin-bottom: 10px;
    background:  linear-gradient(var(--background), var(--color2), var(--background));
    box-shadow: 0 0 0.5em var(--color1);
}

.comanda {
    padding: 10px;
    font-size: 1.1em;
    box-shadow: 0 0 0.5em var(--color3);
}

.new_cd_shop_img,
.new_cd_shop_play {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

.new_cd_shop_play {
    background: var(--color2);
}

.efect {
    position: relative;
    overflow: hidden;
    width: auto;
    height: 304px;
    padding: 2px;
}

.efect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;    
    width: 336px;
    height: 300px;
    background: linear-gradient(0deg, transparent, var(--color3), transparent, var(--color3));
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.efect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;    
    width: 336px;
    height: 300px;
    background: linear-gradient(0deg, transparent, var(--color3), transparent,var(--color3));
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.new_cd_shop_img img {
    position: relative;
    z-index: 1;
}

.play_button {
    display: flex;
    align-items: center;
    gap: 5px;
}

.play_ {
	visibility: hidden;
	position: relative;
	left: 10px;
	top: 0;
    width: 250px;
    height: 30px;
	border: solid 1px var(--color1);
	z-index: 100;
	opacity: 0;
    transition: all 500ms ease-in-out;
}

.mp {
    padding: 3px;
    text-align: left;
    transition: all 500ms ease-in-out;
}

.mp:hover {
	color: lightgreen;
	cursor: pointer;
}

.mp:hover .play_ {
	visibility: visible!important;
    opacity: 1!important;
}

.mp:hover .play_ audio {
	visibility: visible!important;
}

.tp {
    vertical-align: top;
}

.cd_shop {
    display: inline-block;
    padding: 10px;
}

.cd_shop img,
.new_cd_shop_img img {
    animation: animopacity 0.5s ease-in;
}

#conv, #canvas {
    width: 300px;
    height: 50px;
}

/* CSS FOR NOUTATI*/

.noutati_block {/* !!! */
    width: auto;
    height: 100%;
    background: linear-gradient(var(--background), var(--color2), var(--background));
    box-shadow: 0 0 0.5em var(--color1);
}

.noutati_x {
    display: inline-block;
    vertical-align: middle;
}

.noutati_an {
    text-indent: 0;
    padding-top: 15px;
}

.noutati_detalii {
    width: fit-content;
    padding-top: 5px;
    padding-bottom: 5px;
}

.noutati_detalii ul {
    list-style-type: none;
    text-align: left;
    text-indent: -30px;
    /*line-height: 32px;*/
}

.noutati_img {
    display: inline-block;
    padding: 10px;
    width: fit-content;
    vertical-align: middle;
}

.noutati_img img {
    box-shadow: 0 0 0.5em var(--color1);
}

/* CSS FOR PAGINA PORNIRE (HOME) */

.home_container {
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--background), var(--color2), var(--background));
}

.home_element {
    display: inline-block;
	/*vertical-align: middle;*/
    border: solid 1px var(--color2);
    border-radius: 10px;
    margin-top: 3vh;
	margin-left: 3vh;
	margin-right: 3vh;
    overflow: hidden;
    box-shadow: 0 0 0.5em var(--color1);
}

@media only screen and (max-width:280px) {
    .home_element {
		width: 178px;
		height: 100px;
	}
}

@media only screen and (min-width:315px) {
    .home_element {
		width: 300px;
		height: 168px;
	}
}

@media only screen and (min-width:780px) {
    .home_element {
		width: 300px;
		height: 168px;
	}
}

@media only screen and (min-width:1000px) {
    .home_element {
		width: 426px;
		height: 240px;
        margin-left: 6vh;
	    margin-right: 6vh;
	}
    .el1 {
        vertical-align: top;
    }
    .el2 {
        vertical-align: bottom;
        margin-top: 15vh;
    }
}

@media only screen and (min-width:1800px) {
	.home_element {
		width: 639px;
		height: 360px;
        margin-left: 12vh;
	    margin-right: 12vh;
	}
    .el1 {
        vertical-align: top;
    }
    .el2 {
        vertical-align: bottom;
        margin-top: 20vh;
    }
}

@media only screen and (min-width: 1000px) {
    .componenta_grid_container {
      grid-template-columns: minmax(min-content, calc(220px + 20vw)) minmax(min-content, 100%);
    }
  
    .componenta_name {
      grid-column: 1 / 3;
    }
  
    .componenta_img,
    .discografie_img {
      grid-column: 1;
      text-align: right;
      margin-right: 2vw;
    }
  
    .componenta_detalii,
    .discografie_playlist {
      grid-column: 2;
    }

    .discografie_grid_container {
        grid-template-columns: minmax(min-content, calc(220px + 20vw)) minmax(min-content, 350px) minmax(min-content, 100%);
    }

    .discografie_name {
        grid-column: 1 / 4;
    }

    .discografie_detalii {
        grid-column: 3;
    }
}

/* CSS FOR TRANSITION */

/* slide-fade */
.slide-fade-enter-active {
    transition: all .3s ease;
}

.slide-fade-leave-active {
    transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}

.slide-fade-enter, .slide-fade-leave-to{
    transform: translateX(100px);
    opacity: 0;
}

/* fade */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* slide */
.wrapper {
    width: 100%;
    min-height: 100vh;
}

.slide-enter-active,
.slide-leave-active {
  transition: all 0.75s ease-out;
}

.slide-enter-to {
  position: absolute;
  right: 0;
}

.slide-enter-from {
  position: absolute;
  right: -100%;
}

.slide-leave-to {
  position: absolute;
  left: -100%;
}

.slide-leave-from {
  position: absolute;
  left: 0;
}

/* scale mode="out-in" */
.scale-enter-active,
.scale-leave-active {
  transition: all 0.5s ease;
}

.scale-enter-from,
.scale-leave-to {
  opacity: 0;
  transform: scale(0.9);
}