.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  




* {
    box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: Poppins, sans-serif !important;
  scroll-behavior: smooth;
  height: calc(100% - 3rem);
  padding:0;
  margin: 0;
  overflow-x: hidden;
}

@media (min-width: 1440px) {
  /* CSS that should be displayed if width is equal to or more than 800px goes here */
  html {
  font-size: 20px;
  }
}

@media (max-width: 500px) {
  /* CSS that should be displayed if width is equal to or more than 800px goes here */
  html {
  font-size: 14px;
  }
}

a {
  text-decoration: none;
}

body {
  margin:0;
  padding: 0;
  overflow-x: hidden;
  background-size: cover;       
  background-repeat: no-repeat;   
  background-attachment: fixed;
  padding-top: 3rem;
}

h1 {
  font-size: 3rem;
  color: #3B0906;
}

h2 {
  font-size: 2rem;
  color: #3B0906;
}

h3 {
  color: #3B0906;
}

h4 {
  color: #3B0906;
}

h5 {
  font-weight: 400;
  color: #775652;
  font-size: 1rem;
}

h6 {
  color: #3B0906;
}



nav {
    height:3rem; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF8F7;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),  
              0px 1px 3px 1px rgba(0, 0, 0, 0.15);  
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 100;
}

.logo img{
    max-height: 3rem;
    width: auto;
    display: block;
    margin-left: 2rem;
}

.navButtons {
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 60%;
    justify-content: space-around;
}

@media (max-width: 600px) {
  /* CSS that should be displayed if width is less than or more than 760px goes here */
.navButtons {
    margin-right: 1rem;
    width: 70%;
}

.logo img{
    margin-left: .5rem;
}

}

@media (max-width: 350px) {
  /* CSS that should be displayed if width is less than or more than 760px goes here */
.navButtons {
    margin-right: 1rem;
    margin-left: 1rem;
    width: 100%;
}

.logo img{
    display: none;
}
}
div #language img{
    margin-right: .2rem;
    height: 1.15rem;
    color: #3B0906;
}

.navButtons div{
    display: flex;
    align-items: center;
    height: 2rem;
}

.navButtons div h4 {
    font-weight: 550;
    color: #3B0906;
}

