    @import url('https://fonts.googleapis.com/css2?family=Lexend+Peta:wght@100..900&display=swap');



:root {
  --blue: #0477bf;
  --yellow: #f2b705;
  --red: #a6290d;
  --cream: #f2e2c4;
  --black: #261d11;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lexend Peta", sans-serif;
}

html,
body {
  height: 100%;
 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  background-color: #e2e0d4;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  padding: 15px 20px;

  z-index: 9999;
  display: flex;
  align-items: center;

  pointer-events: none; /* allow shapes under to be clickable */
}

/* LOGO IMAGE */
.logo {
  height: 60px;
  width: auto;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.08);
}
/* ------------------------HOME / HERO SECTION ------------------------------------------------------*/
.home {
  position: relative;
  width: 100vw;
  height: 100vh;

  background-image: url("/images/homeimg.jpg"); /* use your image path */
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}

/* Clickable shape buttons */
.nav-svg {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  text-decoration: none;

  width: 11%;
  aspect-ratio: 1 / 1;

  background-color: var(--yellow); /* default for circles */
  transition: background-color 0.3s ease, transform 0.3s ease;

  /* SVG mask system */
  mask-image: none;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;

  -webkit-mask-image: none;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}

/* Text on the shapes */
.nav-svg span {
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none; /* ensures clickable area stays the shape */
}

/* -------------------------CIRCLES------------------------- */
.circle {
  background-color: var(--yellow);
  mask-image: url("images/svg/circle.svg");
  -webkit-mask-image: url("images/svg/circle.svg");
  scale: 1.2;
  transition: all 0.8s ease-in-out;
}

.circle-left {
  top: 65%;
  left: 17%;
}

.circle-right {
  top: 8%;
  right: 30%;
}

.circle:hover {
  background-color: var(--red);
  animation-play-state: paused; /* Pause bounce on hover */
  scale: 1.3;
  transition: all 0.5s ease-in-out;
  border: solid 2px white;
}

/* -------------------------TRIANGLE------------------------- */
.nav-tri-link {
  position: absolute;
  top: 28%;
  left: 65%;
  width: 14%;
  height: 25%;

  display: block;
  text-decoration: none;
  z-index: 100; /* Lower than nav (9999) but higher than other content */
  /* clip-path: polygon(19% 100%, 100% 100%, 100% 0); */
  /* CRITICAL: Enable pointer events */
  pointer-events: auto;
  cursor: pointer;

  /* Help with touch on mobile */
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  touch-action: manipulation;
}

.nav-tri {
  width: 100%;
  height: 100%;
  background: var(--black);
  clip-path: polygon(19% 100%, 100% 100%, 100% 0);

  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;

  transition: transform 0.35s ease, background-color 0.35s ease;
  transform-origin: 100% 100%;
  animation: swingWindow 9s ease-in-out infinite;
}

.nav-tri span {
  color: white;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  pointer-events: none;
  padding-left: 5rem;
}

.nav-tri-link:hover .nav-tri {
  background: var(--blue);
  transform: scale(1.08);
  animation-play-state: paused;
}

/*----------------------------------------- Other sections */
.section {
  min-height: 100vh;
  padding: 4rem 8vw;
  background: #f7f7f7;
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

/*---------------------------------------------------------- BIO SECTION --------------------------------*/

#bio {
  background-color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-content {
  max-width: 900px;
  padding: 60px 40px;
}

.bio-content h2 {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bio-content h3 {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.bio-section {
  margin-bottom: 2.5rem;
  padding-left: 20px;
  border-left: 4px solid var(--black);
}

.bio-section h4 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bio-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
}
/* BIO: fade + slide in waterfall */
#bio .bio-content h2,
#bio .bio-content h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 1s ease-out;
}

#bio .bio-content h2.is-visible,
#bio .bio-content h3.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bio sections: alternate left/right slide */
#bio .bio-section {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* initial positions (off to the side) */
#bio .bio-section:nth-of-type(odd) {
  transform: translateX(40px); /* start off to the RIGHT */
}

#bio .bio-section:nth-of-type(even) {
  transform: translateX(-40px); /* start off to the LEFT */
}

/* when visible: odd ones land slightly LEFT of center */
#bio .bio-section:nth-of-type(odd).is-visible {
  opacity: 1;
  transform: translateX(-6%);
}

