*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    transition: all 0.5s ease-in-out;
    scroll-behavior: smooth;
}

/*Fonts*/
@font-face {
    font-family: "Averia Serif Libre";
    src: url(./fonts/AveriaSerifLibre-Regular.ttf);
}
@font-face {
    font-family: "Averia Serif Libre Bold";
    src: url(./fonts/AveriaSerifLibre-Bold.ttf);
}
@font-face {
    font-family: "LT Remark";
    src: url(./fonts/LTRemark-Regular.otf);
}
@font-face {
    font-family: "Source Serif";
    src: url(./fonts/SourceSerif4-Regular.ttf);
}

/* === CONTAINERS === */
.outer-container {
  width: 100vh;
  height: 100vw;
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  background-image: url(./assets/[DAYBREAK]\ Background\ Texture.webp);
  background-color: rgb(255, 252, 240);
  background-blend-mode: multiply;
  box-shadow: -95px 0 200px rgb(255, 220, 107) inset;
}
::-webkit-scrollbar {
  display: none;
} /* Safari/Chrome */

.slide {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.rotated {
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
}

.container {
  display: flex;
  flex-direction: row;
  width: 500vw;
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
  height: 100vh;
}
/* === END CONTAINERS === */

/*Arrows*/
.slide-arrow {
    all: unset; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;   
}

#button-blackbg {
    color: #fff;
}

#button-blackbg:hover,
.slide-arrow:hover {
    scale: 1.1;
    color: #F28F38;
}

.prev-slide { left: 20px; }
.next-slide { right: 20px; }

@media screen and (max-width: 1100px) {
    .slide-arrow {
        display: none;
    }
}

/*Preloader */
.loader {
  border: 8px solid #F28F38;
  border-top: 8px solid #FDF2CA;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#preloader {
  background: #FDF2CA;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 19999;
  transition: opacity 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader-hidden {
  animation: fadeOut 0.5s ease-out forwards;
  display: none;
}
@keyframes fadeOut {
  to {
    opacity: 0;
    scale: 1.1;
  }
}

/* === START NAVIGATION === */
/* === START NAVIGATION === */
#mobile-header {
  display: none;
}

.main-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  z-index: 5;
}

.main-nav .wrapper {
  position: relative;
  z-index: 2;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
}

#mobile-header .wrapper {
  padding: 20px 20px;
}
.nav-menu {
  z-index: 1001;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-family: "Source Serif", serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15em;
  width: 100%;
  height: 0.35em;
  background: #ffd45e;
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease;
  z-index: -1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.main-nav .logo img {
  display: none;
}

.main-nav .hamburger {
  display: none;
}

#mobile-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
#mobile-header .logo img {
  display: block;
  width: 200px;
  height: auto;
}

#mobile-hamburger {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
#mobile-hamburger img {
  width: 40px;
  height: auto;
}

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: absolute;
  right: 16px;
  top: 85px;
  width: 280px;
  background: #151514;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10001;
}
.mobile-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Averia Serif Libre Regular", serif;
  font-size: 1.2rem;
  font-style: italic;
  padding: 15px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.mobile-menu li a:hover {
  background-color: #ffd45e;
  color: #151514;
}

#recent .main-nav {
  right: auto;
  left: 23%;
  justify-content: flex-start;
  padding-left: 48px;
}
#recent .nav-gradient {
  width: 62vw;
}

/* === END NAVIGATION === */

/* === HERO / CONTENT === */
.slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-family: sans-serif;
  scroll-snap-align: start;
}

