html{
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    
  }
a{
  cursor: pointer;
}
button {
  cursor: pointer;
}
*::-webkit-scrollbar {
  width: 10px;
}
*::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);
}
*::-webkit-scrollbar-thumb{
  background: #ee94ac;
}
*::-webkit-scrollbar-thumb:hover {
  background: #f0678c; 
}

#ourPackagesPage{
  position: relative;
  top: -50px;
}
#aboutUsPage{
  position: relative;
  top: -5px;
}
#homePage{
  position: relative;
  top: -100px;
}



#mainHomePage{
  position: relative;
  top: -5px;
  transition: margin-top .5s;
}
.mobileNavigation{
  display: none;
  z-index: 998;
  position: fixed;
  top: 99px;
  background-color: #ffffff;
  width: 100%;
  height: 0px;
  transition: 0.5s;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}




.mobileNavigation a {
color: #000000;
text-decoration: none;
font-family: "DM Sans", sans-serif;
font-weight: normal;
font-size: 18px;
margin-bottom: 10px;
}
.mobileSection{
  margin-bottom: 20px;
}

.portfolioDropMenu{
  position: fixed;
  display: flex;
  flex-direction: column;
  background-color: #2b2b2b;
  width: 225px;
  z-index: 998;
  color: #ffffff;
  right: 350px;
  overflow: hidden;
  height: 0;
  transition: 0.5s;
}

.portfolioDropMenu ul {
  list-style: none;
  margin-left: 0;
  padding: 10px;
}
.portfolioDropMenu a {
  text-decoration: none;
  color: white;
  position: relative;
  width: 850px;
  transition: 0.3s;
}

.portfolioDropMenu a:hover{
  color: #ee94ac;
}
.portfolioDropMenu li {
  margin-bottom: 20px;
}

.packagesDropMenu{
  position: fixed;
  display: flex;
  flex-direction: column;
  background-color: #2b2b2b;
  width: 200px;
  z-index: 998;
  color: #ffffff;
  right: 225px;
  overflow: hidden;
  height: 0px;
  transition: 0.5s;
}

.packagesDropMenu ul {
  list-style: none;
  margin-left: 0;
  padding: 10px;
}
.packagesDropMenu a {
  position: relative;
  width: 850px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.packagesDropMenu a:hover{
  color: #ee94ac;
}
.packagesDropMenu li {
  margin-bottom: 20px;
}

.mobilePortfolioDropMenu{
  position: fixed;
  top: 200px;
  height: 0px;
  width: 100%;
  background-color: rgb(249, 249, 249);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.mobilePortfolioDropMenu ul {
  list-style: none;
  margin-left: 0;
  padding: 10px;
}
.mobilePortfolioDropMenu a {
  position: relative;
  width: 850px;
}
.mobilePortfolioDropMenu li {
  margin-bottom: 10px;
}


.mobilePackagesDropMenu{
  position: fixed;
  top: 250px;
  height: 0px;
  width: 100%;
  background-color: rgb(249, 249, 249);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.mobilePackagesDropMenu ul {
  list-style: none;
  margin-left: 0;
  padding: 10px;
}
.mobilePackagesDropMenu a {
  position: relative;
  width: 850px;
}
.mobilePackagesDropMenu li {
  margin-bottom: 10px;
}


  .homeNavbar {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    left: 0;
    padding: 10px;
    height: 80px;
    z-index: 999;
    transition: all 0.3s;
    user-select: none;
  }
  
  .navbar-hidden {
    top: -100%;
  }

  .locationContainer{
    width: 900px;
    height: 450px;
  }
  
  .studiologo{
    min-width: 80px;
    min-height: 80px;
    margin: 10px;
  }

  .homeNavbar-logo {
    float: left;
    margin-left: 50px;
    margin-top: -10px;
    position: relative;
  }
  
  .homeNavbar-logo img {
    max-height: 40px;
    position: relative;
  }

  .navbarCheckboxContainer{
    display: none;
    background: none;
    border: none;
    position: relative;
    float: right;
    margin-right: 15px;
    top: 30%;
    width: 40px;
    height: 40px;
  }
  #navbarCheckbox {
    display: none;
  }
  
  .toggle {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .3s;
  }
  
  .burger {
    position: relative;
    width: 30px;
    height: 22.5px;
    background: transparent;
    cursor: pointer;
    display: block;
  }
  
  .burger input {
    display: none;
  }
  
  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  
  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 6px;
    left: 6px;
  }
  
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  
  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
  }

  .homeNavbar-sections {
    position: relative;
    margin-right: 50px;
    margin-top: 30px;
    float: right;
  }
  
  .homeNavbar-sections ul {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .homeNavbar-sections li {
    display: inline-block;
    margin-left: 15px;
  }
  
  .homeNavbar-sections a {
    color: #000000;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .homeNavbar-sections:hover a {
    opacity: 0.5;
  }
  
  .homeNavbar-sections li:hover a {
    opacity: 1;
  }

  .welcomesection {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 150px);
    min-height: 500px;
  }
  
  .welcomeImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .welcomeToImage{
    position: relative;
    width: 300px;
    height: 300px;

  }
  
  .welcomesectionText {
    width: 300px;
    height: 400px;
    position: absolute;
    text-align: center;
    margin-top: -10px;
    font-family: 'Felix Titling', sans-serif;
  }

  .welcomeToText{
    font-size: 1rem;                                           
  }
  .companyName{
    font-size: 60px;
    font-weight: bolder;
  }
  .companySlogan{
    font-size: 20px;
    font-family: 'DM Sans';
    font-weight: 700;
    position: relative;
  }

  
