/*colors*/
:root {
  --wine: #26302e;
  --coral: #d03d01;
  --powder: #ebe4cf;
  --lav: #bba149;
  --navy: #02082C;

  --logo: #20246B;

  --moss: #454A38;
  --burnt_yellow: #864F04;
  --slate: #4A4f55;
  --crimson: #3F0E04;
  --charcoal: #171614;
}
/*fonts*/
.qahiri-regular {
  font-family: "Qahiri", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.six-caps-regular {
  font-family: "Six Caps", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-sans-condensed-regular {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.ibm-plex-sans-condensed-medium {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.ibm-plex-sans-condensed-semibold {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.ibm-plex-sans-condensed-bold {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.res-alert {
  height: 80vh;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  background: var(--powder);
  color: var(--wine);
}
button.back-btn{
  text-decoration: none;
  color: var(--navy);
}
button.back-btn:hover{
  text-decoration: underline;
  color: var(--coral);
}

#backToTop {
  position: fixed;
  bottom: 124px;
  right: 64px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: none;
  background: var(--coral);
  color: var(--wine);
  font-size: 3rem;
  line-height: 70%;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 1000;
}
#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 1px 2px 3px #02082c98;
}
#backToTop.show {
  opacity: 0.9;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/*homepage*/
body.index-body {
  background: var(--powder);
  color: var(--wine);
}
/* HERO */
.hero {
  min-height: 100vh;
  background-image: url(assets/jellyb.webp);
  background-size: cover;
  background-position: center;
  background-repeat: none;
  box-shadow: inset 0px -5px 8px #130004c1;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
}
.hero-text {
  width: fit-content;
  margin: 0 auto;
}
.hero-title {
  font-family: "Qahiri", sans-serif;
  font-size: clamp(3.6rem, 15vw, 18rem);
  color: var(--lav);
  line-height: 0.9;
  max-width: 75vw;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 0.05em;
}
.hero-title span {
  color: var(--powder);
}
.hero-subtitle {
  font-family: "Six Caps", sans-serif;
  color: var(--coral);
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.4vw, 4.2rem);
  letter-spacing: clamp(0.11em, 0.25vw, 0.25em);
  line-height: 1;
  padding-left: 3em;
  margin-top: -0.5rem;
  text-align: left;
  text-shadow: 1px 3px 4px #02082c87;;
}
.jump-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.jump-btn a {
  text-decoration: none;
  color: var(--coral);

  border: 1.5px solid var(--coral);
  border-radius: 8px;

  padding: 0.55em 2.75em;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  gap: 0.5em;

  background-color: transparent;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.jump-btn a:hover {
  background-color: rgba(244, 114, 88, 0.12);
  border-color: var(--coral);

  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.12);
}
.jump-btn a:active {
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18);
}
.jump-btn a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(244, 114, 88, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .hero-text {
    width: 100%;
    text-align: center;
  }
  .hero-title,
  .hero-subtitle {
    text-align: center;
    padding-left: 0;
    padding-bottom: .75em;
  }
   .jump-btn a {
    padding: 0.5em 1.5em;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 1025px){
  .hero-subtitle {
  padding-left: 4em;
  }
}
@media (min-width: 1441px){
  .hero-subtitle {
  padding-left: 0;
  line-height: .5;
  }
}
/* NAV */
.navbar {
  background-color: transparent;
}
.navbar-brand {
  font-family: "Six Caps", sans-serif;
  font-size: clamp(2rem, 3vw, 3.9rem);
  letter-spacing: 0.1em;
}
.navbar-brand a {
text-decoration: none;
color: var(--powder);
}
.navbar-brand a:hover {
  color: var(--lav);
}
body:not(.index-body):not(.nocturnal-body) .navbar-brand a {
  color: var(--wine);
}
body:not(.index-body):not(.nocturnal-body) .navbar-brand a:hover {
  color: var(--coral);
}
body:not(.index-body):not(.nocturnal-body) .btn-pill {
  background-color: var(--wine);
  color: var(--powder);
  border-color: var(--wine);
}
body:not(.index-body):not(.nocturnal-body) .btn-pill:hover {
  background: #2E060F;
  background: linear-gradient(225deg,rgba(46, 6, 15, 1) 0%, rgba(39, 6, 10, 1) 100%);
}
body:not(.index-body):not(.nocturnal-body) .navbar-toggler {
  background-color: #f47258;
}

.btn-pill {
  background-color: var(--coral);
  color: var(--wine);
  border-radius: 9px;

  padding: 0.35rem 1.25rem;
  font-family: "IBM Plex Sans Condensed", sans-serif;;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  

  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.08);

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;

  margin-left: 1em;
}

.btn-pill:hover {
  background-color: rgba(208, 61, 1, 0.3);
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);

  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.14),
    0 8px 16px rgba(0, 0, 0, 0.12);
}

