/*********** GLOBAL ****************/
* {
  margin-block-start: 0px;
  margin-block-end: 0px;
}

html {
  margin: 0px;
  height: 100%;
}

ul {
  padding-inline-start: 0px;
}

body {
  margin: 0px;
  height: 100%;
  color: #3a3a3a;
  font-family: "Mulish", "Helvetica Neue", Helvetica, Arial;
  display: flex;
  flex-direction: column;
  height: 100%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff9f2;
}

.articleDescription {
  font-size: 15px;
  margin: 24px 0px;
}

.about-hidden {
  display: none;
}

.menu-page article {
  text-align: center;
}

a {
  text-decoration: none;
  font-family: "Mulish", "Montserrat", "Helvetica Neue", Helvetica, Arial;
  font-size: 16px;
  font-weight: 400;
}

h1 {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
}

span {
  font-size: 12px;
}

article {
  padding: 28px;
}

/************ CLASS SPECIFIC *************/
.copyright {
  font-style: italic;
  display: block;
}

.attentionImage {
  width: 100%;
  border-radius: 0px;
}

/************ GALLERY *************/
.gallery {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
}

.thumbnail {
  width: calc(50% - 20px); /* Adjust for margins */
  margin: 10px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.2s;
}

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

#fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s;
}

#fullscreen-overlay.hidden {
  display: none;
  opacity: 0;
}

#fullscreen-image {
  max-width: 90%;
  max-height: 90%;
}

/************ FOOTER *************/
footer {
  background-color: #464749;
  width: 100%;
  color: rgb(225, 225, 225);
  font-weight: 200;
  text-align: center;
}

footer ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: baseline;
  justify-content: center;
  padding-inline-start: 0px;
  gap: 8px;
}

footer a {
  color: #aa8f4c;
}

footer a:hover {
  color: #cbaf8d;
}

footer > div > div > *,
footer > span {
  padding: 20px;
}

/************ HEADER ***************/
header {
  text-align: center;
}

#headerContainer {
  display: flex;
  justify-content: space-between;
  align-items: top; /* Adjusted to center vertically */
  padding: 25px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 3px 0px;
  background-color: #000;
}

.menu {
  position: fixed;
  top: 85px;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  flex-direction: column;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.menu ul {
  padding: 0;
  flex-direction: column;
}

.menu li {
  margin: 10px 0;
}
.menu a {
  color: rgb(0, 0, 0);
  margin: 10px;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}
.menu ul {
  line-height: 1.5;
  li {
    margin-left: 0.75em;
    margin-right: 0.75em;
  }

  &:hover {
    a {
      color: #ccc;
      &:hover {
        color: #000;
        box-shadow: 0 2px 0 0 currentcolor;
      }
    }
  }
}

.show-menu {
  height: 100vh;
  opacity: 1;
}

.instagramLink {
  width: 24px;
}

.logoImage {
  width: 35px;
}

.accentLogoText {
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 12px;
  line-height: 0px;
  margin: 10px 0px 0px 0px;
}

/************ CONTACT ***************/
form {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
}

textarea {
  height: 150px;
  resize: vertical;
}

/************************* MENU STYLES *************************/
.accent {
  font-style: italic;
}

.item-list {
  list-style-type: none;
}

.item-list > * {
  padding: 15px;
}

.item-list li > p:first-of-type {
  font-weight: bold;
  padding-bottom: 7px;
}

#item-list li > p:nth-of-type(2) {
  font-size: 14px;
}

.alergy-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  margin-left: 5px;
}

.spacer {
  padding-top: 20px;
}

.important {
  font-size: 14px;
  font-weight: 500;
}

h3,
h2 {
  padding-top: 30px;
}

.center {
  text-align: center;
  display: block;
}

.vegan {
  border: 1px solid green;
  color: green;
}

.gluten-free {
  border: 1px solid rgb(154, 98, 26);
  color: rgb(154, 98, 26);
}

/************************Header STYLES ***********/
#hero-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  height: 650px;
}

.hero-image,
.color-content {
  flex: 1 1 33%;
  box-sizing: border-box;
}

.hero-image {
  width: 100%;
  object-fit: cover;
  display: none;
}

.color-content {
  background-image: url("/assets/images/blue-cake-home.jpeg");
  background-size: cover;
  background-position: center;
  /* background: linear-gradient(231deg, #eed7b0, #feb47b 99.58%);*/
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 350px;
}

#main-page-article {
  flex-direction: column;
}

#hero-container p {
  color: rgb(240, 240, 240);
  font-size: 30px;
  font-weight: 400;
  font-family: "Mulish";
  padding: 0px 10%;
  line-height: 1.7;
  letter-spacing: 2px;
}