.companySloganLine {
  content: "";
  position: relative;
  bottom: 10px;
  left: 60px;
  width: 60%;
  height: 1px;
  background-color: black; /* Adjust the color as needed */
}

  .welcomeToText, .companyName, .companySlogan {
    line-height: 0.7;
  }

.packagesTextAndLine{
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-left: 35px;
  margin-top: 60px;
  margin-bottom: 60px;
  width: fit-content;
}
.packagesText{
  color: #474747;
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  
}
.packagesLine{
  content: "";
  position: relative;
  width: 75%;
  height: 4px;
  background-color: #ffa8bf; /* Adjust the color as needed */
}

.packageText{
  position: relative;
  top: 5%;
  font-size: 1.5rem;
  font-weight: 600;
}

.allPackages{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
  justify-items: center;
  justify-content: space-around;
}

.allPackages a{
  text-decoration: none;
}
.package{
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
  width: 225px;
  height: 300px;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
  text-align: center;

}

.package .packageText {
  color: #474747; /* Initial color */
  transition: color 0.1s ease; /* Add a transition effect to the color change */
}

.package:hover .packageText {
  color: #fb7095; /* New color on hover */
}



.packageimg{
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 225px;
  object-fit: cover;
} 

.aboutUsSection{
  position: relative;
  top: 150px;
  width: 100%;
  height: 600px;
  background-color: #ffa5bb5b;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.studioImage{
  position: relative;
  left: 5%;
  top: 15%;
  height: 60%;
  width: 35%;
  object-fit: cover;
}

.aboutUsText{
  color: #474747;
  display: flex;
  flex-direction: column;
  align-items: end;
  position: relative;
  width: 45%;
  height: 450px;
  left: 10%;
  top: 20%;
}
.aboutUsTitleAndLine{
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}
.aboutUsTitle{
  font-size: 70px;
  font-weight: 700;
}

.aboutUsLine {
  content: "";
  position: relative;
  overflow: hidden;
  width: 70%;
  height: 4px;
  background-color: #474747; /* Adjust the color as needed */
}

.aboutUsDiscContainer{
  position: relative;
  top: 40px;
  height: 320px;
  overflow-y: auto;
}


.contactUsSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 200px;
}

.contactUsSectionp{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 100px;
}

.contactUsTextContainer{
  display: flex;
  align-items: center;
  width: 400px;
  height: 100px;
  margin-bottom: 50px;
}

.contactUsText{
  font-size: 60px;
  width: auto;
  margin: auto;
  z-index: 60;
  font-weight: 700;
  color: #474747;
}

.contactUsBox{
  z-index: 50;
  background-color: #fbd9e1ba;
  position: absolute;
  width: 270px;
  height: 50px;
  margin-left: 100px;
  margin-top: 50px;
}

.socialmedialogos{
  display: flex;
  flex-direction: row;
  width: 40%;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 50px;
}
.socialmedialogo{
  max-width: 50px;
}

