body, a {
    font-family: "Work Sans";
    font-weight: 400;
    color: #444;
}

a:hover {
    color: black;
    text-decoration: none;
}

a {
  padding-right: 5px;
}

h1 {
    font-family: "Work Sans";
    font-weight: 400;
    color: #444;
    text-align: center;
    font-size: 7vw;
}

h2 {
    font-family: "Work Sans";
    font-weight: 100;
    color: #444;
    text-align: center;
    font-size: 350%;
}

h3 {
    font-size: 1.75rem;
    font-weight: normal;
    color: white;
}

h4 {
   text-align: center;
   font-size: 3vw;
   color: #8A28D6;
   font-weight: bold;
}

@media (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

.headerContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.headerRow {
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

#NavFlex1 {
    width: 20%;
    max-width: 30%;
    min-width: 20%;
    text-align: center;
    justify-content: center;
}

#NavFlex2 {
    width: 60%;
    min-width: 60%;
    text-align: center;
    justify-content: center;
}

#NavFlex3 {
    width: 20%;
    text-align: center;
    align-self: center;
}

@media (max-width: 768px) {
  #NavFlex1,
  #NavFlex2,
  #NavFlex3 {
    width: 90%;
    margin-bottom: 1rem;
  }
}

#footerContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.FooterCols1, .FooterCols3 {
    width: 35%;
    text-align: center;
    background-color: #282828;
    color: white;
    padding-top: 2%;
}

.FooterCols2 {
    width: 25%;
    text-align: center;
    justify-content: center;
    background-color: #282828;
    color: white;
    padding-top: 2%;
}

@media (max-width: 768px) {
  .FooterCols1,
  .FooterCols2,
  .FooterCols3 {
    width: 90%;
    margin-bottom: 1rem;
  }
}

#Sofa {
    width: 70%;
}

@media (max-width: 768px) {
  #Sofa {
    width: 160%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

#Logo {
    width: 55%;
}

@media (max-width: 992px) {
  #Logo {
    width: 95%;
  }
}

.cameraLI {
    padding:0;
}

ul {
    padding-left:1.25rem;
    list-style-image: url('icons/Camera30.png');
}

 
  ul li::before {
    content: ''; /* No text */
    display: inline-block;
    /*width: 30px; /* Bullet width */
    height: 30px; /* Bullet height */
    background-image: url('icons/Camera30.png'); /* Custom image */
    background-size: cover; /* Make sure the image covers the entire box */
    margin-right: 10px; /* Space between the bullet and text */
  }

blockquote {
  border:2px solid #f0f0f0;
  padding:1.25rem;
  width: 95%;
}


#GalleryContainer {
    justify-content: center;

}

.GalleryCols {
    display: flex;
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
}

.GalleryImg {
    width: 100%;
}

#FooterP {
    color: #777;
    font-family: "Work Sans";
    font-weight: 400;
    font-size: 130%;
    line-height: 0.5em;
}

#AboutusFlex {
    /*display: flex;*/
    justify-content: center;
    /*width:95%;*/
}

#AboutUsDiv {
    display: flex;
    width: 95%;
    /*justify-content: space-between;*/
    justify-content: center;
    gap: 10px;
}

#AboutusImg {
    Width: 100%;
}

/* Container for the flip card */
.flip-card-portrait {
  flex: 0 0 19%;
  aspect-ratio: 191 / 270;
  perspective: 1000px;
  max-width: 15rem;
  box-sizing: border-box;
}


@media (max-width: 767.98px) {
  .flip-card-portrait {
    flex: 0 0 30%;
    margin: 0.25rem;
  }

  /* 5th and 10th images = 2nd row items */
  .flip-card-portrait:nth-child(5),
  .flip-card-portrait:nth-child(10) {
    flex: 0 0 30%;
  }
}

  .flip-card-landscape {
    flex: 0 0 23.75%;
  /*width: 100%; /* Parent controls scaling */
  aspect-ratio: 270 / 191;
  perspective: 1000px;
  max-width: 20rem;
  box-sizing: border-box;
  }

  @media (max-width: 767.98px) {
    .flip-card-landscape {
      flex: 0 0 47.5%;
      margin: 0.25rem;
    } 
  }

  .image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
  
  /* The inner part of the card */
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; /* This preserves the 3D effect */
    transition: transform 0.6s; /* Smooth flip effect */
  }
  
  /* Front of the card */
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hides the back when flipped */
  }
  
  /* Style for the front of the card */
  .flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area */
  }
  
  /* Style for the back of the card */
  .flip-card-back {
    transform: rotateY(180deg); /* Initially rotate the back side */
  }
  
  .flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Hover effect - flip the card */
  .flip-card-portrait:hover .flip-card-inner {
    transform: rotateY(180deg); /* Flip the inner container */
  }

    /* Hover effect - flip the card */
    .flip-card-landscape:hover .flip-card-inner {
        transform: rotateY(180deg); /* Flip the inner container */
      }
    