.navUnderline {
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

.footerPrice h5{
  color: #825512;
  margin-bottom: 0;
  margin-left: .2rem;
  width: 75%;
}

.footer {
  min-height: 9rem;
  background-color: #775652;
}

.footer .footerTitle {
  font-weight: 500;
  color: #FFFFFF;
  padding-top: 1rem;
  margin-bottom: 0;
  margin-top:0;
  margin-left: 1rem;
  width: 85%;
}

.footer .footerCopyright {
  font-weight: 500;
  color: #FFDDB7;
  margin-top: 0;
  font-size: 1.1rem;
  margin-left: 1.7rem;
}

@media (max-width: 650px) {
  /* CSS that should be displayed if width is less than or more than 760px goes here */
.footer .footerTitle {
  font-weight: 500;
  color: #FFFFFF;
  padding-top: 1rem;
  margin-bottom: 0;
  margin-top:0;
  margin-left: 1rem;
  font-size: 2rem;
}

.footer .footerCopyright {
  font-weight: 500;
  color: #FFDDB7;
  margin-top: 0;
  font-size: 1.1rem;
  margin-left: 1.7rem;
}
}



button {
  transition: 0.3s ease;
  font-family: Poppins, sans-serif;
}
button:hover {
  transform: scale(1.1);
}

.pageWrapper {
  display:flex;
  flex-direction: column;
  min-height: calc(100vh - 3rem);
  width: 100%; 
  overflow-x: hidden; 
}

.productContainer, .mainContainer{
  flex-grow: 1;
  
}
















/* THIS IS HOME PAGE SPECIFIC STUFF */

.homeBody {
  background-image: url('../Background Photos/Landing-Page-Background.png');
}


.notice {
  visibility: hidden;
  height: 3rem;
  background-color: #904A41; 
  display: flex;             
  align-items: center;       
  overflow: hidden;          
  width: 100%;
}

.notice-content {
  display: inline-block;    
  white-space: nowrap;      
  transform: translateX(0%); 
  
  animation-name: marquee-animation;
  animation-duration: 15s;      
  animation-timing-function: linear;
  animation-iteration-count: infinite; 
  animation-delay: 0s;          
}

.notice-content h3 {
  color: white;                
  font-size: 1.4rem;       
  font-weight: 400;         
  margin: 0;             
  padding-right: 50vw;         
}

/* Keyframes for the animation */
@keyframes marquee-animation {
  0% {
    transform: translateX(100%); 
  }
  100% {
    transform: translateX(-70%);  
  }
}

@media (max-width: 760px) {
.notice-content {
  
  /* Animation properties */
  animation-name: marquee-animation;
  animation-duration: 15s;        /* ts speed */
  animation-timing-function: linear;
  animation-iteration-count: infinite; 
  animation-delay: 0s;     
}

@keyframes marquee-animation {
  0% {
    transform: translateX(70%); 
  }
  100% {
    transform: translateX(-70%); 
  }
}
}

@media (max-width: 530px) {
.notice-content {
  
  /* Animation properties */
  animation-name: marquee-animation;
  animation-duration: 11s;        /* ts the ishowspeed */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 0s;     
}

@keyframes marquee-animation {
  0% {
    transform: translateX(55%); 
  }
  100% {
    transform: translateX(-85%); 
  }
}
}



.landingPage h1{
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 1rem;
  width: 80%;
}

.landingPage h5{
  margin-top: 1%;
  margin-left: 2rem;
  margin-right: 2rem;
  width: 40%;
}

.landingImg.desktop, .landingImg.mobile{
  width: 55%;
  float: right;
  position: absolute;
  top: 6.5rem;
  right: 0;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
  overflow-x: hidden;
}

.landingImg.mobile {
  display: none;
}

@media (max-width: 1110px) {
  /* CSS that should be displayed if width is less than or more than 1110px goes here */
  .landingImg.desktop {
  width: 55%;
  top: 8rem;
  }
}

@media (max-width: 950px) {
  /* CSS that should be displayed if width is less than or more than 920px goes here */
  .landingImg.desktop {
  width: 55%;
  margin-top: 2.2rem;
  }
}

.landingImg:hover {
  transform: scale(1.1);
}

.landingPage {
  margin-top: 1rem;
  margin-bottom: 6rem;
  min-height: 40vw;
}

.landingButtons {
  margin-left: 3%;
  margin-top: 10vh;
  /*border: 1px, rgb(0, 0, 255), solid;*/
  display: flex;
  flex-direction: row;
  width: 40%;
  justify-content: space-between;
}

@media (max-width: 980px) {
  /* CSS that should be displayed if width is less than or more than 980px goes here */
  .landingButtons {
  margin-left: 3%;
    width: 50%;
  margin-top: 10vh;
}
}

#landingButton1  {
  border: 2px #775652 solid;
  background-color: #775652;
  padding: 1rem .6rem;
  display: flex;
  align-items: center;
  height: 2.5rem;
  font-size: 2rem;
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),  
            0px 1px 3px 1px rgba(0, 0, 0, 0.15);  
  transition: 0.3s ease;
}

#landingButton1 h6 {
  color: #FFDAD5; 
}

#landingButton1:hover {
  background-color: #FFDAD5;
}

#landingButton1:hover h6 {
  color: #775652;
}

.landingButtons h6{
  font-weight: 500;
}

#landingButton2  {
  border: 2px #775652 solid;
  background-color: #FFDAD5;
  color: #775652;
  padding: 1rem .6rem;
  display: flex;
  align-items: center;
  height: 2.5rem;
  font-size: 2rem;
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),  
             0px 1px 3px 1px rgba(0, 0, 0, 0.15);  
  transition: 0.3s ease;
}

