/* General Styles */
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #FFFFFF;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-family: Optima;
}

ol, ul {
  list-style: none;
}

a {
  color: #F26B8A;
  text-decoration: none;
}

.hidden {
  display: none;
}

/* Navigation Styles */
.nav {
  background-color: #FFF0F5;
  display: flex;
  align-items: center;
  height: 50px;
}

.nav__link {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.nav__link:hover {
  color: #F79AC0;
}

.nav__list {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.nav__list-item {
  padding: 5px;
}

.nav__dropdown {
  display: none;
  position: absolute;
  background-color: #FFF0F5;
  padding: 10px;
}

.nav__services:hover .nav__dropdown {
  display: block;
}

.nav__dropdown .nav__link {
  font-size: 13px;
}

/* Hamburger Styles */
.nav__checkbox {
  opacity: 0;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
}

.nav__checkbox:checked ~ .nav__list {
  opacity: 1;
  transition: 0.5s opacity ease-in;
}

.nav__checkbox:checked ~ .nav__list .nav__dropdown {
  position: unset;
  display: block;
}

.hamburger {
  position: absolute;
  display: none;
  width: 30px;
  padding: 10px;
  z-index: 1;
}

.hamburger__patty {
  border-bottom: 3px solid #F79AC0;
  transition: 0.5s all ease-in;
}

.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  height: 5px;
  transition: 0.5s all ease-in;
}

.hamburger::before {
  border-top: 3px solid #F79AC0;
}

.hamburger::after {
  border-bottom: 3px solid #F79AC0;
}

.nav__checkbox:checked ~ .hamburger:before {
  transform: rotate(-45deg);
  height: 0;
  transition: 0.5s all ease-in;
}

.nav__checkbox:checked ~ .hamburger:after {
  transform: rotate(45deg);
  height: 0;
  transition: 0.5s all ease-in;
}

.nav__checkbox:checked ~ .hamburger .hamburger__patty {
  border: 0;
  transition: 0.5s all ease-in;
}

/* Footer Styles */
.footer {
  background-color: #FFF0F5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  color: #F79AC0;
}

.footer__list {
  display: flex;
}

.footer__emoji {
  line-height: 0.9;
  font-size: 1.5rem;
}

/* Sidebar Styles */
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px; 
  position: fixed;
  right: 0;
  top: 80px;
  background-color: rgba(0, 0, 0, 0);
}

.sidebar__list .home__logo {
  padding: 7px;
}

/* Home Styles */
.home {
  margin-bottom: 50px;
}

.home__hero {
  width: 100%;
}

.home__logo {
  margin-right: 15px;
}

.home__quote {
  margin: 50px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 5px #F26B8A;
  background-color: #FFF0F5;

}

.home__quote--italic {
  font-style: italic;
}

.home__slideshow {
  display: none;
  text-align: center;
}

.home__slide {
  width: 300px;
  height: 250px;
}

/* About Styles */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 800px;
  margin: 0 auto;
}

.about__image {
  margin: 100px 0;
}

.about__heading {
  font-size: 3rem;
  margin-bottom: 50px;
  font-weight: 600;
}

.about__intro {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 200;
}

.about__intro:first-letter {
  font-size: 3rem;
  float: left;
  padding-right: 15px;
  font-weight: 700;
}

.about__paragraph {
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 40px 0;
}

.about__paragraph--small-space {
  margin: 0;
}

.about__subheading {
  align-self: flex-start;
  font-size: 2rem;
  padding: 30px 0;
}

.about__sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
  column-gap: 50px;
  margin: 50px 0;
}

.about__sections .about__heading {
  font-size: 1.3rem;
  font-weight: 500;
}

/* Why Yoga Styles */
.why-yoga {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
}

.why-yoga__heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-yoga__paragraph {
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 15px 0;
}

.why-yoga__quote {
  font-style: italic;
}

.why-yoga__section {
  padding: 20px 0;
}

.why-yoga__subheading {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 20px;
  text-align: center;
}

/* Services Styles */
.services {
  margin: 80px;
}

.services__heading {
  font-size: 2.3rem;
  padding: 20px 0;
  font-weight: 600;
}

.services__subheading {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 20px;
  text-align: center;
}

.services__subtitle {
  font-style: italic;
}

.services__paragraph {
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 15px 0;
}

.services__paragraph-reviews {
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 15px 0;
  text-align: center;
}

.services__list {
  list-style: unset;
  margin-left: 50px;
  font-size: 1.2rem;
}

.services__nav-item {
  padding: 20px;
}

.services__list-item {
  text-align: left;
}

/* Practice Styles */
.practice__list {
  list-style: unset;
  margin-left: 50px;
}

