
@import url(../styles/general.css);

hr {
    width: 15rem;
    height: .2rem;
    margin: var(--margin-sm) auto;
    border: none;
    background-color: var(--red-bg);
    border-radius: 5rem;
}

.fullWidthDarkBG {
    background-color: var(--black-bg);
    color: white;
}

.fullWidthPinkBG {
    background-color: var(--pink-bg);
    color: black;
}

.fullWidthRedBG {
    background-color: var(--red-bg);
    color: white;
}

.fullWidthWhiteBG {
    background-color: white;
    color:black;
}

.padding-buttom-2 { /*for the color Blocks to make an extra padding to the bottom*/
    padding-bottom: 2rem;
    
}

.padding-top-2 { /*for the color Blocks to make an extra padding to the top*/
    padding-top: 2rem;
}

.quote {
    width: 70%;
    max-width: 900px;
    margin: auto;
}

.content {
    font-size: 1rem;
    width: 70%;
    max-width: 900px;
    margin: auto;
}

.content-flex{
    display: flex;
    flex-direction: column;
}

.social-media  {
    background-color: transparent;
    border: none;
}

@media (width < 501px){

    /* General Style */

    :root {
        --small-dev-mar: 1rem auto;
    }

    body {
        width: 100%;
    }

    .content {
        width: 90%;
    }

}

@media (width > 501px) and (width <= 940px){
    .content {
        width: 80%;
        margin: auto;
    }
}

/* ==============
    Text style
===============*/

a {
    font-family: sans-serif, Arial, Helvetica;
    -webkit-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out;
}

a:hover {
    -webkit-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out;
}

footer a {
    font-size: 1.125rem; /* ONLY FOR FOOTER */
}

.linkWhiteBG {
    color: var(--red-bg);
    text-decoration: none;
    word-wrap:break-word;
}

.linkWhiteBG:hover {
    color: var(--black-bg);
}

.linkRedBG {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

.linkRedBG:hover {
    color: var(--black-bg)
}

.linkDarkBG {
    color:white;
    text-decoration: none;
}

.linkDarkBG:hover {
    color:var(--red-bg)
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--ff-heading);
    padding-top: calc(var(--margin-sm)*2);
    padding-bottom: var(--margin-sm);
}

h1 {
    text-align: center;
}

p {
    margin-bottom: .75rem;
    margin-top: .75rem;
}

ul {
    list-style: none;
}

.btn,
.more-btn,
.btnPop{
    color:black;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.more-btn {
    font-style: italic;
    color: var(--red-bg);
}

.more-btn:hover {
    color: var(--black-bg);
}

.btn,
.btnPop {
    color: white;
    text-decoration: none;
    background-color: var(--red-bg);
    text-transform: uppercase;
    border-radius: 1.2em;
    padding: 1em;
}

.btn:hover,
.btnPop:hover {
    color: var(--red-bg);
    background-color: var(--black-bg);
}

.btn[disabled] {
    opacity: 0.3;
}

.btn[disabled]:hover {
    background-color: var(--red-bg);
    color: white;
}

.btnRedBG {
    background-color: white;
    color: black;
}

.uppercase {
    text-transform: uppercase;
}

.icons {
    height: 3rem;
    fill: var(--red-bg);
    cursor: pointer;
}

/* ------------------------------- ALL PAGES ---------------------------------*/

/* ==============
    Header & Nav
===============*/


.header img{
    /* max-height: 20em; */
    width: 100%;
    object-fit: contain;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    background-color: var(--red-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: var(--gap) 
}

.list-item {
    list-style: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


@media (width < 501px) {

    .header img {
        max-height: 200px;
    }
}

@media (width < 1000px) {
    .navbar {
        flex-direction: column;
        padding: .5rem;
        max-width: 90%;
    }
    .hamburger {
        display: block;
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--black-bg);
    }

    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--black-bg);
    }

    .menu {
        display: none;
        position: relative;
        left: -200%;
        gap: var(--gap-sm);
        flex-direction: column;
        background-color: var(--red-bg);
        width: 90%;
        text-align: center;
        
    }

    .hamburger.active {
        border-bottom: 2px solid var(--black-bg);
        width: 90%;
    }

    .menu.active {
        display: flex;
        left: 0;
    }

    .menu.active .first{
        margin-top: var(--margin-sm);
    }

    .menu.active .last{
        margin-bottom: var(--margin-sm);
    }


}