#landingButton2 h6 {
  color: #775652;
}

#landingButton2:hover {
  background-color: #775652;
  color: #FFDAD5;
}

#landingButton2:hover h6 {
  color: #FFDAD5;
}



.ourSpecialties {
  margin-top: 0;
  text-align: center;
}

.ourSpecialties h2 {
  margin-bottom: 1rem;
}


.specialtyCards {
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.specialtyCards h5 {
  font-weight: 500;
  margin-left: .5rem;
  margin-right: .5rem;
  margin-bottom: 1rem;
}

.specialtyCards h3 {
  font-size: 1.3rem;
  margin-bottom: .8rem;
  margin-top: .8rem;
}

.specialtyCards img {
  width: 75%;
  border-radius: 1000px;
  border: 4px #904A41 solid;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),  
            0px 1px 3px 1px rgba(0, 0, 0, 0.15);  
}

.cakeCard {
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 250px;
  background-color: #FFDAD5;
  margin: 1rem;
  border-radius: 48px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),  
            0px 1px 3px 1px rgba(0, 0, 0, 0.15);  
}

.pastriesCard {
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 250px;
  background-color: #FFDAD5;
  margin: 1rem;
  border-radius: 48px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),  
            0px 1px 3px 1px rgba(0, 0, 0, 0.15);  
}

.pastriesCard img {
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: brightness(1.2);
}

.customCakeCard {
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 250px;
  background-color: #FFDAD5;
  margin: 1rem;
  border-radius: 48px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3),  
            0px 1px 3px 1px rgba(0, 0, 0, 0.15); 
}

.learnMore {
  background-color: #FFDDB7;
  display: inline-flex;
  padding: .2rem .8rem;
  font-size: 1.2rem;
  color: #825512;
  border-radius: 1000px;
  border: 2px #825512 solid;
  margin-bottom: 1.2rem;
  font-weight: 500;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
          0px 1px 3px 1px rgba(0, 0, 0, 0.05); 
}


/* This is the CSS for the LANDING PAGE for PHONES */


@media (max-width: 760px) {
  /* CSS that should be displayed if width is less than or more than 760px goes here */
  .landingPage {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 0;
  }

  .landingPage h1{
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 0rem;
    width: 100%;
    text-align: center;
    line-height: 4rem;
  }

  .homeBody .mainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .landingImg.mobile {
    display: inline;
    position: static;
    float: none;
    top: 5rem;
    right: auto;
    width: 80%;
  }

  .landingImg.desktop {
    display: none;
  }

  .landingPage h5 {
    width: 85%;
    text-align: center;
  }

  .landingButtons {
    /*border: 1px, rgb(0, 0, 255), solid;*/
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }
}

@media (max-width: 581px) {

  .cakeCard {
    max-width: 80%;
  }

  .pastriesCard {
    max-width: 80%;
  }

  .customCakeCard {
    max-width: 80%;
  }

}























/* AFTER THIS IS THE MENU SPECIFIC CSS */

.menuBody {
  background-image: url('../Background Photos/Menu-Page-Background2.png');
}

.menuMainText {
  margin-left: 1.5rem;
}

.menuMainText h1 {
  margin-top: 1rem;
  margin-bottom: 0;
}

.menuMainText h5 {
  margin-top: 0;
}

.menuSection {
  margin-left: 1rem;
}

.menuSection h3 {
  margin-bottom: 0;
}

.menuSection h6 {
  margin-left: .1rem;
  margin-top: 0;
  margin-bottom: .4rem;
  display:flex;
  font-weight: 500;
  color: #825512;
}

#scrollIcon {
  height: 1rem;
  width: auto;
  margin-left: .1rem;
}