.btn-pill:active {
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18);
}

.btn-pill:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(244, 114, 88, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.15);
}
.navbar-toggler {
  border: none;
}
.res-tooltip {
  --bs-tooltip-bg: #bdd6dcc4;
  --bs-tooltip-color: var(--wine);
}
@media (max-width: 991px) {
  .navbar-collapse {
    text-align: center;
  }
  .btn-pill {
    padding: 0.3rem 1.25rem;
  }
}
/* ABOUT */
.about-section {
  background: var(--powder);
}
.about-card {
  background: var(--powder);
  padding: 2rem 1rem;
  max-width: 900px;
}
.about-card h2 {
  font-family: "Six Caps", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.15rem;
  margin-bottom: 0.75rem;
}
p.about-text {
  line-height: 1.8rem;
}
.about-img {
  min-width: 65px;
  max-width: 100px;
  border-radius: 16px;
  bottom: -10%;
  left: 0;
  position: absolute;
  box-shadow: 1px 2px 2px #02082c87;
}

@media (max-width: 768px) {
  .about-img {
    display: none;
  }
}

/*projects*/
.projects-container {
  max-width: 1300px;
}
.projects-container h2 {
  font-family: "Six Caps", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.15rem;
  margin-bottom: 0.75rem;
}
.project-card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  min-height: 395px;
  overflow: hidden;
box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.3), 3px 5px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.project-card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--powder);
  position: relative;
  z-index: 2;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 0, 0, 0.4);
}
.project-card h3 {
  font-family: "Six Caps", sans-serif;
  font-size: 3.7rem;
  letter-spacing: 0.04rem;
  margin-bottom: 0.75rem;
}

.project-card p {
  font-size: 1.1rem;
  margin: 0;
  max-width: 28ch;
  margin-inline: auto;
  text-shadow: 4px 4px  7px #000;
}