.main-left {
  flex: 1; /* takes up half when side by side */
  background-image: url("./assets/VISUAL_LANDING_NO-TEXT.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-left img {
  width: auto;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.credSub {
  position: absolute;
  bottom: 10px;
  margin-left: 40px;
  color: #fff;
  font-size: 14px;
  font-family: "Source Serif", serif;
  z-index: 5;
}

.main-right {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: start;
  height: 100%;
  padding: 20px 50px 50px 100px;
  position: relative;
}

.content-right {
  margin-top: -50px;
  z-index: 6;
}

.main-logo {
  width: 90%;
  height: auto;
  max-width: 100%;
  margin-left: -60px;
}
.white-logo {
  display: none;
}

.pronunciation {
  font-size: 1.2rem;
  font-family: "Source Serif";
  margin-bottom: 20px;
  margin-top: -50px;
}
.pronunciation span {
  font-style: italic;
}

.meaning {
  font-size: 1.2rem;
  font-family: "Source Serif";
}

.intro {
  font-size: 1.7rem;
  font-family: "Source Serif";
  margin-top: 60px;
}

.submit-link {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-family: "Source Serif";
  font-style: italic;
  line-height: 1.1;
  z-index: 1;
  margin-top: 20px;
}
.submit-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15em;
  width: 100%;
  height: 0.38em;
  background: #ffd45e;
  border-radius: 2px;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  transition: transform 300ms ease;
  z-index: -1;
}
.submit-link:hover {
  color: #67370f;
}

.bottom-meta {
  bottom: 28px;
  left: 6rem;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
}
.folio-copy {
  margin: 0;
  max-width: 520px;
  font-family: "Averia Serif Libre Regular", serif;
  font-size: 18px;
  line-height: 1.35;
  color: #1b1a19;
}
.meta-line {
  flex: 1 1 auto;
  height: 1px;
  background: #1b1a19;
  opacity: 0.7;
  transform: translateY(6px);
}

/* ===================== MEDIA QUERIES ===================== */
@media (max-width: 1120px) {
  .outer-container {
    width: 100%;
    height: auto;
    transform: none;
    transform-origin: initial;
    position: static;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .container {
    display: block;
    width: 100%;
    height: auto;
    transform: none;
    transform-origin: initial;
  }
  .slide {
    position: relative;
    width: 100%;
    min-height: 100svh;
    height: auto;
    display: block;
    font-size: 1rem;
    scroll-snap-align: none;
  }

  .main-left {
    position: relative;
    height: 100svh;
    overflow: hidden;
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0)
      ),
      url("./assets/VISUAL_LANDING_NO-TEXT.webp");
  }
  .main-left img {
    width: 100%;
    height: 100svh;
    object-fit: cover;
    display: block;
  }

  .main-right {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 16px 24px;
  }

  .content-right {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
  }
  .main-logo {
    display: none;
  }
  .white-logo {
    display: block;
    width: 100%;
    margin: 0 0 0 12px;
  }
  .pronunciation {
    display: none;
  }
  .meaning {
    display: none;
  }
    .intro {
    display: none;
  }

  .bottom-meta {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    left: 0%;
  }
  .folio-copy {
    max-width: none;
    font-size: 1.5rem;
    color: #fff;
  }
  .meta-line {
    display: none;
  }
  .submit-link {
    margin-bottom: 50px;
    color: #fff !important;
  }

  .main-nav {
    display: none !important;
  }

  #mobile-header {
    display: block;
  }
}

@media (max-width: 950px) {
  .content-right {
    margin: 0;
    font-size: 1rem;
    color: #fff;
  }
  .main-left {
    height: 100vh;
    width: 100%;
  }
  .white-logo {
    display: block;
    width: 100%;
    margin: 0 0 300px 12px;
  }
  .pronunciation {
    margin: -350px 0 10px;
    display: block;
  }
  .meaning {
    margin: 0 0 10px;
    display: block;
  }
  .intro {
    margin-bottom: 10px;
    display: block;
    font-size: 1.4rem;
    margin-top: 30px;
  }


  .bottom-meta {
    display: none;
  }
  .folio-copy {
    max-width: none;
    font-size: 1rem;
    color: #fff;
  }
}

@media (max-width: 850px) {
  .content-right {
    margin: 0;
    font-size: 1rem;
    color: #fff;
  }
  .main-left {
    height: 100vh;
    width: 100%;
  }
  .white-logo {
    display: block;
    width: 100%;
    margin: 0 0 300px 12px;
  }
  .pronunciation {
    margin: -300px 0 20px;
  }
  .meaning {
    margin: 0 0 10px;
  }

  .bottom-meta {
    display: none;
  }
  .folio-copy {
    max-width: none;
    font-size: 1rem;
    color: #fff;
  }
}