.menuScrolls {
  display: flex;
  width: 100%;
  padding-bottom: .7rem;
  padding-top: .7rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

.menuScrollCard {
  display:flex;
  flex-basis: calc(20% - 1rem);
  flex-grow: 0; 
  flex-shrink: 0;
  flex-shrink: 0;
  background-color: #FFEDEA;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
          0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  transition: all 0.15s ease;
}

.thumbnail{
  filter: brightness(1.2);
  height: 100%;
  object-fit: cover;
}

@media (max-width: 750px) {
  .menuScrollCard {
  flex-basis: calc(25% - 1rem);
}
}

@media (max-width: 580px) {
  .menuScrollCard {
  flex-basis: calc(33% - 1rem);
}
}

@media (max-width: 440px) {
  .menuScrollCard {
  flex-basis: calc(50% - 1rem);
}
}

.menuScrollCard:hover {
  transform: scale(1.05);
}

.menuScrollCard img{
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.menuScrollCard h4 {
  margin: 1rem 0;
}

#menuCakeSection,
#menuFinePastriesSection,
#menuCustomCakeSection { 
  scroll-margin-top: 1.8rem; 
}














/* NOW THIS IS THE PRODUCT PAGE CSS STUFF */

.productBody {
  background-image: url("../Background Photos/Product-Page-Background.png");
}

.pageWrapper a.backIcon {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.backButton {
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  background-color: #904A41;
  border: 0;
  border-radius: 12px;
  border: 2px #471613 solid;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
          0px 1px 3px 1px rgba(0, 0, 0, 0.15); 
}

.backButton img {
  width: 18px;
  height: 18px;
  margin-left: .1rem;
  margin-right: 0;
  margin-top: .3rem;
  margin-bottom: .3rem;
}

.backButton h4 {
  margin-top: .4rem;
  margin-bottom: .4rem;
  margin-left: .5rem;
  margin-right: .1rem;
  color: #FFF;
  font-weight: 500;
}

.productContainer{
  margin: auto;
  width: 100%;
  display:flex;
  justify-content: space-around;
}

.productPhotos {
  margin-top: 1rem;
  width: 45%;
}

img.productPhoto {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
        0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  margin-bottom: .5rem;
  filter: brightness(1.2);
}

.customPhoto {
  filter: brightness(1) !important;
}

/* Hover Effectssssss */
.productPhoto, .productSubPhoto {
  
    transition: transform 0.3s ease; 
    cursor: pointer;           
}

.productPhoto:hover, .productSubPhoto:hover {
    transform: scale(1.05);        
}

/* Lightbox thing*/
.lightbox {
    position: fixed;
    z-index: 1000;       /* Sits on top of everything */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(59, 9, 6, 0.9); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;       
    pointer-events: none;
    transition: opacity 0.3s ease; 
    backdrop-filter: blur(5px); 
}

.lightbox.active {
    opacity: 1;          
    pointer-events: all; 
}

.lightbox img {
    max-width: 90%;      
    max-height: 90%;    
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    transform: scale(0.8); 
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.lightbox.active img {
    transform: scale(1);   
}

#template {
  filter: brightness(1.0);
}


.productSubPhotoContainer {
  display: flex;
  width: 100%;
  padding-bottom: .7rem;
  padding-top: .7rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  padding-left: 1rem;
}

img.productSubPhoto {
  filter: brightness(1.2);
  display:flex;
  width: calc((100% - 2 * 1.5rem) / 3);
  flex-grow: 0; 
  flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 15px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
          0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  transition: all 0.15s ease;

  aspect-ratio: 1 / 1;   
  object-fit: cover;    
}

.productText {
  width: 50%;
  float: right;
}

.productText h1 {
  margin-top: 1rem;
  margin-bottom: 5vh;
}

.productText h5 {
  margin-top: 0;
  font-size: 1.1rem;
  padding-right: 1rem;
}

.productText h5 strong {
  color:#3B0906;
}


.productStats {
  margin-top: 2rem;
}
.productStats h5{
  margin: .6rem 0rem;
  font-weight: 500;
}

.productCallContainer {
  width: 100%;
  text-align: center;
  margin-top: 3.5rem;
}
.productCall {
  color: #825512;
  border: 2px #825512 solid;
  background-color: #FFDDB7;
  border-radius: 24px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
          0px 1px 3px 1px rgba(0, 0, 0, 0.15); 
}

.productCall:hover {
  transform: scale(1.05);
}

.productCall h5 {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: .6rem;
  margin-bottom: 0;
  padding: 0;
  font-weight: 500;
  color: #825512;
}

.productCallNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.productCallNumber h5{
  margin-top: .4rem;
  margin-bottom: .6rem;
  margin-left: .3rem;
}

.productCallNumber img{
  height: 18px;
  width:18px;
  margin-top: .4rem;
  margin-bottom: .6rem;
}



.vert {
  display:none;
}


@media (max-width: 760px) {
.norm {
  display:none
}

.vert {
  display: flex;
  padding: 1rem;

}

.vert h1 {
    margin-top:0;
}

.vert .productPhotos {
  margin-top: 2rem;
}

  .productContainer{
  flex-direction: column;
}

.vert .productPhotos {
  margin-top: 1rem;
  width: 100%;
}

.vert .productText {
  width: 100%;
  float: none;
}

.vert .productCallContainer {
  margin-top: 3rem;
}


.footerPrice h5{
  color: #825512;
  margin-top: 0;
  margin-bottom: 0;
  width: 99%;
  padding-left: .2rem;
  padding-right: .2rem;
}

}





/*Now im doing the hours and contact us but I call it hours for simplicity*/

.hoursBody {
  background-image: url("../Background Photos/Hours-Page-Background.png");
}

.mainHoursContainer h1 {
  margin-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0;
}


.threeAmigos {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.lefty {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 9vh;
  width: 48%;
}

.visitUs {
  background-color: #FFEDEA;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
          0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.visitUs h2 {
  margin: 0;
  margin-bottom: 1rem;
}

.visitUs h5 {
  margin: 0;
}

.visitUs div {
  display: flex;
}

.visitUs div img{
  height: 1.375rem;
  margin:0;
  margin-right: .2rem;
}

.contactUs {
  background-color: #FFEDEA;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
          0px 1px 3px 1px rgba(0, 0, 0, 0.15); 
}

.contactUs h2 {
  margin: 0;
  margin-bottom: 1rem;
}

.contactUs h5 {
  margin: 0;
}

.contactUs div {
  display: flex;
}

.contactUs div img{
  height: 1.3rem;
  margin:0;
  margin-right: .2rem;
}

.righty {
  padding: 2.5rem 2rem;
  display: flex;
  width: 55%;
  align-items: center;
  justify-content: center;
}

.maps {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #FFEDEA;
  background-image: url("../Photos/maps.png");
  background-size: cover;
  background-position: center;
}

.maps iframe {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
        0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.dailyHours {
  background-color: #FFEDEA;
  margin: 2rem 4rem;

  padding: 1rem 1rem;
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
        0px 1px 3px 1px rgba(0, 0, 0, 0.15); 
}

.dailyHours h2 {
  text-align: center;
  margin: 0;

}

.dayContainer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
}

.day {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.day h4{
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.connector {
  width:60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 2rem;
}

.connector div {
  margin-top:0.69134375rem;
  margin-bottom:0.69134375rem;
  height: 2px;
  width: 100%;
  background-color: #3B0906;
}

.time {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.time h4{
  margin: 0;
  padding: 0;
  font-weight: 600;
}


.threeAmigos.vertical {
  display: none;
}







@media (max-width: 700px) {
  .threeAmigos.normal {
  display:none;
}

  .mainHoursContainer h1 {
  margin: 1rem 0;
  text-align: center;
}

  .threeAmigos.vertical{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .threeAmigos.vertical .visitUs {
    width: 90%;
  }

  .threeAmigos.vertical .contactUs {
    width: 90%;
  }

  .threeAmigos.vertical .maps {
    width: 90%;
    aspect-ratio: 2 / 1;
  }

  .dailyHours {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }


  .connector {
    width: 40%;
  }
}

@media (max-width: 500px) {
  .connector {
    width: 20%;
  }
}

@media (max-width: 300px) {
  .connector {
    display: none;
  }
}








/*Okay now its the sheet cake page yayyyyy my back hurts */

.sheetBody {
  background-image: url("../Background Photos/Product-Page-Background.png");
}

.sheetBody .mainContainer{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sheetCakeIntro {
  margin:0;
  margin-top: 1rem;
  padding-left: 1.5rem;
  width: 100%;
}

.sheetCakeIntro h1 {
  margin: 0;
}

.sheetCakeIntro h5 {
  margin: 0;
  width: 85%;
}

.sheetCakeIntro h5 strong {
  font-weight: 600;
}

.sheetCakeCardContainer {
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}

.sheetCakeCard {
  background-color: #FFEDEA;
  border-radius: 32px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
        0px 1px 3px 1px rgba(0, 0, 0, 0.15); 
  width: 90%;
  display: flex;
  flex-direction: row;

}
.sheetCakeCardLeft {
  width: 50%;
}

.sheetName {
  margin-top: 1rem;
  margin-bottom: 0rem;
  margin-left: 1.5rem;
}

.sheetStats {
  margin-top: 1.5rem;
  margin-bottom: 0rem;
  margin-left: 1.5rem;
}

h5.sheetStats {
  font-weight: 450;
  line-height: 2rem;
}

.sheetBody .productCallContainer {
  margin-top: 10%;
  margin-bottom: 1.5rem;
}

.sheetBody .productCallContainer button{
  padding: .1rem .75rem;
  width: 90%;
}

.sheetBody .productCallContainer button img {
  height: 15px;
  width: 15px;
}


.sheetCakeCardRight {
  width: 50%;
  padding: 1rem;
}

.sheetCakeCardRight .forImage {
  width: 100%;
  height: 100%;
  background-image: url("../Photos/Placeholder Image.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 24px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
        0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.sheetCakeCardRight .forImage  img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: 50% 70%;
    border-radius: 24px;
    filter: brightness(1.2);
}

.sheetCakeCardRight .forImage #quarterSheetPhoto{
    object-position: 50% 40%;
}

  /* Sheet Cake Specific Styles */
.sheetCakePhoto {
  filter: brightness(1.2);
    width: 100%;
    height: 100%;       
    object-fit: cover;  
    border-radius: 24px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 
                0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease; 
    cursor: pointer;
}

.sheetCakePhoto:hover {
    transform: scale(1.05); 
}

.sheetCakeCard.dasAuto {
  display: none;
}


@media (max-width: 771px) {
  .sheetCakeCard{
    width: 95%;
  } 

  .sheetCakeIntro {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sheetCakeIntro h1 {
    text-align: center;
  }

  .sheetCakeIntro h5 {
    text-align: center;
  }

  .sheetCakeCard.dasAuto{
    display: flex;
    flex-direction: column;
  }

  .sheetCakeCard.norm {
    display: none;
  }

  .sheetCakeCard.dasAuto .sheetCakePhoto {
    height: 20rem;             
    width: calc(100% - 4rem);   
    margin-left: 2rem;         
    margin-right: 2rem;      
    margin-top: 1.5rem;     
  }

  .sheetCakeCard.dasAuto .forImage img{
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    object-position: 50% 80%;
    border-radius: 24px;
    filter: brightness(1.2);
  }

  .sheetCakeCard.dasAuto .forImage #quarterSheetPhoto{
    object-position: 50% 40%;
  }

}