body {
  margin: 0;
}

h1 {
  font-size: 54px;
  color: #222;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

h2 {
  font-size: 38px;
  margin-bottom: 0;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 28px;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 2em;
}

a {
  text-decoration: none;
  color: #1a7fe8;
}

a:hover {
  color: #0760bc;
}

header {
  border-bottom: 1px solid #dcdcdc;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

header a {
  color: unset;
}

.header-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

.logo {
  width: 30%;
  align-items: center;
  display: flex;
  padding-left: 10px;
}

.logo a {
  max-width: 17%;
}

.logo img {
  max-width: 100%;
}

ul, ol {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0 !important;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  font-size: 18px;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  padding-right: 10px;
}

.navigation {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: flex-end;
}

.navigation li a {
  border-bottom: 0 solid transparent;
  transition: all 0.1s ease;
  color: #0c335c;
}

.navigation li a:hover {
  border-bottom: 2px solid #ec639f;
}

.navigation li a.active {
  border-bottom: 2px solid #ec639f;
  color: #0c335c;
}

.hamburger-icon {
  display: none;
  border: none;
  background-color: transparent;
}

.hamburger-icon .fa-bars,
.hamburger-icon .fa-x {
  color: #555;
  font-size: 18px;
  cursor: pointer;
}

.hamburger-icon input[type="checkbox"] {
  appearance: none;
}

@media screen and (max-width: 1024px) {
  .menu {
    font-size: 16px;
  }

  .logo a {
    max-width: 100%;
  }

  .logo img {
    height: 50px;
    max-width: none;
  }

  .navigation {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height ease-in-out 0.5s;
    position: absolute;
    background-color: #fff;
    top: 100%;
    align-items: flex-start;
    width: 100%;
    left: 0;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid #f2f2f2;
    width: 100%;
  }

  .navigation li a {
    width: 100%;
    display: block;
    padding: 10px 25px;
  }

  li:has(.active) {
    background-color: #f3f3f3;
  }

  .navigation li a:hover {
    border: unset;
  }

  .hamburger-icon {
    display: block;
  }

  .fa-x {
    display: none !important;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .navigation {
    margin-top: 1rem;
    display: flex;
    max-height: 300px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-bars {
    display: none;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-x {
    display: inline-block !important;
  }
}

#top-banner {
  background-image: url(/assets/images/ariel-handcraft-paper-quilling-top-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-left: 50px;
  max-width: 100%;
}

#top-banner h1 {
  font-size: 90px;
  margin: 0;
  color: #0c335c;
  font-family: "Aladin", sans-serif;;
}

#top-banner h2 {
  color: #0c335c;
  line-height: 1.5em;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top-banner {
    align-content: flex-start;
    flex-wrap: wrap !important;
    justify-content: center;
    text-align: left;
    height: 50vh;
    padding: 0 20px 0 20px;
  }

  #top-banner h1 {
    font-size: 64px;
  }

  #top-banner h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 600px) {
  #top-banner {
    justify-content: center;
    text-align: center;
    height: 40vh;
    padding: 0 10px 0 10px;
    align-items: flex-start;
    text-align: left;
    background-position: 57%;
  }

  #top-banner h1 {
    font-size: 30px;
  }

  #top-banner h2 {
    font-size: 16px;
  }
}

.content-parts {
  max-width: 1200px;
  margin: 50px auto;
  color: #222;
  text-align: left;
  padding: 0 5%;
}

.content-parts ul li, .content-parts ol li {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 2em;
  margin-left: 50px;
}

.two-columns {
  display: flex;
}

.two-columns .col-1, .two-columns .col-2 {
  width: 50%;
}

.col-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content-images img {
  border-radius: 5px;
  max-width: 100%;
}

strong {
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .two-columns {
    flex-direction: column;
    justify-content: center;
  }

  .two-columns .col-1, .two-columns .col-2 {
    width: 100% !important;
  }
}

.two-columns .w-60 {
  width: 60%;
}

.two-columns .w-40 {
  width: 40%;
}

blockquote {
  margin: 0 auto;
  border-left: 3px solid #0c335c;
  font-family: "Lato", sans-serif;
  font-style: italic;
  padding: 10px 20px;
  background-color: #f9f9f9;
  line-height: 2em;
}

blockquote span {
  display: block;
  margin-top: 20px;
  font-weight: 500;
  font-style: normal;
}

.col-quote {
  display: flex;
  align-items: center;
}

blockquote ol {
  margin-top: 30px;
  margin-left: 20px;
  padding-inline-start: 0;
}

.two-columns .shadow-box {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
  margin: 20px;
  border-radius: 6px;
  padding: 0 30px 50px 30px;
}

@media screen and (max-width: 1024px) {
  .two-columns .shadow-box {
    max-width: 70%;
    margin: 20px auto;
  }
}

@media screen and (min-width: 1024px) {
  figure.small-image {
    max-width: 50%;
  }
}

footer {
  width: 100%;
  background-color: #0c335c;
  border-top: 6px solid #195491;
}