@media (max-width: 770px) {
  .content-right {
    margin: 0;
    font-size: 1rem;
    color: #fff;
  }
  .main-left {
    height: 100vh;
    width: 100%;
  }
  .white-logo {
    display: block;
    width: 100%;
    margin: 0 0 400px 12px;
  }
 .pronunciation {
    margin: -350px 0 10px;
  }
  .meaning {
    margin: 0 0 10px;
  }


  .bottom-meta {
    display: none;
  }
  .folio-copy {
    max-width: none;
    font-size: 1rem;
    color: #fff;
  }
    .credSub {
    left: 35%;
  }
}

@media (max-width: 430px) {
    .bottom-meta {
    display: none;
  }
  .credSub {
    left: 25%;
  }
}

@media (min-width: 1121px) {
  .main-nav {
    display: block;
    z-index: 999999;
  }
  #mobile-header {
    display: none;
  }
}

/*Testimonials*/
.testimonials{
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    min-height: 100vh;
    padding: 1% 1% 0.25% 1%;
}

.testimonials .about-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: 1;
    align-items: center;
}

.about-left { grid-area: 1 / 1 / 2 / 2; }
.about-right { grid-area: 1 / 2 / 2 / 3; }
.about-container .faq-bottom-meta { 
    grid-area: 2 / 1 / 3 / 3; 
    align-self: end; 
    margin-top: auto;
}

.testimonials .about-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 80%;
    max-height: 80vh;
    aspect-ratio: 3 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; 
}

.image-container img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block; 
}

.testimonials .about-right p{
    font-family: "Source Serif", sans-serif;
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: 400;
    align-self: flex-start;
    margin-left: 40px;
}

.art-credit {
    position: absolute;
    bottom: 25px;
    left: 15px;
}

.testimonials .about-left {
    display: column;
    justify-content: right;
    align-items: right;
}

.testimonials .about-left h2{
    font-family: "LT Remark", sans-serif;
    font-size: 64px;
    text-align: left;
    width: fit-content;
    align-self: flex-start;
    font-weight: 400;
    border-bottom: 1px solid rgb(0, 0, 0);
    margin-left: 40px;
    padding-bottom: 10px;
    padding-right: 20px; /*adjust line*/
    transition: margin 0.6s ease, transform 0.6s ease;
}

.testimonials .about-left p::first-letter {
    font-size: 60px;
    float: left;           
    line-height: 1;
    padding-right: 5px;       
}

.testimonials .about-left p{
    padding: 25px 15px 15px 40px;
    font-family: "Source Serif", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    transition: max-height 0.3s ease-out 0.5s;
    text-align: justify;
}
/*Media Query for About Section*/
@media screen and (max-width: 1100px) {
    .about-container .faq-bottom-meta {
        display: none !important;
        margin-top: 0; 
    }

    .testimonials {
        min-height: 0;
        justify-content: flex-start;
        padding: 8% 1% 4% 1%;
    }
    
    .slide.testimonials {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;;
    }
    
    .testimonials .about-container {
        grid-template-rows: auto auto;
        align-items: start;  
    }

    .testimonials .about-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-left, .about-right {
        align-self: start;
    }

    .testimonials .about-left h2 {
        font-size: 50px;
        padding-bottom: 0px; 
        padding-right: 0px; 
    } 

    .art-credit {
        position: absolute;
        bottom: 15px;
        left: 5px;
    }
}

@media screen and (max-width: 770px) {
    .testimonials .about-left h2 {
        margin-left: 40px;
        margin-right: 40px;
    }
    
    .testimonials .image-container {
        align-items: center; 
    }

    .about-right {
        justify-content: center;
        align-items: center;
        padding: 60px 0;
    }
    

    .testimonials .about-right p {
        font-size: 12px;
    }

    .art-credit {
        position: absolute;
        bottom: 10px;
        left: 5px;
    }

    .testimonials .about-left p::first-letter {
        font-size: 48px;
        float: left;           
        line-height: 1;
        padding-right: 5px;       
    }

    .testimonials .about-left p {
        padding: 25px 40px 15px 40px;
        font-size: 16px;
    }
}

