@import url('https://fonts.googleapis.com/css2?family=Englebert&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  height: 100%;
font-family: "Roboto", sans-serif;
font-size: 18px;
margin: 0;
background-image: url('/images/background8.png');
background-attachment: fixed;
background-color: #a7a1af;
}

.desktopHidden {
display: none;
}

.headerOuterNew {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  justify-content: space-between;
  align-items: center;
  background-color: #978ba8;
  color: #292333;
  box-shadow: 0px 15px 10px -15px #000;
  }

.headerLogoBox {
display: flex;
padding: 30px;
justify-content: center;
align-items: center;
}

.headerLogoImg {
max-width: 200px;
}

.headerBusinessInfoBox {
display: flex;
flex-direction: column;
padding: 30px 0px;
text-align: center;
justify-content: center;
align-items: center;
}

.businessTitle {
font-family: "Englebert", cursive;
font-size: 70px;
font-weight: bold;
color: #2a1c3d;
text-shadow: 1px 1px 0px #c0efdd, -1px -1px 0px #e0b1cf;
}

.phoneNumber {
font-size: 35px;
font-family: "Yrsa", serif;
line-height: 20px;
  }

.tagLine {
font-family: "Yrsa", serif;
font-size: 22px;
}

.contentContainer {
position: absolute;
z-index: 98;
width: 100%;
height: calc(100vh - 295px);
margin-top: 260px;
}

.contentContainerInner {
display: flex;
margin: auto;
width: 70%;
height: 100%;
padding: 50px;
background-color: #261938;
color: #8fb5a6;
text-align: justify;
}

.headerBusinessTitle {
padding: 20px 20px 20px 30px;
flex-grow: 1;
}

.businessName, .businessName a:link, .businessName a:active, .businessName a:visited {
font-family: "Englebert", cursive;
font-size: 50px;
font-weight: bold;
color: #2a1c3d;
text-shadow: 1px 1px 0px #c0efdd, -1px -1px 0px #e0b1cf;
text-decoration: none;
}

.headerPhoneNumber {
padding: 20px;
flex-grow: 1;
text-align: center;
align-self: flex-end;
}

.textingPlease {
font-size: 18px;
}

.headerNavigationMenu {
display: flex;
justify-content: space-evenly;
padding: 20px;
flex-grow: 1;
}

.navMenuItem {
text-transform: uppercase;
font-family: font-family: "Yrsa", serif;
font-size: 20px;
}

.footerOuter {
display: flex;
width: 100%;
position: fixed;
bottom: 0;
z-index: 99;
justify-content: center;
align-items: center;
background-color: #978ba8;
color: #292333;
box-shadow: 0px -10px 10px -15px #000;
}

.footerCopyright {
font-family: font-family: "Yrsa", serif;
font-size: 14px;
padding: 10px;
}

.indexStartBox {
display: flex;
margin: auto;
margin-top: 10%;
width: 70%;
max-width: 2000px;
border-radius: 3vmin;
background-color: #978ba8;
color: #292333;
box-shadow: 0px 15px 10px -15px #000, -1px -1px 3px 0px #c0efdd;
}

.indexStartBoxTagline {
display: flex;
align-items: center;
padding: 5%;
font-family: "Yrsa", serif;
font-size: 45px;
font-style: italic;
flex-basis: 50%;
}

.indexStartBoxLogo {
display: flex;
padding: 5%;
flex-basis: 50%;
background-color: #e8d3e1;
border-top-right-radius: 3vmin;
border-bottom-right-radius: 3vmin;
}

.indexLogoImg {
width: 70%;
max-width: 300px;
margin: auto;
}

.thumbnailsOuter {
display: flex;
width: 100%;
margin: auto;
margin-top: 2vh;
margin-bottom: 8vh;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

.thumbnails {
display: flex;
justify-content: center;
max-width: 100%;
max-height: 135px;
overflow: hidden;
margin: auto;
margin-bottom: 10vh;

> a {
max-width:150px;
height:150px;
margin:10px;
overflow:hidden;
border-radius:5px;
box-shadow:0 0 0 3px white, 0 5px 8px 3px rgba(black, 0.6);
img {
  transform:scale(1);
  transition:transform 0.5s ease-in-out;
  filter:grayscale(50%);
  max-width:100%;
  max-height:100%;
}
&:hover {
  img {
    transform:scale(1.3);
    filter:grayscale(0%);
  }
}
}
}


.lightBox {
position:fixed;
background:rgba(black,0.5);
backdrop-filter:blur(10px);
-webkit-backdrop-filter: blur(10px);
height:100%;
width:100%;
left:0;
top:0;
transform:translateY(-100%);
opacity:0;
transition:opacity 0.5s ease-in-out;
&:has(div:target) {
transform:translateY(0%);
opacity:1;
}
a.nav {
text-decoration:none;
color:#440958;
font-size:40px;
text-shadow:0 2px 2px rgba(black,0.8);
opacity:0.5;
font-weight:200;
&:hover {
  opacity:1;
}
}

.navRight {
margin-right: 10vw;
}

.target {
position:absolute;
height:100%;
width:100%;
display:flex;
transform:scale(0);
align-items:center;
justify-content:space-between;
*:first-child,*:last-child {
  
  text-align:center;
  @media all and (max-width:600px){
    flex:0 0 50px;
  }
}
*:first-child {
  margin-left: 10vw;
}

*:last-child {
  margin-right: 10vw;
}
.lightBoxContent {
  transform:scale(0.9);
  opacity:0;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10vh;
  border-radius:5px;
  box-shadow:0 0 0 3px white, 0 5px 8px 3px rgba(black, 0.6);
  transition:transform 1s ease-in-out,opacity 1s ease-in-out;
  img {
    display:block;
    margin:0;
  }
}
&:target {
  transform:scale(1);
  .lightBoxContent {
    opacity:1;
  }
}
}

.lightBoxImg {
max-height: 75vh;
max-width: 70vw;
}

.close {
position:absolute;
right: -0;
margin-right: 10vh;
margin-top: 20vh;
z-index: 99;
}
}


@media (max-width: 1000px) {
body {
font-size: 25px;
}

.mobileHidden {
  display: none;
}

.desktopHidden {
  display: inline;
}

.headerLogoBox {
padding: 10px;
}

.businessTitle {
font-size: 50px;
}

.contentContainer {
height: calc(100vh - 250px);
margin-top: 220px;
}

.contentContainerInner {
width: calc(100% - 100px);
}

.indexStartBox {
width: 100%;
flex-direction: column-reverse;
margin-top: 15%;
}

.indexStartBoxLogo {
border-top-right-radius: 3vmin;
border-top-left-radius: 3vmin;
border-bottom-right-radius: 0vmin;
}

.headerPhoneNumber {
text-align: left;
}

.headerNavigationMenuMobile {
display: flex;
padding: 20px 40px 20px 20px;
}


}