.footer-container {
  padding: 25px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-container h3 {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 22px;
}

.footer-container a {
  color: #fff;
}

.footer-container a:hover {
  color: #fff;
}

.footer-column{
  width: 25%;
}

.social-media-section {
  display: flex;
  gap: 10px;
  font-size: 22px;
  color: #1e1e66;
}

.social-media-section i {
  font-size: 22px;
  color: #1e1e66;
}

.social-media-section .social-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 6px;
  border-radius: 4px;
  width: 26px;
  height: 26px;
}

.social-box:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

#contact-social-media{
  margin-top: 30px;
  justify-content: flex-start;
}

#contact-social-media i{
  color: #fff;
}

#contact-social-media .social-box{
  background-color: #0c335c;
}

.copyright {
  margin: 0 auto;
  background-color: #031e3d;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 5%;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .copyright {
    flex-direction: column;
  }
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  max-width: 1200px;
}

.copyright a {
  color: #fff;
}

.copyright a:hover {
  color: #00bdc9;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-column{
    width: 100%;
  }

  .footer-column p, .copyright p {
    text-align: center;
  }

  .social-media-section {
    justify-content: center;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    padding-left: 5%;
    row-gap: 50px;
  }

  .footer-column {
    width: 50%;
  }

  .copyright {
    padding-left: 5%;
  }
}

#products-home{
  margin-top: 70px;
}

#products-home h2, #products-home h3 {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

#products-home p{
  margin-top: 0;
  font-size:18px;
}

#products-home .two-columns{
  margin-top: 30px;
}

#products-home .two-columns .col-1, #products-home .two-columns .col-2{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.framed-img{
  border: 1px solid #cccccc;
  padding: 20px;
  width: 60%;
  margin: 20px auto;
}

.framed-img img{
  border: 1px solid #cccccc;
  max-width: 100%;
  transition: all 0.4s ease;
}

.framed-img img:hover{
  filter: brightness(0.8);
}

.cta-button{
  margin: 10px auto;
  background-color: #ac1557;
  color: #fff;
  font-family: "Lato", sans-serif;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 20px;
  transition: all 0.2s ease;
}

.cta-button:hover{
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(172, 21, 87, 0.5);
}

#exhibitions-home{
  background-image: linear-gradient(to top, rgba(5, 190, 202, 1), rgba(255,255,255,1));
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#exhibitions-home h2{
  text-align: center;
}

#exhibition-box{
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40vw;
  padding: 10px;
  text-align: center;
}

#exhibition-box p{
  margin-top: 10px;
  margin-bottom: 10px;
}

#videos-home h2{
  text-align: center;
  margin-bottom: 30px;
}

#videos-home .two-columns .col-1, #videos-home .two-columns .col-2{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#videos-home .video-container {
  margin-top: 15px;
}

#videos-cta{
  display: flex;
  margin: 20px auto;
  align-items: center;
}

#footer-text{
  color: #fff;
  padding-right: 10%;
}

@media screen and (max-width: 600px){
  #footer-text{
    padding: unset;
  }
}

.footer-column p {
  margin: 6px 0;
}

.title-row{
  background: #0C335C;
  background: linear-gradient(115deg, rgba(12, 51, 92, 1) 60%, rgba(236, 99, 159, 1) 60%);
  padding-top: 30px;
  padding-bottom: 30px;
}

.title-row h1{
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 48px;
}

@media screen and (max-width: 1100px) {
  .title-row h1{
    padding: 0 5%;
    font-size: 30px;
  }
}

#about-h2{
  font-family: "Aladin", sans-serif;;
}

.forms {
  margin-top: 28px;
  width: 400px;
  display: flex;
  flex-direction: column;
  max-width: 95%;
}

.forms input,
.forms textarea {
  width: 100%;
  padding: 15px 0 15px 10px;
  margin: 7px 0;
  border: 1px solid #dadada;
  font-family: "Lato", sans-serif;
  background-color: #f8f8f8;
  font-size: 16px;
  border-radius: 5px;
}

.forms textarea{
  min-height: 100px;
}

.forms .submit-button {
  width: 40%;
  cursor: pointer;
  background-color: #0C335C;
  color: #fff;
  font-family: "Lato", sans-serif;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 20px;
  transition: all 0.2s ease;
}

.forms .submit-button:hover{
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 51, 92, 0.5);
}

@media screen and (max-width: 1024px) {
  .two-columns .form-box {
    margin: 0 auto;
  }
}

.category-box{
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
}

.category-title-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.category-title-box h2{
  margin: 0;
  font-size: 32px;
}

.category-title-box .cta-button{
  margin: 0;
  font-size: 18px;
}

.category-items-container{
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.category-item{
  width: 30%;
  border: 1px solid #dadada;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.4s ease;
}

.empty-item{
  width: 30%;
}

@media screen and (max-width: 600px){
  .category-items-container{
    flex-direction: column;
  }
  .category-item, .empty-item{
    width: 100%;
  }
}

.category-item:hover{
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.19);
}

.category-item img{
  max-width: 100%;
  border-radius: 5px 5px 0 0;
}

.category-item h3{
  font-size: 20px;
  text-align: center;
  max-width: 95%;
  margin: 12px auto;
  line-height: 1.6em;
}