/* when visible: even ones land slightly RIGHT of center */
#bio .bio-section:nth-of-type(even).is-visible {
  opacity: 1;
  transform: translateX(6%);
}

.download-resume-btn {
  text-align: center;
  width: 30%;
  height: 60px;
  font-size: 1rem;
  display: block;
  color: white;
  background-color: var(--black);
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  margin: 30px auto 0;
}
.download-resume-btn:hover {
  background-color: white;
  color: black;
  transform: scale(1.1);
  cursor: pointer;
  border: 2px solid black;
}
/*-------------------------------------------- PORTFOLIO SECTION ---------------------------------------------------------*/
#portfolio {
  background-color: var(--black);
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 70vh;
  max-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.portfolio-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--yellow);
  opacity: 0.9;

  pointer-events: none; /* do not block scroll/drag */

  animation: scrollHint 1.6s ease-in-out infinite;
}

/* little nudge animation */
@keyframes scrollHint {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

.portfolio-scroll-arrow {
  font-size: 1rem;
}

/* Hide when JS adds .is-hidden */
.portfolio-scroll-hint.is-hidden {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-container {
  display: flex;
  height: 100%;
  width: max-content;
  align-items: center;
}

/* Each portfolio card */
.portfolio-item {
  flex: 0 0 auto;
  width: 600px;
  height: 80%;

  padding: 40px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;

  /* force identical internal layout */
  justify-content: space-between;

  background-color: var(--black);
  border-right: 1px solid var(--white);

  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Lock each part to vertical order */
.portfolio-top,
.portfolio-middle,
.portfolio-bottom {
  width: 100%;
  text-align: center;
}

/* Prevent titles from shifting */
.portfolio-top {
  min-height: 120px; /* adjust based on title length */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

/* Poem text block */
.portfolio-middle {
  flex-grow: 1; /* absorb variable text height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

/* Button area — aligned across all cards */
.portfolio-bottom {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/* Media inside the modal */
.portfolio-modal .portfolio-media {
  margin-top: 1.5rem;
}

.portfolio-modal .portfolio-media iframe {
  width: 350px;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
}

.media-square {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3em;
}

.media-square iframe {
  width: 350px;
  height: 350px;
  border-radius: 12px;
}
/* MODAL OVERLAY (hidden by default) */
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* When open */
.portfolio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Dark background */
.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* Modal box */
.portfolio-modal-dialog {
  position: relative;
  z-index: 1;

  max-width: 800px;
  width: 90%;
  height: 85vh;

  background: var(--cream);
  color: var(--black);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  padding: 30px 28px;
  overflow-y: auto;
}

/* Close button */
.portfolio-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--black);
}

.portfolio-modal-close:hover {
  color: var(--red);
}

.portfolio-more {
  display: none;
}

.portfolio-more-btn {
  padding: 0.85rem 3rem;
  border-radius: 999px; /* nice pill shape */
  border: 2px solid white;

  background-color: white;
  color: var(--black);

  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: none;

  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center; /* center inside the flex column */
  margin-top: 1.5rem; /* space it away from the text */
}

.portfolio-more-btn:hover {
  background-color: var(--black);
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.portfolio-item.is-visible {
  opacity: 1;
  transform: translateX(0);
  border-right: 2px solid white;
}

.portfolio-item:last-child {
  border-right: none;
}

.portfolio-item h2 {
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
}

.portfolio-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
  margin: 0;
  text-align: center;
}

.portfolio-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  max-height: 300px;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 3px solid var(--black);
}

#portfolio::-webkit-scrollbar {
  height: 12px;
}

#portfolio::-webkit-scrollbar-track {
  background: var(--black);
}

#portfolio::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 6px;
}

#portfolio::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}
/*--- PORTFOLIO SECTION ---*/

#contact {
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-header {
  margin-bottom: 100px;
}
/* Container (the semi-transparent box) */
.contact-form {
  display: flex;
  flex-direction: column; /* allow h2 on top, form below */
  align-items: center;
  justify-content: flex-start;

  width: 600px;
  height: 800px;
  max-width: 90%;
  max-height: 80%;

  padding: 40px;
  border-radius: 18px;

  background: white;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Form layout */
.contact-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form h2 {
  color: black;
  text-align: center;
  font-size: 2rem;

  font-weight: 600;
}
/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;

  
  border: 1px solid black;
  border-radius: 12px;

  font-size: 1rem;
  color: black;
  outline: none;

  transition: 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.65);
}

