/*Mobile CSS for Mobile first Design starts here*/

    /* Homepages header styles starts here */
    .homepage-header #top-nav {max-width:32%; position:absolute; width: 80vw; top:5%; left: 25%; transform: translateX(-50%); z-index: 999;}
    .homepage-header #top-nav #logo{display: inline-block;}
    .homepage-header #top-nav #logo a{text-decoration: none;}
    .homepage-header #top-nav #logo a img{max-width:150px;}
    .homepage-header #top-nav #menu{display: none;}
    /* Homepages header styles ends here */

  /* Hamburger Menu Styles start here */
  *,
  *::after,
  *::before {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  :root {
    --bar-width: 60px;
    --bar-height: 8px;
    --hamburger-gap: 6px;
    --foreground: white;
    --background: #333;
    --hamburger-margin: 40px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }

  .hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);

    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    width: max-content;
    position: absolute;
    top: var(--hamburger-margin);
    right: var(--hamburger-margin);
    z-index: 10;
    cursor: pointer;
  }

  .hamburger-menu:has(input:checked) {
    --foreground: white;
    --background: white;
  }

  .hamburger-menu:has(input:focus-visible)::before,
  .hamburger-menu:has(input:focus-visible)::after,
  .hamburger-menu input:focus-visible {
    border: 1px solid var(--background);
    box-shadow: 0 0 0 1px var(--foreground);
  }

  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing),
      background-color var(--animation-timing);
  }

  .hamburger-menu input {
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
  }

  .hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
  }

  .hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
  }

  .hamburger-menu input:checked {
    opacity: 0;
    width: 0;
  }

  .sidebar {
    padding: 0.5rem 1rem;
    background-color: var(--foreground);
    color: var(--background);
    width: 0; /* Start with 0 width */
    min-height: 1vh;
    position: absolute;
    top: 100px;
    right: 15px;
    border-radius:15px;
    opacity: 0; /* Fully transparent */
    display: none; /* Initially hidden */
    transition: width var(--animation-timing), opacity var(--animation-timing);
    z-index: 9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft black shadow */
  }

  .hamburger-menu:has(input:checked) + .sidebar {
    display: block; /* Show element */
    opacity: 1; /* Fade in */
    width: 10rem; /* Expand to full width */
  }

.sidebar nav ul {list-style: none; padding: 0; margin: 0;}
.sidebar nav ul li {padding: 5px 0px; margin-bottom: 0px;}
.sidebar nav ul li a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #cc3333;
  background-color: #332e2e;
  padding: 10px 15px;
  display: block;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.sidebar nav ul li a:hover {
  background-color: #cc3333;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
/* Hamburger Menu Styles ends here */

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.SliderMYDM{
  display: none;
  position:absolute; 
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index:2;
}

.SliderMYDM ul{list-style: none; padding: 0;}
.SliderMYDM ul li.mydm{
  display: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  margin: 10px 0 0 12px;
  color:white;
}

.SliderMYDM ul br{display: none;;}
.SliderMYDM ul li{margin:10px 0;}

.SliderMYDM ul li a.Lessons{
  font-family: "Montserrat", sans-serif;
  font-size:12px;
  color:#ffffff; text-decoration:none; 
  padding: 3px 10px;
  border-radius: 15px;
  border: 1px solid white;
  margin:5px;
}
.SliderMYDM ul li a.Lessons:hover{color: #c4afaf;}


/* Hide the images by default */
.mySlides {
  display: none;
}

.mySlides img{max-width: 100%;}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.mySlides .text {
  display: none;
  color: #f2f2f2;
  font-family: "Montserrat", sans-serif;
  font-size: 2vw;
  padding: 8px 12px;
  position: absolute;
  Top: 24vw;
  left: 8vw;
  width: 21%;
  text-align: left;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #cc3333;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.kissMe{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 95%; /* Maximum width for better alignment */
  padding: 17px 23px 15px 17px;
  background-color: #ffffff; /* Light background color for contrast */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
  margin: 20px auto; /* Center align the container */
}

.kissMe .video-container{
  flex: 1 1 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 56.20%;
  height: 0;
  border-radius: 15px; /* Rounds the video corners */
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover transition */
}

.kissMe .video-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px; /* Rounds the video corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Shadow for depth */
}
.kissMe .video-container:hover{
  transform: scale(1.05); /* Slight zoom on hover */
}
.kissMe .video-container iframe:hover{
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}
.kissMe .vid-desc{
  font-family: "Montserrat", sans-serif;
  font-size:12px;
  margin-top:10px;
}
.kissMe .vid-desc h3{
  font-size:11px;
  font-weight: 500;
  color: #000;
  text-align: left;
}

.kissMe .vid-desc h2{margin-top:15px;}
.kissMe .vid-desc p{font-size:11px; margin-bottom:15px;}

#get-your-moves-right{ 
  padding: 40px;
  background-color: #ffffff; /* Light background color for contrast */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
  max-width: 95%; /* Maximum width for better alignment */
  margin: 1vw auto; /* Center align the container */
}
#get-your-moves-right .wrapper{
  display: flex;
  flex-wrap: wrap; /* Adjusts content on smaller screens */
  justify-content: space-between; /* Spacing between text and video */
  align-items: center;
}
#get-your-moves-right .wrapper .text{
  flex: 1 1 50%;
  max-width:50%;
  font-family: "Montserrat", sans-serif; 
  margin: 5vw 0;
}
#get-your-moves-right .wrapper .text h2{font-size: 7vw; color:#000; text-align: left;}
#get-your-moves-right .wrapper .text p{font-size: 4vw; text-align: left;}
#get-your-moves-right .wrapper .vid-wrap{
  flex: 1 1 50%;
  max-width: 50%;
  position: relative;
  padding-bottom: 89.20%;
  height: 0;
  border-radius: 15px; /* Rounds the video corners */
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover transition */
}