@media (width > 501px) and (width <= 940px){
    .header img {
        max-height: 200px;
    }
}


/* ==============
    Footer style
===============*/

footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: var(--black-bg);
    color: white;
}

.two-sides {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.side-left,
.side.right {
    flex-basis: 50%;
}

.social-media,
.social-media ul,
.email-contact,
nav ul{
        margin-top: var(--margin-sm);
        margin-bottom: var(--margin-sm);
    }

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-media ul {
    display: flex;
    gap: 2rem;
}

.bottom-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.bottom-center ul {
    display: flex;
    gap: var(--gap-sm);
}

.email-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm)
}


@media (width < 501px) {

    .social-media,
    .social-media ul,
    .email-contact,
    .bottom-center{
        margin-top: .5rem;
        margin-bottom: .5rem;
        justify-content: center;
    }


    .bottom-center ul {
        flex-direction: column;
        width: 90%;
        justify-content: space-evenly;
        align-items: center;
        gap: .5rem;
    }

    .two-sides {
        flex-direction: column;
        align-items: center;
    }

    .side-left,
    .side-right {
        flex-basis: 100%;
    }

}

@media (width > 502px) and (width <= 940px){

    .two-sides {
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .social-media{
        justify-content: flex-end;
        align-content: center;
    }

    .bottom-center{
        justify-content: center;
    }

    .bottom-center ul {
        display: flex;
        flex-wrap: wrap;
    }

    .bottom-center ul li {
        text-align: center;
    }
}

/* FAB BUTTONS */

.fab-wrapper a {
    text-decoration: none;
}

.fab-wrapper {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.fab-checkbox[aria-hidden="true"]{
    display: none;
}


.fab {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background: var(--red-bg);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    border-bottom-right-radius: 6px;
    cursor: pointer;
}

.fab:hover {
    background-color: var(--black-bg);
}
  
.fab:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
}

.fab-checkbox:checked[aria-expanded="true"] ~ .fab:before {
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
}
  
.fab-dots {
    position: absolute;
    height: 4px;
    width: 4px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
  
.fab-dots-1 {
    left: 14px;
}

.fab-dots-2 {
    left: 50%;
}

.fab-dots-3 {
    right: 14px;
}
  
.fab-checkbox:checked ~ .fab .fab-dots {
    height: 6px;
}
  
.fab .fab-dots-2 {
    transform: translateX(-50%) translateY(-50%);
}
  
.fab-checkbox:checked ~ .fab .fab-dots-1 {
    width: 32px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.fab-checkbox:checked ~ .fab .fab-dots-3 {
    width: 32px;
    border-radius: 10px;
    right: 50%;
    transform: translateX(50%) translateY(-50%) rotate(-45deg);
}
  
.fab-wheel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform-origin: bottom right;
    transform: scale(0);
    overflow: visible
}
  
.fab-checkbox:checked ~ .fab-wheel {
    transform: scale(1);
}

.fab-action {
    position: absolute;
    background: rgb(0, 0, 0);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: White;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 0;
}
  
.fab-checkbox:checked ~ .fab-wheel .fab-action {
    opacity: 1;
}
  
.fab-action:hover {
    background-color: var(--black-bg);
}
  
.fab-wheel .fab-action-1 {
    right: 0rem;
    top: 0;
}
  
.fab-wheel .fab-action-2 {
    right: 3.4rem;
    top: 0.5rem;
}

.fab-wheel .fab-action-3 {
    left: 0.5rem;
    bottom: 3.4rem;
}

  .fab-wheel .fab-action-4 {
    left: 0;
    bottom: 0rem;
}

.fab-icons {
    fill: white;
    height: 1.75em;
}

/* @media (width < 501px) {
    .fab-wrapper {
        left: 14px;
    }
} */


/* --------------------------------- EVENTS --------------------------------- */

.event-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem .5rem;
    margin-bottom: var(--margin-sm);
}

.cards {
    padding-bottom: 1rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0px 10px 10px 0px var(--black-bg);
    height: 100%;
}

.event-pic img {
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

.date {
    margin: 0;
    text-align: center;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--margin-sm);
    align-content: center;

}

.buttons {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    /* margin-bottom: var(--margin-sm); */
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    align-items: baseline;
}

.sold-out {
    border-radius: .5rem;
    margin:0;
}

.margins p {
    margin: .75rem 3rem;
} 

.margins li{
    margin: .3rem 3rem;
}


@media (width < 501px){
    
    .event-cards {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .event-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: .2rem;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--gap)
    }
}