/* Hover + focus effects */
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.25); /* faint yellow glow */
}

/* Textarea sizing */
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Submit button */
.contact-form button {
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;

  font-size: 1.05rem;
  font-weight: 600;

  background: var(--blue);
  color: white;

  transition: 0.25s ease;
}

.contact-form button:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/*--- Animations Settings ---*/

@keyframes pulseWindow {
  0%,
  66% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.08);
  }
  80% {
    transform: scale(0.97);
  }
  90% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.pulse-timed {
  animation: pulseWindow 8s ease-in-out infinite;
}
.circle-right.pulse-timed {
  animation-delay: 4s; /* half of 9s loop */
}

@keyframes swingWindow {
  0%,
  66% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(8deg);
  }
  85% {
    transform: rotate(-5deg);
  }
  92% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing-timed {
  animation: swingWindow 11s ease-in-out infinite;
}

/* ------------------ Footer ------------------ */

.site-footer {
  background-color: var(--black);
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  color: var(--cream);
  font-size: 3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--yellow);
  transform: translateY(-4px);
}

/* Credit line */
.footer-credit {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-transform: uppercase;
}

.footer-credit a {
  color: var(--yellow);
  text-decoration: none;
  margin-left: 6px;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--red);
}

/* ------------------ RESPONSIVE TWEAKS ------------------ */