.project-arrow {
  font-size: 2rem;
  opacity: 0.8;
}
/* project-lowlight */
.project-card.project-lowlight {
  background-image: url(assets/projects-lowlight.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* project-somia */
.project-card.project-somnia {
  background-image: url(assets/projects-somnia.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;}

/* project-js */
.project-card.project-js {
  background-image: url(assets/project-js.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;}

/* project-logo */
.project-card.project-logo {
  background-image: url(assets/projects-15.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* project-turtle */
.project-card.project-turtle {
  background-image: url(assets/turtle/tur-2.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;}

/* project-barca*/
.project-card.project-barca {
  background-image: url(assets/barca/canoe2.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* project-nocturnal */
.project-card.project-nocturnal {
  background-image: url(assets/nocturnal/jacket-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* project-flora */
.project-card.project-flora {
  background-image: url(assets/flora/flora-home.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*lowlight*/
.lowlight-body {
  background-color: #ffff;
}
.lowlight-body .navbar {
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 23%, rgba(255, 255, 255, 0) 99%);    
}
.lowlight-btn {
  display: inline-block;
  text-decoration: none;
  background-color: var(--wine);
  color: white;
  border: 2px solid var(--wine);
  padding: 8px 72px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 1px 2px 4px #1209005c;

  transition: transform 0.15s ease;
}

.lowlight-btn:hover {
  transform: translateY(-2px);
}
.lowlight-sectionA .jump-nav{
    padding: 1em 2em;
    color: var(--wine);
}
.LL-jump-btn {
  display: inline-block;
  transition: transform 0.15s ease;
}
.LL-jump-btn:hover {
  transform: translateY(-2px);
}
a.LL-jump-btn {
  padding: 8px 12px;
  background-color: var(--wine);
  color: white;
  border-radius: 8px;
  border: transparent;
  box-shadow: 1px 2px 4px #0200124c;
  text-decoration: none;
}
a.LL-jump-btn:hover {
  text-decoration: underline;
}
.lowlight-sectionA .jump-dropdown {
  display: none;
  margin-bottom: 1rem;
}
.ll-early {
  padding: 100px 20px;
}

.ll-sub__heading {
  margin-bottom: 60px;
}

.ll-early__grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.ll-early__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ll-early__text {
  max-width: 480px;
  margin-top: 40px;
}

.ll-early__text p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.ll-early__image img:hover {
  transform: translateY(4px);
  transition: 0.2s ease;
}
.ll-influences-cont {
  position: relative;

  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background-image: url(assets/lowlight/TGoED.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 80px 20px;
}

.ll-influences__text {
  max-width: 750px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--powder);
  letter-spacing: 0.05em;
  border-radius: 6px;
}

.ll-polluted {
  position: relative;

  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: #454A38;
  background: linear-gradient(90deg, rgba(69, 74, 56, 1) 0%, rgba(134, 79, 4, 1) 25%, rgba(74, 79, 85, 1) 50%, rgba(63, 14, 4, 1) 75%, rgba(23, 22, 20, 1) 100%);
}
.ll-polluted h3 {
  margin: 0 auto;
  color: var(--powder);
}
.ll-moss {
  color: var(--moss);
}
.ll-bYellow {
  color: var(--burnt_yellow);
}
.ll-slate {
  color: var(--slate);
}
.ll-crimson {
  color: var(--crimson);
}
.ll-charcoal {
  color: var(--charcoal);
}
.ll-gradient {
  position: relative;

  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  color: var(--powder);
  background: 
    linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%), 
    linear-gradient(0deg, rgba(69, 74, 56, 1) 0%, rgba(134, 79, 4, 1) 25%, rgba(74, 79, 85, 1) 50%, rgba(63, 14, 4, 1) 75%, rgba(23, 22, 20, 1) 100%);
  background-blend-mode: difference;
}
.ll-gradient-line {
  color: var(--powder);
  background-color: var(--powder);
  height: 0.3em;
  opacity: 0.5;
  border-radius: 0.1em;
}
.syne-mono {
  font-family: "Syne Mono", monospace;
}
.ll-para {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.ll-illust-box {
  position: relative;

  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background-color: var(--charcoal);
  color: var(--powder);
}
.ll-illust-list {
  list-style: disc;
  padding-left: 20px;

  display: inline-block;
  text-align: left;
  margin-top: 12px;
}
.ll-illust-sur {
  max-height:40vh;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ll-early__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ll-early__text {
    margin-top: 0;
    max-width: 100%;
  }
  .lowlight-sectionA .jump-nav {
    display: none;
  }

  .lowlight-sectionA .jump-dropdown {
    display: block;
    width: 30vw;
    margin: 1em auto;
  }

  .lowlight-sectionA .jump-dropdown select {
    width: 65vw;
    text-align: center;
    padding: 0.75rem 0.55rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wine);
    border: 2px solid var(--wine);
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .ll-illust-list {
    list-style: none;
    padding: 0;

    display: flex;
    justify-content: center;
    gap: 32px;
  }

  .ll-illust-list li {
    position: relative;
  }

  .ll-illust-list li:not(:last-child)::after {
    content: "—";
    margin-left: 16px;
    opacity: 0.2;
  }
}
@media (max-width: 992px) {
  
}
/*LOGO*/
body.logo-body {
  background-color: #fff;
}
body.logo-body footer {
  background-color: var(--powder);
}
div.logo-container {
  max-width: 1100px;
}
.logo-container h1 {
  color: var(--logo);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: .05em;
}
.logo-container h2 {
  font-size: 2.5rem;
}
.logo-container p {
  font-size: 1.1rem;
}
.divider {
  height: 3px;
  width: 80px;
  background-color: var(--wine);
  margin: 12px auto 30px;
}
img.draft-item {
  max-height: 25vh;
  mix-blend-mode: darken;
}
.arrow15 {
  color: var(--logo);
  font-size: 1.5rem;
}
.blackbox-logo {
  background-color: #000;
  border-radius: 1em;
  max-height: 35vh;
}
.title-block {
  border-radius: 1em;
}
.title-block img {
  border: 3px solid #1F2566;
  border-radius: 0.9em;
  max-height: 35vh;
}
.letter-back {
  background: #1F2566;
  background: linear-gradient(212deg, rgba(31, 37, 102, 1) 0%, rgba(20, 24, 70, 1) 90%);
  border-radius: 1em;
}
.letter-back img {
  box-shadow: -10px 10px 8px #02082C;
  max-height: 475px;
}
.final-15-box .divider {
  background-color: var(--logo);
  width: 100px;
}
.logo-finals-blend {
  mix-blend-mode: darken;
}
/*turtle*/
body.turtle-body {
  background-color: #fff;
}
.turtle-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.turtle-section {
  margin: 4rem auto;
  max-width: 1100px;
}
.turtle-section h3 {
  font-weight: 600;
  margin-bottom: 0.7rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.turtle-section .divider {
  height: 3px;
  width: 35px;
  background-color: rgba(29, 53, 21, 0.784);
  margin-bottom: 1rem;
}
.turtle-section img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}
.carousel-item img {
  max-width: 70%;
  margin: 0 auto;
}
.carousel-control-prev,
.carousel-control-next {
  width: 4%;
}
#turtlePhotos .carousel-item img {
  max-width: 90%;
}
.turtle-body footer {
  background-color: #fff;
}
@media (min-width: 768px) {
  .turtle-section img {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .turtle-section img {
    max-width: 250px;
  }
}

/*barca*/
body.barca-body {
  background-color: #fff;
}
.barca-container {
  max-width: 1000px;
  padding: 2rem 1rem;
}
.barca-container section {
  margin-bottom: 4rem;
}

.barca-image-idea img {
  max-height: 30vh;
}
.barca-image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;

  display: flex;
  align-items: center;
  justify-content: center;
}
.barca-image-frame img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}
.barca-figure {
  width: 100%;
}
.barca-figure figcaption {
  margin-top: 0.75rem;
}
.barca-figure figcaption a {
  color: var(--wine);
}
.barca-body .divider {
  height: 2px;
  width: 55px;
  background-color: var(--coral);
}
.barca-container h4 {
  font-weight: 600;
}
img.barca-image-final {
  max-height: 90vh;
}
@media (max-width: 768px) {
  .barca-container section {
    margin-bottom: 3rem;
  }
}

/*nocturnal*/
body.nocturnal-body {
    background-color: var(--wine);
    color: var(--powder)
}
body.nocturnal-body button.back-btn{
  color:var(--coral)
}
body.nocturnal-body footer {
    box-shadow: inset 0px 3px 10px #020012c0;
}
body.nocturnal-body footer a {
  color: var(--coral);
}
.opacity-90 {
  opacity: 0.9;
}
/*materials list*/
.materials-list {
  columns: 1;
}
@media (min-width: 768px) {
  .materials-list {
    columns: 2;
  }
}
/*flora*/
  img.final-flora {
  max-height: 95vh;
  max-width: 65vw;
}
/*footer*/
footer {
  background-color: var(--powder);
  color: var(--wine);
  box-shadow: inset 0px 3px 10px #bfbfbf94;
}
footer .divider {
  height: 1px;
  width: 72%;
  background-color: var(--wine);
  margin: 12px auto 20px;
}
.meicon {
  max-height: 50px;
}
footer p {
  line-height: 70%;
}
footer a {
  text-decoration: none;
  color: var(--coral);
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
footer a:hover {
  text-decoration: underline;
}