/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  --white: #fff6e7;
  --gold: #f6d0a2;
  --teal: #038677;
  --bgGold: #feecbd;
}

body {
  background-color: var(--bgGold);
  color: black;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.container {
  position: relative;
  background-color: var(--white);
  margin: 0px 2%;
  /*border: 5px transparent rgb(0, 0, 0);*/
  border-radius: 10px;
}
/*
.tab {
  position: relative;
  padding: 50px;
  margin: -20px;
  z-index: 1;
  transition: z-index 0.2s;
  border: 5px solid rgb(255, 0, 0)
}
.tab.active {
  z-index: 2;
  border: 5px solid rgb(0, 51, 255)
} */

/* standard website */
.header {
  position: relative;
  text-align: center;
  padding-top: 20px;
}
.logo {
  width: 80%;
  max-width: 500px;
  height: auto;
}

.nav {
  position: relative;
  text-align: center;
  padding: 20px;
  margin: 10px 5%;
  background-color: var(--white);
  border-style: none none solid;
  border-image: linear-gradient(to right, var(--white), var(--teal), var(--white)) 1;
}
.nav a {
  float: center;
  padding: 10px 7%;
  background-color: var(--teal);
  color: var(--white);
}
@media screen and (orientation:portrait) {
  .nav a {
    width: 20%;
    padding: 10px 5%;
  }
  .nav {
    margin: 10px 0px;
    padding: 20px 1%;
  }
}
.nav a:hover {
  background-color: var(--gold);
  color: var(--teal);
  transition: 0.1s ease;
}
.nav a:active {
  background-color: var(--teal);
}

.content {
  position: relative;
  padding: 10px;
  margin: 10px 0px;
  background-color: var(--white);
}
.content h2 {
  text-align: left;
  margin-left: 5%
}

.footer {
  position: relative;
  text-align: right;
  padding: 5px 2%;
  margin: 10px 0px;
  border-radius: 0px 0px 10px 10px;
  background-color: var(--gold);
  font-size: small;
}

/* decor images */
.decor {
  position: absolute;
  z-index: 5;
}

/* about page */
.about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 10px 5%;
  padding: 20px;
  gap: 5%;
  background-color: var(--gold);
}
.aboutImage {
  width: 300px;
  height: auto;
  border: 5px solid var(--white);
}
.aboutImage2 {
  width: 300px;
  height: auto;
  border: 5px solid var(--white);
}
@media screen and (orientation:portrait) {
  .aboutImage {
    max-width: 95%;
    margin: 10px auto
  }
  .aboutImage2 {
    max-width: 95%;
    margin: 10px auto;
  }
}
.aboutText {
  width: 50%;
  flex-grow: 1;
  font-size: large;
}

/* contact page */
.contact {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 5%;
  align-items: center;
  gap: 10px;
}
.contact a {
  font-size: large;
  color: var(--teal);
}
.contactIcon {
  height: 30px;
  width: auto;
}

/* shop page */
.shop {
  display: flex;
  flex-wrap: wrap;
  padding: 5%;
  gap: 2%;
}
.shopElement {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
  min-width: 250px;
}
.shopElement img {
  width: 80%;
  height: auto;
  /*transition: all 0.5s;
  opacity: 0;
  transform: translate(50px);*/
}
/*.shopElement.image.visible {
  opacity: 1;
  transform: translate(0px);
}*/
.shopElement p {
  width: 50%;
  flex-grow: 1;
  text-align: center;
}

/* gallery page */
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 5% 50px;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--gold);
}
.gallery img {
  width: 20%;
  height: auto;
  min-width: 250px;
  border: 5px solid var(--white);
  margin: 10px;
}
.gallery img:hover {
  cursor: pointer;
}

/* the screen with featured image (the modal) */
.modal {
  display: none;
  position: fixed;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .9);
}
/* close button */
.close {
  color: var(--white);
  position: fixed;
  top: 10px;
  right: 25px;
  font-size: 40px;
  font-weight: bold;
}
.close:hover, .close:active {
  color: var(--gold);
  cursor: pointer;
}
/* featured image */
.featuredImage {
  display: none;
  margin: auto;
  max-height: 80%;
  width: auto;
  padding: 10px;
}
@media screen and (orientation:portrait) {
  .featuredImage {
    max-width: 80%;
    height: auto;
  }
}