@media (max-width: 1024px) {
  /* Hero image fills a bit more on tablets */
  .home {
    background-size: 90%;
    background-position: center;
  }

  /* Make tap targets larger */
  .nav-svg {
    width: 14vw;
  }

  .circle {
    scale: 1;
  }

  /* BIO circle */
  .circle-left {
    top: 9%;
    left: 12%;
    width: 24vw;
  }

  /* CONTACT circle */
  .circle-right {
    top: 9%;
    right: 18%;
    width: 24vw;
  }

  .nav-svg span {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  /* TRIANGLE */
  .nav-tri-link {
    top: 27%;
    left: 60%;
    width: 28vw;
    aspect-ratio: 1 / 1;
    height: auto;

    /* Ensure these are set */
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(242, 183, 5, 0.3);
  }

  .nav-tri {
    width: 100%;
    height: 100%;
    background: var(--black); /* <-- add background if missing */
    clip-path: polygon(30% 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(
      10% 100%,
      100% 100%,
      100% 0
    ); /* match the regular one */
    pointer-events: auto;
    padding-bottom: 12px;
    transform-origin: 100% 100%;
    display: flex; /* <-- add these for consistency */
    align-items: flex-end;
    justify-content: center;
  }

  .nav-tri span {
    color: white;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 2rem;
    pointer-events: none;
  }
}

/* ---------------------------------Mobile------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .home {
    background-attachment: scroll;
    background-image: url("images/mobileimg.jpg");
    background-size: 112%; /* fill more vertically */
    background-position: center top;
    z-index: 1;
  }
  .portfolio-scroll-hint {
    bottom: 0.5rem;
  }

  .logo {
    height: 33px;
  }

  .portfolio-modal-dialog {
    max-width: 100%;
    width: 96%;
    max-height: 90vh;
    padding: 24px 18px;
  }

  html,
  body {
    font-size: 14px;
  }

  .section {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  /* NAV */
  .main-nav {
    padding: 10px 12px;
  }

  /*Main Page----------------------------------------------------------------------------------------*/

  
  .nav-svg {
    width: 20vw;
  }

  .nav-svg span {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .circle {
    scale: 1;
  }

  .circle-left {
    top: 18%; 
    left: 5%; 
    width: 26vw;
  }

  .circle-right {
    top: 18%;
    left: 43%; 
    width: 26vw;
  }

  .nav-tri-link {
    position: absolute; 
    top: 57%;
    left: 50%;
    z-index: 99999999;
    width: 40vw;
    aspect-ratio: 1 / 1;
    height: auto;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: var(--blue);
    display: block; /* <-- add this too */
    text-decoration: none;
   
  }

  .nav-tri {
    width: 100%;
    height: 100%;
    background: var(--black); /* <-- add background if missing */
    clip-path: polygon(30% 100%, 100% 100%, 100% 0);
    -webkit-clip-path: polygon(
      10% 100%,
      100% 100%,
      100% 0
    ); /* match the regular one */

    padding-bottom: 12px;
    transform-origin: 100% 100%;
    display: flex; /* <-- add these for consistency */
    align-items: flex-end;
    justify-content: center;
    
  
  }

  .nav-tri span {
    color: white; /* <-- add if missing */
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase; /* <-- add for consistency */
    white-space: nowrap;
    padding-left: 2rem;
    pointer-events: none; /* <-- add this */
  }
  /*Bio Section------------------------------------------------------------------------------------------------*/
  #bio {
    align-items: flex-start;
  }

  .bio-content {
    padding: 3rem 1.5rem 1.5rem;
  }

  .bio-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .bio-content h3 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .bio-section {
    margin-bottom: 1.8rem;
    padding-left: 14px;
    border-left-width: 3px;
  }

  .bio-section h4 {
    font-size: 1rem;
  }

  .bio-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .download-resume-btn {
    width: 70%; /* Bigger, easier to tap */
    height: auto; /* Let padding define the height */
    padding: 14px 0; /* Creates a proper button shape */
    font-size: 0.9rem; /* Smaller text that fits the button */
    display: block; /* Allows centering */
    margin: 30px auto 0; /* Auto margin = center horizontally */
    text-align: center;
    border-radius: 50px; /* Smooth, rounded button on mobile */
  }

  /*Portfolio section-------------------------------------------------------------------------------------*/
  #portfolio {
    min-height: auto;
    max-height: none;
    padding: 2.5rem 0;
    overflow-x: scroll; /* still horizontal scroll, but lower cards */
  }

  .portfolio-container {
    height: auto;
    align-items: stretch;
  }

  .portfolio-item {
    width: 85vw;
    height: auto;
    padding: 28px 18px;
    gap: 16px;
  }

  .portfolio-item h2 {
    font-size: 1.6rem;
  }

  .portfolio-item p {
    font-size: 0.9rem;
  }

  .portfolio-bottom {
    margin-top: 1.25rem;
  }

  .portfolio-more-btn {
    width: 80%;
    max-width: 260px;
    padding: 0.75rem 2.5rem;
  }

  /* modal size on mobile */
  .portfolio-modal-dialog {
    width: 94%;
    max-width: none;
    max-height: 90vh;
    padding: 20px 16px;
  }
  .portfolio-modal .portfolio-media iframe,
  .media-square iframe {
    width: 100% !important;
    max-width: 400px !important;
    height: 180px !important;
    min-width: unset !important;
    min-height: unset !important;
    
  }

iframe{
  border: none;
}
  .media-square {
    flex-direction: column;
    gap: 0;
  }
  /*Contact page------------------------------------------------------------------------------------*/
  #contact {
    align-items: flex-start;
    min-height: auto; /* stop forcing full viewport */
    padding-bottom: 0;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-bottom: 2rem;
    padding: 28px 20px;
    border-radius: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  }

  .contact-form h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 12px;
  }
  /*----------------------------------------------------footer---------------------------------------------------------*/
  .site-footer {
    padding: 30px 15px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .footer-socials {
    justify-content: center;
    gap: 22px;
  }

  .footer-socials a {
    font-size: 2rem; /* slightly bigger for touch */
  }

  .footer-credit a {
    font-size: 0.65rem;
  }
  .footer-credit span {
    font-size: 0.65rem;
  }

  .footer-credit {
    text-align: center;
    font-size: 0.8rem;
  }
}

@media (max-width: 915px) and (orientation: landscape) {
  .home {
    background-image: none;
  }
  .circle-left {
    top: 18%; /* vertical position (down = bigger %) */
    left: 20%;
    width: 15vw;
  }
  .circle-right {
    top: 18%; /* vertical position (down = bigger %) */
    left: 45%;
    width: 15vw;
  }

  .nav-tri-link {
    top: 18%; /* vertical position (down = bigger %) */
    left: 68%;
    width: 20%;
    pointer-events: auto;
    touch-action: manipulation;
  }
  .nav-tri span {
    font-size: 10px;
  }
}
