* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

:root {
  --main-color: #dd9c11;
  --secondary-color: #1b1b1b;
}

/* @font-face {
  font-family: "argonite";
  src: url("./assets/stone\ orgonite.woff");
} */
section {
  padding: 2%;
}

h2 {
  font-size: 2.5rem;
  line-height: 125%;
  padding: 1rem 0rem;
}
h3 {
  font-size: 1.25rem;
  line-height: 125%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav svg {
  cursor: pointer;
  z-index: 10;
}

.links {
  position: absolute;
  background: white;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transform: translateX(100%);
}
.links a {
  color: var(--secondary-color);
  font-size: 2rem;
}

.logo {
  display: flex;
  align-items: center;
}
.logo h1 {
  margin-left: 0.5rem;
  font-size: 2.5rem;
  font-family: 'DM Sans', sans-serif;
}

.logo img {
  width: 12rem;
}

.front-page {
  min-height: 100vh;
  color: white;
  
}

.slideshow-container {
  background-color: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; 
}

.slide {
  display: none; 
  width: 100%;
  height: 100%;
  animation-name: fade;
  animation-duration: 2s; /* You can adjust this for faster or slower fade */
}



.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%); 
  transition: opacity 2s, filter 2s;  /* Smoother transition for both opacity and filter */
}

/* New styles for smooth transitions mix photos*/
@keyframes fade {
  from {
    opacity: 0.2;  /* Start with a lower opacity */
    /* filter: brightness(40%);  Add additional darkness at start */
  }
  to {
    opacity: 1;
    /* filter: brightness(50%); */
  }
}


.selling-point {
  margin-top: 15vh;
  font-family: 'DM Sans', sans-serif;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.49);
  text-align: center;
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255), rgb(255, 255, 255));
  -webkit-background-clip: text;
/* color: transparent; */
}

.selling-point img {
  max-width: 30%;  /* Set a default (larger) size, suitable for mobile */
  display: block;  
  margin: 20px auto; 
}
.more{
    /* hide completely*/
    display: none;
  }
/* This media query will target screens with a minimum width of 768px (typically tablets and desktops) */
@media (min-width: 768px) {
  .more {
    display: block;
  }
  .selling-point img {
    max-width: 15%;  /* Set the image to a smaller size for larger screens */
  }
}
.selling-point h2 {
  font-size: 5rem;
  padding: 0;
}
.selling-point h3 {
  padding-top: 2%;
  font-family: sans-serif;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.49);
}
.ctas {
  margin-top: 2rem;
}
.ctas button {
  padding: 1.2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 24px #251a02;
  margin: 1rem;   /* Set the text color to white */
  font-weight: bold; /* Make the text bold */
  transition: background-color 0.3s, color 0.3s;
}
.ctas button:hover {
  background-color: white;     /* Inverted background color */
  color: var(--main-color);   /* Inverted text color to orange */
}

.cta-main {
  background-color: var(--main-color);
  color: var(--secondary-color);
  position: relative; /* Relative positioning to ensure anchor covers the whole button */

}
.cta-main a {
  text-decoration: none;
  color: var(--secondary-color);
}
.cta-sec {
  background-color: var(--secondary-color);
  color: white;
}

.hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.classes {
  /* white text with that orange outline */
  color: var(--secondary-color);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}
.videos {
  text-align: center; 
}

.videos > div {
  display: inline-block;
  margin: 0 auto; /* centers the block-level child elements */
}
  
.videos video {
  width: 100%;
  border-radius: 1rem;
  margin-top: 3.5rem;
  display: block; /* ensures video takes up the whole line and there's no white space */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}

.meditation,
.yoga,
.pilates {
  position: relative;
}
.videos h3 {
  position: absolute;
  color: white;
  text-shadow: -1px -1px 0 #dd9c11, 1px -1px 0 #dd9c11, -1px 1px 0 #dd9c11, 1px 1px 0 #dd9c11;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-size: 2rem;
  text-transform: uppercase;
}

.about {
  color: var(--secondary-color);
}
.about h2 {
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}
.about p {
  line-height: 150%;
  font-size: 1.2rem;
}
.about img {
  width: 100%;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  body {
    padding: 0% 10%;
  }
  .videos {
    display: flex;
    gap: 2rem;
  }
  .about {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
  }
  .about img {
    width: 50%;
  }
  .about h2 {
    text-align: start;
  }

}

p {
  font-family: 'Arial', sans-serif; 
  font-size: 16px; /* Adjusts the size of the text */
  line-height: 1.6; /* Gives a bit of space between each line for readability */
  margin-bottom: 20px; /* Adds space between paragraphs */
  text-align: justify; /* Aligns the text to both the left and right margins */
  padding: 0 15px; /* Adds a little horizontal padding */
}

/* Specific styles for the signup button */
.signup-btn {
  display: block;
  margin: 2rem auto; /* Increase vertical spacing around the button */
  padding: 1.5rem 2.5rem; /* Make the button larger */
  font-size: 1.5rem; /* Increase the font size for emphasis */
  background-color: var(--main-color); 
  color: white; 
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 24px #251a02;
  font-weight: bold; 
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.player {
  display: block;
  margin: 2rem auto; /* Increase vertical spacing around the button */
  font-size: 1rem; /* Increase the font size for emphasis */
  background-color: var(--main-color); 
  color: white; 
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 24px #251a02;
  font-weight: bold; 
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.signup-btn:hover {
  background-color: white; 
  color: var(--main-color); 
}

.signup-btn a {
  text-decoration: none;  
  color: inherit; /* Let the link inherit the color of the button for consistency */
}
footer {
  overflow: hidden;
  padding: 1.5rem 0;
  width: 100%;
  display: block;
  background-color: #03162e;  /* dark gray background, change as needed */
  color: #fff;  /* white text, change as needed */
  text-align: center;  /* centering text and content */
}

.footer-content a {
  display: inline-block;  /* for side-by-side alignment */
  margin: 0 1rem;  /* horizontal margin for spacing */
  text-decoration: none;  /* removing default link styling */
  color: inherit;  /* inheriting footer color, so white in this case */
}

.footer-content img {
  width: 24px;  /* icon width */
  height: 24px;  /* icon height */
  vertical-align: middle;  /* align icon with the middle of the text */
  margin-right: 0.5rem;  /* spacing between icon and label */
}

/* Optional hover effect */
.footer-content a:hover {
  color: #ff7f00;  /* changing color on hover, choose an appropriate color */
}

/* Standard (Desktop) positioning */
.upcoming-image {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 30%; 
  height: auto;
  z-index: 1000;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) { 
  .upcoming-image {
      position: relative; 
      top: initial;
      right: initial;
      width: 80%; /* Increase this if you need the image to be bigger on mobile */
      margin-top: 20px;
      margin-left: auto;
      margin-right: auto;
      display: block;
  }
}

.signup h1 {
  font-size: 3rem;
  text-align: center;
  color: black;
  /* add shadow white */
  text-shadow: -1px -1px 0 rgb(110, 110, 110), 1px -1px 0 rgb(110, 110, 110), -1px 1px 0 rgb(110, 110, 110), 1px 1px 0 rgb(110, 110, 110);
}

.side-by-side {
  display: flex;
  margin-top: 5%;
  justify-content: space-between;
}

.sass-bio {
  /* centre svg img on page and fill without stretch */
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;  
}

/* Mobile devices */
@media only screen and (max-width: 768px) {
  .flex-container {
      flex-direction: column;
  }
  
  .side-by-side {
    flex-direction: column;
      width: 100%;   /* Make the image take the full width on mobile */
      margin-right: 0;   /* Reset the margin */
  }
}