.findUsSection{
  width: calc(100% - 140px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 70px;
}

.findUsTextContainer{
  display: flex;
  flex-direction: column;
}

.findUsText{
  font-size: 50px;
}

.locationDetails{
  font-size: 20px;
  line-height: 3;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.package:nth-child(2), .socialmedialogo:nth-child(2), .packageTier:nth-child(2), .packageGallerySliderli:nth-child(2){
  transition-delay: 160ms;
}
.package:nth-child(3), .socialmedialogo:nth-child(3), .packageTier:nth-child(3), .packageGallerySliderli:nth-child(3){
  transition-delay: 320ms;
}
.package:nth-child(4), .socialmedialogo:nth-child(4), .packageGallerySliderli:nth-child(4){
  transition-delay: 480ms;
}
.package:nth-child(5){
  transition-delay: 640ms;
}
.package:nth-child(6){
  transition-delay: 800ms;
}


/** PACKAGE.HTML STYLES **/
.differentPackagesSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.packageTitleAndLine{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.packageTitle{
  font-size: 50px;
  font-family: 'Felix Titling', sans-serif;
  margin-bottom: 0px;
}
.packageTitleSmall{
  font-size: 40px;
}
.packageTitleLine{
  width: 25%;
  height: 2px;
  position: relative;
  background-color: #ffa8bf;
  margin-bottom: 50px;
}
.packageTiers{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.packageTier{
  font-family: 'DM Sans';
  display: flex;
  flex-direction: column;
  background: rgb(253, 220, 228);
  align-items: center;
  width: calc(100vw - 70%);
  border-radius: 15px;
  min-height: 500px;
}
.packageTierTitleContainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.packageTierTitle{
  font-size: 55px;
  font-family: 'Felix Titling';
  font-weight: 800;
  margin-bottom: 0px;
  margin-top: 30px;
}
.packageTierTitleSmall{
  font-size: 42px;
}

.packageTierTitleSmaller{
  font-size: 30px;
}
.packageTierLine{
  position: relative;
  background-color: #000000;
  width: 80%;
  height: 2px;
}
.packageTierPrice{
  font-size: 25px;
  font-weight: 600;
  margin-top: 6px;
}

.packageTierDetails{
  height: 150%;
}
.packageTierDetails ul {
  display: flex;
  height: 80%;
  flex-direction: column;
  justify-content: space-between;
}

.packageTierDetail{
  font-size: 23px;
  position: relative;
  right: 10px;
  line-height: 1.5;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}

.addonSection{
  margin-top: 50px;
}

.addonTitle{
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-right: 70px;
}
.bookNowButtonContainer{
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: end;
  align-items: center;
  margin-top: 20px;
}
.bookNowButton{
  position: relative;
  font-size: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  color: #ffa8bf;
  width: 100%;
  height: 65px;
  padding: 15px;
  outline: none;
  border: none;
  transition: all 0.2s ease-in-out;
}

.bookNowButton:hover{
  background-color: #f784a3;
  color: #474747;
}
.fb{
  display: none;
}
.packageGallerySection{
  margin-top: 100px;
  font-family: 'DM Sans', sans-serif;
  color: #474747;
  background-color: #f4f4f4b1;
  padding: 20px;
}

.packageGalleryTitleContainer{
  width: calc(100% - 35px);
  font-size: 40px;
  font-weight: 600;
  margin-left: 35px;
  margin-bottom: 50px;
}
.packageGalleryTitle{
  margin-bottom: 0;
}
.packageGalleryLine{
  height: 3px;
  width: 20%;
  background-color: #ffa8bf;
  margin-top: 0;
}
.packageGallerySliderContainer{
  position: relative;
  width: 100%;
  margin: auto;
}
.packageGallerySliderImage{
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

.seeMoreButtonContainer a {
  width: 20%;
}
.seeMoreButton{
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  height: 60px;
  background-color: #ffa8bf;
  font-size: 20px;
  font-weight: 800;
  border: none;
  color: #474747;
  transition: all 0.2s ease-in-out;
}

.seeMoreButton:hover{
  background-color: #f688a5;
  color: #000000;
}
.seeMoreButtonContainer{
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.portfolioTitleContainer{
  position: relative;
  width: calc(100% - 100px);
  height: 100px;
  background-color: #e7a8a8;
  margin-left: 100px;
}

.portfolioTitle{
  position: relative;
  width: calc(100% - 100px);
  right: 60px;
  font-size: 40px;
  font-weight: 600;
  margin: 0;

}


.galleryimages{
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 40px;
  
}

.birthdayg {
  grid-template-columns: 6fr 5fr;
}
.familyg{
  grid-template-columns: 7fr 6fr 6fr;
}

.fineartg {
  grid-template-columns: 6fr 5fr;
}
.sitterbabyg{
  grid-template-columns: 6fr 6fr;
}
.newborng{
  grid-template-columns: 4fr 4fr 4fr;
}
.galleryimage{
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
}

.aboutPackageTitleContainer{
  width: calc(100% - 35px) ;
  font-size: 30px;
  padding-left: 35px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.aboutPackageLine{
  content: "";
  position: relative;
  width: 25%;
  height: 4px;
  background-color: #ffa8bf;
}

.aboutPackageTitle{
  margin: 0;
}

.packagePointCont{
  margin-bottom: 12.5px;
}

.aboutThisPackagePoints{
  font-size: 24px;  
  font-weight: 500;
  padding-left: 75px;
  padding-right: 75px;
  text-align: left;
}

.packagePointLine{
  content: "";
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #5c5c5c2a;
  margin-bottom: 12.5px;
}
@media(prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}


@media only screen and (max-width: 1300px) {
    .allPackages {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: center;
      column-gap: 20px;
      row-gap: 20px;
      justify-items: center;
    }

    .aboutUsLine{
      width: 70%;
    }
}

@media only screen and (max-width: 880px) {
  .packageTiers {
    flex-direction: column;
    align-items: center;
  }
  .packageTier {
    width: 70%;
    margin-bottom: 20px;
  }
 }
@media only screen and (max-width: 806px) {
  .allPackages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 20px;
    row-gap: 20px;
    justify-items: center;
  }
}

@media only screen and (max-width: 763px) {
  .mobileNavigation{
    display: flex;
  }
  .homeNavbar-sections{
    display: none;
  }
  .navbarCheckboxContainer{
    display: block;
  }

  .homeNavbar-logo{
    margin-left: 15px;
  }
  .galleryimages{
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
    
  }
  .aboutPackageTitle{
    font-size: 30px;
  }
  .aboutThisPackagePoints{
    font-size: 18px;
  }
}

@media only screen and (max-width: 700px) {
  
  .packagesText {
    font-size: 40px;
    margin-right: 20px;
  }
  .packagesLine {
    top: 5px;
  }
  .allPackages{
    grid-template-columns: 1fr;
  }

  .aboutUsSection{
    height: 600px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .aboutUsDiscContainer{
    height: 250px;
    width: 70%;
  }
  .aboutUsTitle {
    font-size: 40px;
  }
  .aboutUsLine{
    left: 0px;
  }
  .aboutUsText{
    left: 0%;
    top: 5%;
    width: 90%;
    align-items: center;
    justify-content: center;
  }
  .aboutUsTitleAndLine{
    align-items: center;
  }
  .aboutUsDisc{
    font-size: 15px;
    line-height: 0.5;
  }
  .studioImage{
    top: 50px;
    left: 0;
    
    height: 40%;
    width: 60%;
  }
  .contactUsTextContainer{
    width: 80%;
    height: 50px;
    margin-bottom: 20px;
  }
  .contactUsText{
    font-size: 35px;
  }

  .contactUsBox{
    display: none;
  }
  .findUsSection{
    width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }

  .socialmedialogo{
    max-width: 40px;
  }
  .findUsText{
    display: none;
  }
  .locationDetails{
    font-size: 20px;
    width: 500px;
    line-height: 2;
  }
  .locationContainer{
    width: 500px;
    height: 300px;
  }
  .socialmedialogos{
    margin-bottom: 20px;
    width: 80%;
  }
  .findUsSection {
    margin-bottom: 50px;
  }
  .galleryimages{
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    column-gap: 10px;
    row-gap: 10px;
    
  }
}

@media only screen and (max-width: 500px){
  .mobileNavigation {
    font-size: 12px;
  }
  .welcomesection{
    height: calc(100vh - 600px);
  }
  .welcomesectionText{
    width: 200px;
    height: 225px;
  }
  .welcomeToImage{
    height: 150px;
    width: 150px;
  }
  .companySlogan{
    font-size: 15px;
  }
  .companySloganLine{
    left: 40px;
    bottom: 5px;
  }
  .locationDetails{
    font-size: 15px;
    width: 300px;
    line-height: 2;
  }
  .locationContainer{
    width: 300px;
    height: 300px;
  }
  .packageTitle{
    font-size: 35px;
  }
  .packageTier{
    width: 80%;
  }
  .packageGalleryTitle{
    font-size: 30px;
  }
  .packageGallerySection{
    padding: 10px;
  }
  .seeMoreButton {
    height: 65px;
    width: 100px;
    font-size: 14px;
  }
  .packageGallerySliderContainer{
    width: 100%;
  }
  .contactUsSectionp{
    top: 50px;
  }
  .galleryimages{
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 20px;
    row-gap: 40px;
    
  }
  .aboutPackageTitle{
    font-size: 20px;
  }
  .aboutThisPackagePoints{
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media only screen and (max-width: 467px){
    .contactUsText{
      font-size: 40px;
    }
    .contactUsBox{
      margin-left: 50px;
    }
    .packageTierTitle{
      font-size: 35px;
    }
    .packageTitle{
      font-size: 27px;
    }
}

 