#get-your-moves-right .wrapper .vid-wrap:hover{
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

#get-your-moves-right .wrapper .vid-wrap video{ 
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px; /* Rounds the video corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Shadow for depth */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover transition */
}


#as-seen-at{
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 95%;
    margin: 20px auto;
    text-align: center;}
#as-seen-at h2{font-family: "Montserrat", sans-serif; color: #000; padding: 2vw 0 0 0;}
#as-seen-at ul{list-style:none; padding: 35px 0 35px 0;}
#as-seen-at ul li{display:inline-block; padding:2vw 2vw;}
#as-seen-at ul li img{max-width:115px; vertical-align:middle;}

#about h2{font-family: "Montserrat", sans-serif; font-size:48px; text-align: center; color: rgb(6, 6, 6); margin-top:20px; }
#about .danny-black-logo{width: 100%; text-align: center;}
#about .danny-black-logo img{max-width: 30%; min-width:70%; margin: 0 px auto;}
#about .text{
  width:80%; 
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
  max-width: 95%; /* Maximum width for better alignment */
  margin: 20px auto; /* Center align the container */
}

#about .text .h3-p-img-wrap{overflow: hidden; /* Ensures that the parent div expands to contain floated elements */}
#about .text .h3-p-img-wrap h3{font-family: "Montserrat", sans-serif; font-size:32px; text-align: left; color: rgb(6, 6, 6); margin: 10px 0 10px 0; display: inline-block;}
#about .text .h3-p-img-wrap p{font-family: "Montserrat", sans-serif; font-size:16px; text-align: left; color: rgb(6, 6, 6); line-height: 30px; text-align: justify;}
#about .text .h3-p-img-wrap p a{text-decoration: none; color:black; font-weight: 500;}
#about .text .h3-p-img-wrap p a:hover{color: #cc3333; text-decoration: underline;}
#about .text .h3-p-img-wrap ul li a{text-decoration: none; font-weight: 500; color: black;}
#about .text .h3-p-img-wrap ul li a:hover{color: #cc3333; text-decoration: underline;}
#about .text .h3-p-img-wrap img.intro{
  float: right; 
  width:100%; 
  margin: 0 0 0 20px; 
  border-radius:15px;
 }

#about .text .h3-p-img-wrap img.training{
  float:left; width:100%; 
  border-radius: 15px;;
  margin: 0 20px 0 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Shadow for depth */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover transition */
}
#about .text .h3-p-img-wrap img.training:hover{
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}
#about .text .h3-p-img-wrap img.philosophies{float: right; width:100%; margin:0 0 0 20px; border-radius:15px;}
#about .text .h3-p-img-wrap ul{list-style-type: none; /* Removes the default bullets or numbers */
  padding-left: 0; /* Optional: Removes the default padding */}
  #about .text .h3-p-img-wrap ul li::before{
    content: "-"; /* Adds the hyphen before each list item */
    margin-right: 8px; /* Adds some space between the hyphen and the text */
    color: black; /* Optional: Sets the color of the hyphen */
  }
#about .text .h3-p-img-wrap ul li{font-family: "Montserrat", sans-serif; font-size:16px; text-align: left; color: rgb(6, 6, 6); line-height: 30px;}


/*Responnsie cosiderationas Logo and hmburger menu*/
@media (max-width: 475px) {
    .homepage-header #top-nav {
        max-width: 30%;
        position: absolute;
        width: 80vw;
        top: 3%;
        left: 24%;
        transform: translateX(-50%);
        z-index: 999;
    }
  .homepage-header #top-nav #logo a img{
    width: 100px;
    height: 45px;
  }
  :root{
    --bar-width: 46px;
    --bar-height:5px;
    --hamburger-margin: 24px;
  }
  .sidebar {top: 74px !important;}
  .numbertext{display: none;}
}

/* Mobile CSS for Mobile first Design ends here */