@media (width > 501px) and (width <= 940px){
    .event-cards {
        justify-content: center;
    }
}

/* --------------------------------- HOME PAGE --------------------------------- */

/* ==============
    Pily Info
===============*/

/* START SLIDER */

.slider {
    width:30%;
    height: 400px; /*should be the same height as the images*/
}

.slider-paragraph{
    width:70%;
}



.img-comp-container {
    position: relative;
    height: 100%;
  }
  
  .img-comp-img {
    position: absolute;
    overflow: hidden;
  }
  
  .img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    /*set the appearance of the slider:*/
    width: 40px;
    height: 40px;
    background-color: var(--red-bg);
    opacity: 0.7;
    border-radius: 50%;
  }

.img-comp-slider::before, 
.img-comp-slider::after{

    position: relative;
    top: 5%;
    color: white;
    font-size: 1.5rem;
}

.img-comp-slider::before {
    content: '\003C';
    right: -2%;
}

.img-comp-slider::after {
    content: '\003E'; 
    left: 36%;
}

.event-svg {
    fill: var(--red-bg);
    height: 3em;
}

@media (width < 700px) {

    .content-slider{
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    }

    .slider,
    .slider-paragraph {
        width:100%;
    }

}

/* START DIV a LITTLE BIT ABOUT PILY */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50rem;
    max-height: 70rem;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100rem;
    height: 80%;
}

.red, .black {

    width: 50%;
    height: 50%;
}

.black {
    background-color: var(--black-bg);
    align-self: flex-start;
    
}

.red {
    background-color: var(--red-bg);
    align-self: flex-end;
}

.wrapabout {
    position: absolute;
    display: flex;
}

.left,
.right {
    display: flex;
}

.left {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: 49%;
    background-color: white;
}

.right {
    flex-basis: 51%;
    /* width: 500px; */
}


.right img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.faq-details {
    margin-bottom: var(--margin-sm);
}

.faq {
    display: flex;
    justify-content: center;
}

.question {

    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid black;
    overflow: hidden;
}

.content-flex-row {
    display: flex;
    margin-bottom: var(--gap);
}

.flex-row-center {
    justify-content: center;
    align-items: center;
}

#readMore{
display: none;
}

#readMore.show{
    display: block;
}

.flags {
    gap: var(--gap-sm)
}

@media (width >= 691px) and (width <= 1172px) {

    
    .about {
        width: 90%;
    }

    .wrapper {
        flex-direction: column;
        margin: auto;
        width: 85%;
    }
    .red,
    .black {
        align-self: center;
        width: 90%;
    }
}

@media (width < 691px) {

    .about {
        height: 100rem;
        width: 90%;
    }

    .wrapper {
        flex-direction: column;
        margin: auto;
        width: 85%;
    }
    .red,
    .black {
        align-self: center;
        width: 100%;
    }

    .wrapabout {
        flex-direction: column;
        width: 90%;
    }

    .right {
        width: 100%;
    }

    .left {
        text-align: center;
    }

        .flags img {
        width: 250px;
    }
}


/* START CAROUSEL SECTION */

.carousel{
    position: relative;
    height: 650px;
    width: 70%;
    margin: 0 auto;
}
    
.carousel_track-container{
    
    height: 100%;
    position: relative;
    overflow: hidden;
}
    
.carousel_track{
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
}
    
.trans_ease{
    transition: transform 250ms ease-in;
}
    
.carousel_slide{
    position:absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    
}
    
.carousel_button{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
}

.carousel_button svg {
    height: 3rem;
    }

#prevButton,
#nextButton {
    cursor: pointer;
}
    
#prevButton{
    left: 0;
    z-index: 1;
}
    
#nextButton{
    right: 0;
}
    
    
    
.comments {
    box-shadow:  0px 10px 10px 0px var(--black-bg);
    padding: 3rem;
    border-radius: 1rem;
    gap: var(--gap-sm);
    width: 75%;
    border: none;
}
    
.customer-comment p {
    text-align: center;
    font-style: italic;
}
    
.customer-name{
    margin-bottom: 0;
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
}

.customer-country{
    padding-top: 0;
    padding-bottom: 1rem;
    margin-bottom: 16px;
}

.quo-svg {
    fill: var(--red-bg);
    opacity: 0.4;
    height: 5rem;
}
    
