/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;

}

body {
  font-family: Arial, sans-serif;
  margin-top: 60px;
}

/*header section*/

header {
  /* font-family: "Cinzel", serif; */
  font-family: "Josefin Sans";
  background-color: #b81212;
  color: #fff;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}


nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  padding-top: 30px;

  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.3em;
}


@media only screen and (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  nav {
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }
}

.logo img {
  max-height: 80px;
  max-width: 100%;
}
a{
  color:white;
}
a:hover{
  text-decoration: none;
  color:rgba(255, 251, 0, 0.767);
}
.homeBtn {
  margin-right: 40px;
  
}

.productBtn {
  margin-right: 40px;
}

.aboutBtn {
  margin-right: 40px;
}


/*body section*/

#homePage {
  width: 100%;
  height: 100vh;
  background-image: url('/assets/homeBackground.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  /* Remove any default margin */
  padding: 0;
  /* Remove any default padding */
}

/* #productPage {
  width: 100%;
  height: 150vh;
  background-color: #FFFAF2;
  border-left: 0;
  border-right: 0;
 

} */

#productPage {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure at least full viewport height */
  background-color: #FFFAF2;
  padding: 20px; /* Optional: Adjust padding according to your design */

  flex-grow: 1; /* Fill remaining vertical space */
}

#productHeader {
  padding-top: 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5em;
  font-family: "Josefin Sans";

}

#contactPage {
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  border-left: 0;
  border-right: 0;
}




@media (max-width: 767px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: calc(100% - 20px);
  }
}
.card {
  border-radius: 20px;
}

.card-img {
  border-radius: 20px 0 0 20px;
  height: 350px;
  /* //object-fit: cover; */
}

.card-body {
  padding: 1.5rem;
}

/* Center image vertically */
.d-flex {
  align-items: center;
}
#footer {
  background-color: #000000;
  color: #fff;
  font-family: "Josefin Sans";
  text-decoration: none;
  padding: 40px;
}
.footerLinks {
  color:#FFFAF2; 
}

#email{
  height: 40px;
  padding-bottom: 5px;
}
#footerLogo{
  width: 300px;
  height: 75px;
}

#footerPartTwo{
  padding-top: 30px;
}