/*<--- -------------------------- -->
  <---           Menu             -->
  <--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  html,
  body {
    /* when you click a menu button and jump to the top of the screen this makes it so it has  smooth transiiton instead of an abrupt movement */
    scroll-behavior: smooth;
    overflow: initial;
  }
  #cs-menu-group {
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    text-align: center;
    height: auto;
    padding: var(--sectionPadding);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  #cs-menu-group .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375em;
    margin: auto;
    padding: var(--sectionPadding);
    /* 48px - 64px */
    padding-top: clamp(3em, 5vw, 4em);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #cs-menu-group .cs-hidden {
    display: none;
  }
  #cs-menu-group .cs-wrapper {
    width: 94%;
    max-width: 56.25rem;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* 16px - 28px top & bottom */
    /* 32px - 48px left & right */
    padding: clamp(1em, 3vw, 1.75em) clamp(2em, 4vw, 3em);
    border-radius: 4.375em;
    background-color: #f3f3f3;
    border: 1px solid #b4b2c7;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    grid-template-columns: repeat(12, 1fr);
    position: sticky;
    column-gap: clamp(0.5rem, 2vw, 1.5rem);
    row-gap: 0.5rem;
    /* change based on how tall your navigation is above it.  If your navigation is 90px all, set it to 100px from the top on mobile, and increase the larger value in the lamp to change the desktop value if you need to as well */
    /* 84px - 110px */
    top: clamp(5.25rem, 10vw, 6.875rem);
    z-index: 1000;
  }
  #cs-menu-group .cs-button-group {
    width: auto;
    margin: 0 0.5rem 0 0;
    /* 24px - 36px */
    column-gap: clamp(1.5rem, 2vw, 2.25rem);
    row-gap: 0.75rem;
    z-index: 1000;
    grid-column: span 6;
  }
  #cs-menu-group .cs-button {
    width: 100%;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 2;
    font-weight: 400;
    padding: 0.25rem;
    color: #878787;
    display: flex;
    background-color: transparent;
    border: none;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: color 0.3s, font-weight 0.3s, color 0.3s;
  }
  #cs-menu-group .cs-button:hover {
    color: var(--primary);
    cursor: pointer;
  }
  #cs-menu-group .cs-button:after {
    /* active state icon */
    content: "";
    position: relative;
    display: block;
    width: 0;
    /* 16px - 24px */
    height: clamp(1em, 3vw, 1.5em);
    background: url("/assets/svgs/art.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: width 0.3s, opacity 0.3s, margin-left 0.3s;
  }
  #cs-menu-group .cs-button.cs-active {
    color: var(--headerColor);
    font-weight: 700;
  }
  #cs-menu-group .cs-button.cs-active:after {
    width: clamp(1.5625em, 3vw, 2.25em);
    opacity: 1;
    /* 8px - 16px */
    margin-left: clamp(0.5em, 0.5vw, 1em);
  }
  #cs-menu-group .cs-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 32px - 64px */
    gap: clamp(2rem, 6vw, 4rem);
  }
  #cs-menu-group .cs-menu.cs-menu-style2 {
    /* changes to desktop at desktop */
    background: url("/assets/images/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  #cs-menu-group .cs-menu.cs-menu-style2:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cs-menu-group .cs-menu.cs-menu-style2 .cs-title,
  #cs-menu-group .cs-menu.cs-menu-style2 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #cs-menu-group .cs-menu.cs-menu-style2 .cs-name {
    color: var(--bodyTextColorWhite);
  }
  #cs-menu-group .cs-menu.cs-menu-style2 .cs-menu-p {
    color: #fff;
    opacity: 0.8;
  }
  #cs-menu-group .cs-menu.cs-menu-style3 {
    background-color: rgba(255, 255, 255, 0.7);
  }
  #cs-menu-group .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    position: relative;
    z-index: 20;
  }
  #cs-menu-group .cs-title {
    font-size: clamp(3.9375rem, 7.9vw, 5.4625rem);
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #cs-menu-group .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #cs-menu-group .cs-menu-list {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    position: relative;
    z-index: 20;
  }
  #cs-menu-group .cs-menu-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* 32px - 60px */
    row-gap: clamp(2rem, 6vw, 3.75rem);
  }
  #cs-menu-group .cs-menu-item {
    text-align: left;
    list-style: none;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #cs-menu-group .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
  }
  #cs-menu-group .cs-name {
    /* 4px - 8px */
    margin: clamp(0.25rem, 0.8vw, 0.625rem) 0 0 0;
    max-width: 16ch;
    margin-right: auto;
    display: block;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #cs-menu-group .cs-price {
    /* 20px - 25px */
    font-size: clamp(1rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    width: auto;
    margin: 0;
    padding: 0.5rem 0.75rem;
    border-radius: 5rem;
    background-color: #fff;
    border: 1px solid #b4b2c7;
    color: var(--primary);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: block;
    /* prevents flexbox from squishing it */
    flex: none;
    /* forces it into the 3rd position */
    order: 3;
  }
  #cs-menu-group .cs-menu-p {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