@media screen and (max-width: 435px) {
    .testimonials .about-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-right {
        order: 1;
        margin-bottom: 20px;
        padding: 0;
    }

    .about-left {
        order: 2;
    }

    .testimonials .about-left h2 {
        font-size: 59px;
        padding-bottom: 0px;
        padding-right: 0px;
    }

    .image-container {
        padding: 50px 0 10px 0;
    }
}


/*FAQ*/
.faq{
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    min-height: 100vh;
    padding: 1% 1% 0.25% 1%;
}

.faq .faq-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: 1;
}

.faq-left { grid-area: 1 / 1 / 2 / 2; }
.inner-container { grid-area: 1 / 2 / 2 / 3; }
.faq-bottom-meta { grid-area: 2 / 1 / 3 / 3; }

.faq .faq-left{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: height 0.6s ease, opacity 0.6s ease, transform 0.6s ease; /* add height */
    min-height: 100%; 
}
.faq h2{
    font-family: "LT Remark", sans-serif;
    font-size: 52px;
    text-align: left;
    width: fit-content;
    align-self: flex-start;
    font-weight: 400;
    border-bottom: 1px solid rgb(0, 0, 0);
    margin-left: 20px;
    padding-bottom: 10px;
    transition: margin 0.6s ease, transform 0.6s ease;
}

.faq .inner-container{
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    width: 100%;
    gap: 10px;
    padding-top: 0; 
    height: 100%;
}

#faq-list li {
    cursor: pointer;
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;

    font-family: "Averia Serif Libre", sans-serif;
    font-size: 25px;
    font-weight: 400;
    
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(0, 0, 0);
    align-items: center;
    
}

.faq-icon {
    width: 50px;
    height: 50px;
    background-image: url('./assets/sun-asset.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    align-items: flex-end;
}

.faq-header{
    background-image: linear-gradient(#FFD445);
    background-repeat: no-repeat;
    background-size: 0% 60%;   /* start hidden */
    background-position: 0 90%;
    transition: background-size 0.3s ease;
}

#faq-list li:hover .faq-header,
#faq-list li.active .faq-header {
  background-size: 100% 60%;
}

#faq-answer h3 {
    padding: 15px 40px 15px 15px;;
    cursor: pointer;
    font-family: "Averia Serif Libre", sans-serif;
    font-size: 31px;
    font-weight: 400;
    transition: max-height 0.3s ease-out 0.5s;
}
#faq-answer p {
    padding: 0px 40px 15px 15px;
    font-family: "Source Serif", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    transition: max-height 0.3s ease-out 0.5s;
    text-align: justify;
}

#faq-answer {
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

#faq-answer.fade-out {
  opacity: 0;
}

/*FAQ bottom footer*/
.faq-bottom-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    align-self: end;

}

.faq-folio-copy {
    margin: 0;
    padding: 0;
    font-family: "Averia Serif Libre", serif;
    font-size: 18px;
    line-height: 1.35;
    color: #1b1a19;
    white-space: nowrap; 
}

.faq-meta-line {
    flex: 1;
    height: 1px;
    background: #1b1a19;
    opacity: 0.6;
}

.accordion-container {
    display: none;
}