.category-item a, .category-item a:hover{
  color: unset;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .category-title-box h2{
    font-size: 28px;
  }
  .category-title-box .cta-button{
    font-size: 18px;
  }
  .category-item h3{
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .category-title-box{
    flex-direction: column;
    gap: 20px;
  }
  .category-title-box h2{
    font-size: 22px;
  }
  .category-title-box .cta-button{
    font-size: 16px;
  }
  .category-item h3{
    font-size: 18px;
  }
}

.breadcrumb-box {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  max-width: 1200px;
  margin: 15px auto;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 600px) {
  .breadcrumb-box {
    font-size: 14px;
    margin: 0 5%;
  }
}

@media screen and (max-width: 1100px) {
  .breadcrumb-box {
    margin: 24px 5%;
  }
}

.breadcrumb-box nav ol {
  display: flex;
  list-style: none;
  padding-inline: 0;
}

.breadcrumb-box nav ol li a {
  color: #fff;
}

.breadcrumb-box nav ol li a:hover {
  color: #e6e6e6;
}

.breadcrumb-sep::after {
  content: "/";
  margin: 0 6px;
}

.artworks-category-page .category-items-container{
  margin-top: 40px;
}

.artwork-page h1{
  font-size: 36px;
}

.artwork-page h2{
  font-size: 28px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ec639f;
  text-align: center;
  margin-top: 50px;

}

.more-photos-box{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 50px;
}

.more-photo{
  width: 30%;
}

.more-photo .content-images{
  margin: 0;
}

.category-link{
  background-color: #f6f6f6;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  width: fit-content;
}

.artwork-sections-text{
  text-align: center;
  width: 70%;
  margin: 20px auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

@media screen and (min-width: 1024px){
  .video-container{
    width: 560px;
    height: 315px;
    padding-bottom: unset;
    margin: 20px auto;
    display: block;
  }
}


.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog {
  display: block;
  max-width: 1200px;
  margin: 50px auto;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5%;
  padding-left: 1%;
}

.blog-post {
  flex-direction: column;
  display: inline-flex;
  width: 32%;
  background-color: #fff;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #dadada;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.4s ease;
}

.blog-post:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.19);
}

@media screen and (max-width: 600px) {
  .blog-post {
    width: 90%;
  }

  .blog-grid {
    justify-content: center;
    gap: 30px;
  }
}

.blog-post img {
  max-width: 100% !important;
}

.blog-post h2 {
  color: #000;
  font-size: 22px;
  text-align: left;
}

.blog-archive-titles{
  align-self: flex-start;
  width: 100%;
  line-height: 2em;
}

.blog-post .excerpt {
  color: #333;
  font-size: 16px;
  content-visibility: auto;
  line-height: 1.5em;
}

.post-meta {
  border-top: 1px solid #d6d6d6;
  width: 100%;
  text-align: center;
}

.post-date {
  color: #444;
  font-size: 14px;
  line-height: 1em;
}

.single-blog {
  max-width: 1200px;
  margin:50px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5%;
}

.single-post-title-box{
  width: 50%;
}

.single-post-title-box h1{
  font-size: 38px;
  line-height: 1.7em;
}

.single-blog p{
  width: 100%;
}

.single-blog .featured-image{
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  width: 50%;
}

@media screen and (max-width: 1024px){
  .single-blog{
    flex-direction: column;
    margin-top: 0;
  }
  .single-post-title-box, .single-blog .featured-image{
    width: 100%;
    margin: 0 auto;
  }
  .single-post-title-box{
    text-align: center;
  }
  .single-post-title-box h1{
    font-size: 32px;
  }
}

.single-blog #date {
  font-size: 14px;
  text-align: center;
  margin-block: 0;
}

.blog-pics {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: 0;

}

.blog-pics img {
  max-width: 90%;
  border-radius: 5px;
}

.blog-post-content-box {
  display: flex;
  flex-direction: column;
  padding: 12px;
  align-items: flex-start;
  position: relative;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .blog-post {
    width: 48%;
  }
}

.blog-content h2{
  font-size: 28px;
  scroll-margin-top: 100px
}

#table-of-contents {
  background-color: #f6f6f6;
  max-width: 40%;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  #table-of-contents{
    max-width: 80%;
  }
}

#table-of-contents .toc-links li{
  margin-left: 20px;
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toc-title {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
}

.toc-toggle-container {
  position: relative;
  display: flex;
}

.toc-checkbox {
  display: none;
}

.toc-label {
  cursor: pointer;
  display: block;
}

.toc-open-icon,
.toc-close-icon {
  font-size: 18px;
  color: #555;
  transition: opacity 0.3s ease;
}

.toc-close-icon {
  display: none !important;
}

.toc-links {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.toc-checkbox:checked + .toc-label .toc-open-icon {
  display: none;
}

nav#table-of-contents:has(.toc-checkbox:checked) .toc-close-icon {
  display: inline-block !important;
}

nav#table-of-contents:has(.toc-checkbox:checked) .toc-links {
  max-height: 500px;
  padding-top: 10px;

}