@media only screen and (min-width: 48rem) {
  #cs-menu-group .cs-container {
    max-width: 80rem;
  }
  #cs-menu-group .cs-menu {
    width: 100%;
  }
  #cs-menu-group .cs-menu.cs-menu-style2 {
    background: url("/assets/images/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  #cs-menu-group .cs-menu-row {
    width: 100%;
    flex-direction: row;
    justify-content: stretch;
    /* 32px - 80px */
    gap: clamp(2em, 4vw, 5rem);
  }
  #cs-menu-group .cs-menu-row.cs-3 .cs-h3 {
    gap: 0.5rem;
  }
  #cs-menu-group .cs-menu-row.cs-3 .cs-h3:after {
    display: none;
  }
  #cs-menu-group .cs-menu-row.cs-3 .cs-name {
    font-size: clamp(1rem, 2vw, 1.5625rem);
    width: 70%;
    max-width: 20ch;
  }
  #cs-menu-group .cs-menu-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  #cs-menu-group .cs-menu-item {
    grid-column: span 4;
    max-width: 37.5rem;
    margin: 0 auto;
  }
  #cs-menu-group .cs-name {
    width: fit-content;
    max-width: 70%;
  }
}
@media only screen and (min-width: 0rem) {
  body.dark-mode #cs-menu-group {
    background-color: rgba(0, 0, 0, 0.5);
  }
  body.dark-mode #cs-menu-group .cs-wrapper {
    background-color: var(--medium);
  }
  body.dark-mode #cs-menu-group .cs-button {
    color: #fff;
  }
  body.dark-mode #cs-menu-group .cs-button:hover {
    color: var(--primary);
  }
  body.dark-mode #cs-menu-group .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #cs-menu-group .cs-title,
  body.dark-mode #cs-menu-group .cs-text,
  body.dark-mode #cs-menu-group .cs-name,
  body.dark-mode #cs-menu-group .cs-menu-p {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-menu-group .cs-text,
  body.dark-mode #cs-menu-group .cs-menu-p {
    opacity: 0.8;
  }
  body.dark-mode #cs-menu-group .cs-price {
    background-color: var(--medium);
    color: var(--secondary);
  }
  body.dark-mode #cs-menu-group .cs-menu-style2 .cs-price {
    color: var(--primary);
    background-color: #fff;
  }
  body.dark-mode #cs-menu-group .cs-menu-style3 {
    background-color: rgba(255, 255, 255, 0.03);
  }
}
/*<--- -------------------------- -->
  <---            Hero            -->
  <--- -------------------------- -*/
@media only screen and (min-width: 0em) {
  #int-hero {
    background: transparent;
  }
  #int-hero picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -11;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/*<--- -------------------------- -->
  <---      Working Gallery       -->
  <--- -------------------------- -*/
@media only screen and (min-width: 0em) {
  #gallery {
    padding-top: 3.75em;
    padding-bottom: 12.75em;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 5;
  }
  .gallery-wrapper {
    width: 96%;
    max-width: 66.1em;
    padding: 0;
    font-size: min(1.3vw, 1em);
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-gap: 1rem;
    grid-auto-flow: dense;
  }
  .gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
    filter: drop-shadow(2px 2px 3px #333);
  }
  .gallery-item .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .gallery-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    cursor: pointer;
    transition: all 400ms ease-in;
    transform: scale(1);
  }
  .gallery-item .image img:hover {
    transform: scale(1.05);
  }
  .w-1 {
    grid-column: span 1;
  }
  .w-2 {
    grid-column: span 2;
  }
  .w-3 {
    grid-column: span 3;
  }
  .w-4 {
    grid-column: span 4;
  }
  .w-5 {
    grid-column: span 5;
  }
  .h-1 {
    grid-row: span 1;
  }
  .h-2 {
    grid-row: span 2;
  }
  .h-3 {
    grid-row: span 3;
  }
  .h-4 {
    grid-row: span 4;
  }
  .h-5 {
    grid-row: span 5;
  }
  #lightbox {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    display: none;
    overflow: hidden;
  }
  #lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #lightbox img {
    max-width: 90%;
    max-height: 80%;
    padding: 4px;
    border: 0.2px solid silver;
    transition: transform 0.3s ease;
    position: absolute;
  }
  #prev-button,
  #next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
    padding: 0.5rem;
  }
  #prev-button:hover,
  #next-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.8);
    color: #000;
  }
  #prev-button {
    left: 1.5rem;
  }
  #next-button {
    right: 1.5rem;
  }
  /* Sliding effect */
  .current-image {
    transition: transform 0.3s ease;
  }
  .slide-left {
    transform: scale3d(1.3, 1.3, 1.3);
  }
  .slide-right {
    transform: scale3d(1.3, 1.3, 1.3);
  }
}
@media only screen and (max-width: 37.5em) {
  /* An example to use combined with flex but could also be grids with different repetition of columns  */
  .gallery-wrapper {
    display: flex;
    flex-direction: column;
    flex: wrap;
    gap: 2.5rem;
    margin: 1.5rem;
  }
}
@media only screen and (max-width: 64em) {
  .gallery-wrapper {
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: 1fr;
    grid-gap: 2;
    grid-auto-flow: dense;
  }
  .gallery-container:nth-child(3n+2) {
    grid-column: 1/span 2;
    grid-row-end: span 2;
  }
  .gallery-container:nth-child(4n+3) {
    grid-column: 2/span 1;
    grid-row-end: span 2;
  }
  .w-1, .w-2, .w-3, .w-4, .w-5 {
    grid-column: span 1;
  }
  .h-1, .h-2, .h-3, .h-4, .h-5 {
    grid-row: span 1;
  }
}
@media only screen and (min-width: 0em) {
  body.dark-mode #portfolio {
    background: #1d1d1d;
  }
}

/*# sourceMappingURL=gallery.css.map */