/*Media Query for About Section*/
@media screen and (max-width: 1100px) {
    .faq-container .faq-bottom-meta {
        display: none !important; 
    }

    .faq {
        padding: 1% 1% 3% 1%;
    }

    .faq .faq-container {
        grid-column-gap: 10px;
    }

    .faq h2 {
        font-size: 56px;
        margin-left: 40px;
        margin-right: 40px;
    }

    #faq-answer h3 {
        padding: 15px 40px 15px 40px
    }

    #faq-answer p {
        padding: 0px 40px 15px 40px;
    }

    #faq-list li {
        margin-right: 40px;
    }
}
@media screen and (max-width: 770px) {
    .faq-container {
        display: none !important; 
    }
    
    .accordion-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    .faqs-header-wrapper {
        margin: 0 auto;
        max-width: 1200px;
    }

    .faqs-header-wrapper h2 {
        font-family: "LT Remark", sans-serif;
        font-size: 70px;
        text-align: left;
        width: fit-content;
        align-self: flex-start;
        font-weight: 400;
        border-bottom: 1px solid rgb(0, 0, 0);
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 20px;
        padding-top: 50px;
        padding-bottom: 10px;
        transition: margin 0.6s ease, transform 0.6s ease;
    }
    
    .faq .accordion-inner-container{
        width: 100%;
        max-width: 600px;
        padding: 0 20px 50px 20px;
    }

    .faq .accordion-item{
        border-radius: 5px;
        margin-bottom: 10px;
        overflow: hidden;
    }
    
    .faq .accordion-item-header {
        position: relative;
        overflow: visible; /*allow pseudo to show*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        margin: 0 20px;
        cursor: pointer;
        font-family: "Averia Serif Libre", sans-serif;
        font-size: 28px;
        background: none;              
        -webkit-tap-highlight-color: transparent;
        will-change: transform;
        transform: translateZ(0);       
    }

    .faq .accordion-item-header::before {
        content: "";
        position: absolute;
        left: 0;
        top: 40%;              
        height: 50%;           
        width: 0;              
        z-index: -1;           
        background: linear-gradient(90deg, #FFD445 0%, #FFD445 100%);
        transition: width 360ms cubic-bezier(.2,.9,.2,1);
        pointer-events: none;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        box-shadow: none;
    }

    .faq .accordion-item-header > * {
        position: relative;
        z-index: 3;
    }

    .faq .accordion-item-header:hover::before,
    .faq .accordion-item-header:focus::before,
    .faq .accordion-item-header.active::before,
    .faq .accordion-item-header.touched::before {
        width: 88%; /*final fill width*/
    }

    .faq .accordion-item-header.active,
    .faq .accordion-item-header.touched {
        color: #1b1a19;
    }

    .faq .accordion-item-body{
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        border-top: 1px solid rgb(0, 0, 0);
        margin: 0 20px;
    }

    .faq .accordion-item-header.active{
        transition: max-height 0.3s ease-out 0.5s;
        border-bottom: none;
        background-size: 85% 50%;
        will-change: background-size;
        transform: translateZ(0);
    }

    .faq .accordion-item-header::after {
        content: url("./assets/sun-asset.svg");
        display: inline-block;
        width: 45px;
        height: auto;
        flex-shrink: 0;
        transition: transform 0.6s ease;
        position: relative;
        z-index: 2;
    }

    .faq .accordion-item-header:hover,
    .faq .accordion-item-header:focus,
    .faq .accordion-item-header.active,
    .faq .accordion-item-header.touched {
      background-size: 85% 50%;
    }

    .faq .accordion-item-body{
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        border-top: 1px solid rgb(0, 0, 0);
        margin: 0 20px;
    }
    .faq .accordion-item-body-content{
        padding: 15px 0;
        font-family: "Source Serif", sans-serif;
        font-size: 16px;
        line-height: 1.5;
        text-align: justify;
        border-bottom: 1px solid rgb(0, 0, 0);
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 435px) {
    .faqs-header-wrapper h2 {
            font-family: "LT Remark", sans-serif;
            font-size: 64px;
        }

    .faq .accordion-item-header:hover::before,
    .faq .accordion-item-header:focus::before,
    .faq .accordion-item-header.active::before,
    .faq .accordion-item-header.touched::before {
        width: 86%; /*final fill width*/
    }
}

/*Submission Form*/
.submission-form{
    display: flex;
}
.submission-form .artbg{
    width: 100%;
    background-image: url("assets/VISUAL_SUBMISSION FORM.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}
.submission-form p.credSubmission{
    color: white;
    display: flex;
    font-family: "Source Serif", sans-serif;
}
.submission-form .credSubmission {
    position: absolute;
    bottom: 10px;
    font-size: 14px;
}
.submission-form h2{
    font-family: "LT Remark", sans-serif;
    color: white;
    font-size: 64px;
    text-align: center;
    justify-self: center;
    align-self: center;
    width: 100%;
    font-weight: lighter;
    transform: translateY(-100px);
}
.submission-form .artbg p{
    font-family: "Source Serif", sans-serif;
    color: white;
    font-size: 14px;
    align-self: flex-start;
    margin-left: 40px;
    transform: translateY(300px);
}
.submission-form .inner-container{
    display: flex;
    flex-direction: column;
    padding-right: 4.5%;
    gap: 10px;
    width: 100%;
    justify-content: center;
    height: 100vh;
    padding-top: 100px;
    padding-left: 50px;
}
.form-group {
    margin-bottom: 15px;
    font-family: "Source Serif", sans-serif;
    font-size: 16px;
    color: #000000;
    z-index: 1000;
}
label{
    display: block;
    margin-bottom: 5px;
    font-family: "Source Serif", sans-serif;
    font-size: 16px;
}
input[type="text"],input[type="number"],input[type="url"],input[type="email"],select {
    width: 100%;
    padding: 8px;
    border: 1px solid #000000;
    box-sizing: border-box;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.radio-group, .checkbox-group {
    margin-top: 5px;
}
.radio-group label, .checkbox-group label {
    font-weight: normal;
    display: inline;
    margin-left: 5px;
}
.error {
    color: rgb(255, 59, 59);
    font-size: 0.9em;
    margin-top: 5px;
}
.button-wrapper{
    display: flex;
    width: calc(100% - 20px);
    margin-left: 20px;
    justify-content: flex-end;
    z-index: 1001;
}
button, .button-wrapper p, .cancel {
    background-color: rgb(77, 77, 77);
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    float: right;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    font-family: "Source Serif", sans-serif;
}
.pressSubmit:hover, .button-wrapper p:hover, .cancel:hover {
    background-color: rgb(150, 150, 150); 
    transform: scale(1.05);
}
.required:after {
    content: " *";
    color: rgb(255, 59, 59);
}
.group1, .group2, .group3{
    display: flex;
    gap: 10px;
}
.group1 .form-group{
    width: 100%;
}
.group1 .form-group.middleInitial{
    flex: 0 0 20%;
}
.group2 .form-group.degree-program{
    flex: 1;
}
.group3 .form-group.enrollment-status{
    flex: 1;
}
.sub-modal{
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  z-index: 1005;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  overflow: auto;
  transform: translateX(300vw);
  background-color: rgba(0, 0, 0,0.75);
}
.sub-modal-content{
  background-image: url(assets/[DAYBREAK]\ Background\ Texture.webp);
  margin: 10% auto;
  padding: 60px 20px;
  border: 2px solid #888;
  width: 80%;
}
.sub-modal-content h2{
  font-family: "LT Remark", sans-serif;
  font-size: 36px;
  transform: translateY(-10px);
  color: #000;
}
.sub-modal-content p{
  font-family: "Source Serif", sans-serif;
  font-size: 16px;
  margin: 20px 0;
}
.cancel{
  margin-right: 10px;
}
/*Recent Folios*/
.recent-folios{
    display: flex;
    position: relative;
}
.recent-folios .inner-container{
    display: flex;
    flex-direction: column;
    width: calc(100% - 500px);
    height: 100%;
    margin-left: 5%;
    margin-top: 100px;
}
.recent-folios h2{
    font-family: "LT Remark", sans-serif;
    font-size: 56px;
    font-weight: lighter;
}
.folios-container{
    display: flex;
    gap: 40px;
    margin-top: 30px;
    margin-right: 100px;
    padding-bottom: 10px;
    justify-content: space-between;
    max-width: 1050px;
}
.folios-container img{
    height: 350px;
    width: auto;
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1540px) {
    .folios-container img{
        height: 300px;
        width: auto;
    }
}
.folios-container img:hover{
    transform: scale(1.05);
}
.folios-container p{
    font-family: "Source Serif", sans-serif;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}
.prevbottom-meta {
    position: absolute;
    bottom: 20px;          
    left: 5%;   
    width: 59%;            
    display: flex;
    align-items: center;
    gap: 24px;
}
.prevmeta-line {
    flex: 1;
    height: 1px;
    background: #1b1a19;
    opacity: 0.7;
}
footer{
    background-color: rgba(0,0,0,1);
    display: flex;
    width: 100%;
    color: white;
    min-height: 100vh; /* allow footer to fill viewport height but remain responsive */
    font-family: Arial, sans-serif;
}
footer .footer-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* push .bottom to the bottom */
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
}
footer .footer-container img{
    width: 350px;
    height: auto;
    margin-bottom: 20px;
}
footer .footer-container hr{
    width: auto;
    margin: 50px 0;
    color: white;
}
footer .footer-container .information,
footer .footer-container .web{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
footer .footer-container .web{
    margin-top: -40px;
}
footer .footer-container .socials img{
    width: 30px;
    height: auto;
}
footer .footer-container .information img,
footer .footer-container .socials .web img{
    width: 30px;
    height: auto;
    margin-right: 20px;
    transform: translateY(10px);
}
footer .footer-container p, footer .footer-container h6{
    font-size: 16px;
}
footer .footer-container h6{
    margin-bottom: 10px;
}
footer .footer-container .information p,
footer .footer-container .web p{
    align-self: center;
}
footer .footer-container .bottom{
    margin-top: auto;
    width: 100%;
    display: block;
}
@media screen and (min-width: 1100px) {
  .submission-form .credSubmission {
    left: 40px;
  }
}
/* Responsive: revert to normal vertical scrolling on smaller viewports */
@media screen and (max-width: 1100px) {
    .outer-container{
        width: 100%;
        height: auto;
        transform: none !important;
        transform-origin: initial;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        position: relative !important;
    }
    .container{
        display: block !important;
        width: 100% !important;
        transform: none !important;
        transform-origin: initial;
    }
    .slide{
        width: 100% !important;
        height: auto !important;
        min-height: 100vh; /* keep section height reasonable */
    }
    header, nav { position: fixed; }


    .submission-form{
        flex-direction: column;
        background-image: url("assets/VISUAL_SUBMISSION FORM.webp");
        background-repeat: no-repeat;
        background-size: cover;
    }
    .submission-form .artbg{
        height: 100%;
        background: none;
    }
  /*  .submission-form .artbg .credSubmission{
        display: none;
    } */
    .submission-form p.credSubmission{
        display: flex;
        color: white;
    }
    .credSubmission {
        margin-left: 0px;
    }
    .submission-form h2{
        transform: translateY(100px);
    }
    .submission-form .inner-container{
        height: auto;
        margin: 20px 0;
        padding-left: 5%;
    }
    .form-group{
        color: white;
    }
    .sub-modal, .sub-modal-content h2{
      transform: none;
    }
    .recent-folios, .folios-container{
        flex-direction: column;    
    }
    .recent-folios .inner-container{
        width: 100%;
        margin: 0 auto;
    }
    .recent-folios .inner-container h2{
        margin: 50px 5%;
    }
    .recent-folios .inner-container .folios-container{
        align-items: center;
        justify-content: center;
        margin: 0 0 70px 0;
    }
    .prevbottom-meta, 
    .prevmeta-line{
        display: none;
    }
    footer{
        min-height: 100%;
    }
    footer .footer-container .web{
        margin-top: -20px;
    }
}
@media screen and (max-width: 1025px) {
    .submission-form .credSubmission {
        left: auto;
    }
}
@media screen and (max-width: 770px) {
    .group1, .group2, .group3{
        flex-direction: column;
    }
    .enrollment-status{
        justify-self: flex-start;
        align-items: flex-start;
    }
    .enrollmentChoices{
        display: flex;
        flex-direction: row;
        gap: 30px;
        width: 100%;
    }
    .recent-folios h2{
        font-size: 48px;
    }
    footer .footer-container img{
    width: 250px;
    }
}