.practice__list-item {
  font-weight: 700;
  padding: 10px;
  list-style: 
}

/* Meditation Styles */
.meditation__image {
  height: 200px;
  width: 400px;
}

.meditation__subheading {
  font-size: 1.7rem;
}

/* Gallery Styles */
.gallery {
  margin: 50px 200px;
  display: flex;
  flex-direction: column;
}

.gallery__heading {
  font-size: 3rem;
  text-align: center;
  padding-top: 20px;
}

.gallery__subheading {
  font-style: italic;
  text-align: center;
}

.gallery__hero {
  width: 100%;
  margin-top: 50px;
}

.gallery__header {
  background-color: #FFFFFF;
  padding: 50px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery__header .gallery__heading {
  font-size: 1.4rem;
  font-weight: 600;
}

.gallery__rule {
  border-top: 1px solid #CCCCCC;
  width: 100px;
  margin: 20px;
}

.gallery__header .gallery__subheading {
  font-style: unset;
  color: #CCCCCC;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.gallery__intro {
  background-color: #FAFAFA;
  padding: 50px;
}

.gallery__paragraph {
  padding: 10px;
  font-size: 0.9em;
  line-height: 1.3;
}

.gallery__grid-container {
  background-color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
}

.gallery__grid-container .gallery__heading {
  width: 760px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.4rem;
  padding: 20px;
  font-weight: 800;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery__image {
  width: 400px;
  height: 300px;
}

.gallery__section {
  display: flex;
}

.gallery__section--alt .gallery__column {
  background-color: #222;
  color: #FFFFFF
}

.gallery__section .gallery__image {
  flex: 1;
  height: 700px;
}

.gallery__section .gallery__image-6 {
  height: 900px;
}

.gallery__section .gallery__image-7 {
  height: 900px;
}

.gallery__section .gallery__image-8 {
  height: 800px;
}

.gallery__section .gallery__image-9 {
  height: 600px;
}

.gallery__section .gallery__image-10 {
  height: 800px;
}

.gallery__section .gallery__image-11{
  height: 600px;
}

.gallery__section .gallery__image-12{
  height: 700px;
}

.gallery__section .gallery__image-13{
  height: 900px;
}

.gallery__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
  width: 100%;
}

.gallery__title {
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 40px;
}

.gallery__column .gallery__paragraph {
  font-size: 1.0rem;
  padding: 10px 40px;
}

.gallery__section .gallery__image {
  order: 1;
}

.gallery__section .gallery__column {
  order: 2;
}

.gallery__section--alt .gallery__image {
  order: 2;
}

.gallery__section--alt .gallery__column {
  order: 1;
}

/* Contact Styles */
.contact {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact__heading {
  font-size: 2.3rem;
  padding: 20px 0;
  font-weight: 600;
}

.contact__list-item {
  padding: 20px;
  text-align: center;
}

/* Media Queries */
@media (max-width: 1000px) {
  .gallery {
    margin: 0;
  }

  .sidebar {
    display: none;
  }

  .nav__list {
    visibility: hidden;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    background-color: #FFF0F5;
    opacity: 0;
    transition: 0.5s opacity ease-out;
  }

  .nav__checkbox:checked ~ .nav__list {
    visibility: visible;
    opacity: 1;
    transition: 0.5s opacity ease-in;
  }

  .hamburger {
    display: block;
  }

  .home__slideshow {
    display: block;
  }

  .about {
    width: auto;
    padding: 20px;
  }

  .about__sections {
    grid-template-columns: 1fr;
  }

  .about__heading {
    font-size: 2rem;
  }

  .about__paragraph {
    margin: 20px 0;
  }

  .services {
    margin: 30px;;
  }

  .meditation__image {
    width: 322px;
  }

  .gallery {
    margin: 0;
  }

  .gallery__grid-container .gallery__heading {
    width: 260px;
  }

  .gallery__grid {;
    grid-template-columns: 1fr;
  }

  .gallery__image {
    width: 300px;
    height: 200px;
  }

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

  .gallery__section .gallery__image {
    width: 100%;
    height: 500px;
  }

  .gallery__section--alt .gallery__image {
    order: 1;
  }

  .gallery__section--alt .gallery__column {
    order: 2;
  }

  .youtube {
    width: 300px;
    height: 200px;
  }
}

@media (min-width: 1000px) {
  .gallery {
    margin: 0;
  }

  .gallery__section {
    align-items: center;
    height: 600px;
  }

  .gallery__section .gallery__column {
    height: 600px;
  }

  .gallery__section .gallery__image {
    height: 600px;
  }
}