@media (width < 900px) {
    .carousel{

        height: 800px;
        width: 100%;
        }

    .comments {
        padding: 1rem;
    }

}
    

/* --------------------------------- IMPRESSUM ----------------------------------*/

.lessMargins p{
    margin-top: .1rem;
    margin-bottom: .1rem;
}

/* --------------------------------- COACHING PAGE --------------------------------- */
.content-flex{
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.two-side-flex {
    display: flex;
    margin-bottom: var(--margin-sm);
    justify-content: center;
    gap: var(--gap-sm);
}

.two-side-flex .side-left,
.two-side-flex .side-right {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    justify-content: center;
    flex-basis: 100%;
}

.square {
    display: flex;
    flex-direction: column;
    background-color: white;
    flex: 1 1 auto;
    text-align: center;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bold {
    font-weight: bolder;
}

.content-flex video{
    align-self: center;
}

.center-bold {
    text-align: center;
}

.video {
max-width: 400px;
}

@media (width < 600px) {
    .content-flex .video {
        display: flex;
        max-width: 300px;
        margin: auto;
    }
}

@media (min-width: 400px) and (max-width: 900px) {
    .two-side-flex {
        flex-direction: column;
    }

    .square {
        border-radius: 0;
    }
}

/* COACHING CARDS */

.coaching-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.coaching-item {
    box-shadow: 0px 10px 10px 0px var(--black-bg);
    border-radius: 1rem;
    position: relative;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}

.coaching-item img {
    max-width: 100%;
    background: linear-gradient(to top, transparent 20%, #333 75%);
    object-fit: contain;
}

.coaching-item h3 {
    font-size: 1.125rem;
    margin-top: 0;
}

.price {
    font-size: 2em;
    margin-bottom: 1em;
}

.session-duration {
    color: rgba(0, 0, 0, .5);
}

.popular {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: .3em;
    color: white;
    border-radius: .5rem;
}

.coaching-item .btn {
    box-shadow: 0px 5px 5px 0px var(--black-bg);
    position: absolute;
    top: 92%;

}


/* --------------------------------- DANCE PAGE --------------------------------- */

.dance-video {
    float: right;
}

.list {
    list-style:inside;
    margin-bottom: 20px;/*var(--gap);*/
}

.list li {
    overflow: visible;
}

@media (width <= 800px) {
    .dance-video {
        float:none;
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 350px;
        max-width: 300px;
        margin: auto;
        margin-bottom: var(--margin-sm);
    }
}

/* DIALOG */

button[disabled] {
    cursor: default;
}

.dialog::backdrop {
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(5px);
}

.dialog[open] {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dialog {
    min-width: 20em;
    max-width: 40em;
    min-height: 50vh;

    border-radius: 1em;
    border: none;
    box-shadow: 0px 10px 10px 0px black;
    margin: auto;
    padding: 1em;
}

.dialog[open] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog  div {
    margin-block: auto;
}

.flex-align-center {
    display:flex;
    align-items: baseline;
}

.dialog-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

input[name="terms-cond"],
input[name="privacy-policy"] {
    margin-right: 5px;
}
/* ---------------------------- ABOUT ME PAGE -------------------------------------------- */

.pily_1 {
    border-radius: 100vw;
    width: var(--img-size);
    height: var(--img-size);
    object-fit: cover;
    object-position: center right;
}

/* ---------------------------- COACHING Pictures-------------------------------------------- */

.picture_sq_1_1 {
    width: var(--img-size);
    height: var(--img-size);
    object-fit: contain;
    object-position: center right;
}

.picture_sq_cov {
    width: var(--img-size);
    height: var(--img-size);
    object-fit: cover;
    object-position: center right;
}

.circular {
    border-radius: 100vw;
    width: var(--img-size);
    height: var(--img-size);
    object-fit: cover;
    object-position: center center;
}

/* ---------------------------- DANCE Pictures-------------------------------------------- */
.heroBg { 
    height: 400px;
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    object-fit: contain;
}

.content_list_flex {  /*Pily's fix for the Lists in flex in -Dance-*/
    font-size: 1rem;
    width: 85%;
    max-width: 900px;
    margin: auto;
}

@media (width <= 600px) {
    .heroBg {
        height: 200px;
    }
}

  @media (max-width: 768px) {
    .responsive-two-col-list {
      column-count: 1 !important;
    }
  }

  @media (min-width: 769px) {
    .responsive-two-col-list {
      column-count: 2;
      column-gap: 30px;
    }
  }