#main-page-article {
  background-color: white;
}

#home-page-article {
  padding: 0px;
  background-color: #fff9f2;
}

button {
  background-color: #aa8f4c;
  color: white;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  letter-spacing: 2px;
  border-radius: 5px;
  margin-top: 20px;
}

button a {
  font-size: 12px;
}

.order-button {
  color: rgb(43, 43, 43);
  background-color: #fefbf5;
  color: rgb(39, 39, 39);
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  letter-spacing: 2px;
  border-radius: 5px;
}

.order-button a {
  font-weight: 300;
  font-size: 18px;
  font-family: "Mulish";
}

.sample-image {
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  object-fit: cover;
}

.row {
  display: flex;
  flex-direction: row;
  text-align: right;
  padding: 50px 0px;
}

.b1,
.b3 {
  background-color: #fff9f2;
}

.b2 {
  background-color: white;
}

.left-align {
  text-align: left;
}

.row > * {
  padding: 25px;
}

/************ LARGE WINDOW *************/
@media only screen and (min-width: 700px) {
  main {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .image-wrapper {
    flex: 1;
    max-width: 40%;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 4% 3% 4% 8%;
  }
  .order-page article,
  .menu-page article,
  .gallery-page article {
    flex: 1;
    box-sizing: border-box;
    max-width: 800px;
  }

  .image-wrapper {
    display: none;
  }

  .hamburger {
    display: none; /* Hide hamburger on large screens */
  }
  .menu {
    display: flex; /* Show menu on large screens */
    position: static; /* Reset position for large screens */
    height: auto; /* Reset height for large screens */
    opacity: 1; /* Reset opacity for large screens */
    flex-direction: row; /* Arrange menu items in a row */
  }
  .menu ul {
    display: flex; /* Ensure ul is a flex container */
    flex-direction: row; /* Arrange list items in a row */
    padding-inline-start: 0px; /* Remove default padding */
    margin: 0; /* Remove default margin */
    list-style: none; /* Remove default list style */
  }
  .menu li {
    margin: 0 10px; /* Adjust margin for large screens */
  }
  #menu {
    width: 340px;
  }
  .attentionImage {
    width: 100%;
    border-radius: 5px;
  }
  #headerContainer > div:nth-child(3) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #headerContainer {
    align-items: center;
    padding: 35px 105px 45px 105px;
  }

  /************ LARGE WINDOW FOOTER STYLES ********/
  footer {
    display: flex;
    flex-direction: column;
  }
  footer > * {
    padding: 0px;
  }
  footer > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 35px 0px 0px 0px;
  }
  footer > span {
    padding: 20px;
  }
  footer h1 {
    padding-bottom: 15px;
    width: 100px;
  }
  footer div div:nth-of-type(1) {
    text-align: left;
    padding-left: 10%;
  }
  footer div div:nth-of-type(2) {
    text-align: end;
    padding-right: 10%;
  }
  footer ul {
    flex-direction: column;
    align-items: end;
    padding-bottom: 10px;
  }
  footer ul span {
    display: none;
  }

  .about-hidden {
    display: block;
    width: 40%;
    height: auto;
    object-fit: cover;
    padding: 28px;
  }
  .about-page article {
    max-width: 1200px;
  }
  .about-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  /*************** HOME PAGE ***************/
  #hero-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 25px;
    padding: 0px 50px 50px 50px;
  }

  .hero-image,
  .color-content {
    flex: 1 1 33%;
    max-width: calc(33.333% - 30px);
    box-sizing: border-box;
  }

  .hero-image {
    width: 100%;
    object-fit: cover;
    display: inline-block;
  }

  .color-content {
    /* background-image: url("/assets/images/blur-cake-2.jpeg");
  background-size: cover;
  background-position: center; */
    background: linear-gradient(231deg, #eed7b0, #feb47b 99.58%);
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  #main-page-article {
    flex-direction: column;
  }

  #hero-container p {
    color: rgb(44, 44, 44);
    font-size: 2vw;
    font-weight: 400;
    font-family: "Mulish";
    padding: 0px 10%;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 2px;
  }

  #main-page-article {
    background-color: white;
  }

  #home-page-article {
    padding: 0px;
    background-color: #fff9f2;
  }

  .sample-image {
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    object-fit: cover;
  }

  .row {
    display: flex;
    flex-direction: row;
    text-align: right;
    padding: 75px 20%;
    justify-content: space-between;
  }

  .b1,
  .b3 {
    background-color: #fff9f2;
  }

  .row p {
    margin-bottom: 80px;
  }

  .b2 {
    background-color: white;
  }

  .left-align {
    text-align: left;
  }

  .row > * {
    padding: 25px;
  }
  .row div {
    width: 40%;
  }
}
