* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
 font-family: "Playfair Display"; color: black;

  /* brown paper stays! */
  background-image: url('../img/brownpaper.png');
  background-size: 400px;
  background-repeat: repeat;
  background-position: top left;

  /* keep content from hiding under fixed nav */
}
/* ========== NAVIGATION BAR ========== */
/* Wrapper for nav at the very top */
.main-nav {
  position: fixed;    /* makes it stick to top */
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;       /* ↳ Change nav height here */
  background-color: #ffe8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;    /* ↳ Change side padding (more/less space on edges) */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

/* Make the whole logo area clickable */
.nav-logo {
  display: inline-flex;
  align-items: center;
}

/* LOGO IMAGE (left side) */
.nav-logo img {
  height: 100px;        /* ↳ Make logo bigger/smaller here */
  width: auto;
}

/* Container for the right-side links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 100px;           /* ↳ Space between the icons on the right */
}

/* Images for about / human / AI skills */
.nav-links img {
  height: 80px;        /* ↳ Make nav icons bigger/smaller here */
  width: auto;
  display: block;
}

/* Optional hover effect (remove if you want it super minimal) */
.nav-links a img {
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-links a:hover img {
  transform: translateY(-1px);
  opacity: 0.9;
}
/* Hide toggle on desktop */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.contact-section {
  background-color: #f7d6e0;   /* SAME PINK AS NAV */
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  border-radius: 10px;         /* soft rounded card look */
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
/* ===== POPUP BACKDROP ===== */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* When visible */
.popup.show {
  opacity: 1;
  visibility: visible;
}

/* ===== POPUP BOX ===== */
.popup-content {
  background: #fff7ed;              /* warm cream tone */
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  font-family: "Roboto", Arial, sans-serif;
}

/* Popup text */
.popup-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #3b2f26;
  line-height: 1.5;
}

/* Close button */
#popup-close {
  background: #3b2f26;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

#popup-close:hover {
  background: #8b6e53;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #6a2e47;              /* your rose/burgundy accent */
}

.contact-section p {
  font-size: 18px;
  margin: 10px 0;
  color: #000;                 /* readable on light pink */
}

.contact-section a {
  color: #6a2e47;              /* matches your palette */
  text-decoration: none;
  font-weight: 500;
}

.contact-section a:hover {
  text-decoration: underline;
}

.home-bg {
  margin: 0;
  padding: 0;

  background-image: url("../img/background.png");
  background-size: cover;       /* fill the entire screen */
  background-repeat: no-repeat; /* no tiling */
  background-position: center;  /* keep centered */
  height: 100vh;                /* take full screen height */

  /* optional: cool parallax-ish effect */
  background-attachment: fixed;
}

/* Main glue-bottle cursor */
.custom-cursor {
  position: fixed;
  width: 50px; /* adjust if you want it bigger/smaller */
  height: 50px;
  pointer-events: none;
  background: url("../img/glue.png") no-repeat center / contain;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Hide default cursor only on pages where we're using the custom cursor */
body.custom-cursor-active {
  cursor: none;
}

/* Purple glue smear trail */
.glue-smear {
  position: fixed;
  width: 18px;
  height: 18px;
  background: rgba(160, 60, 200, 0.45); /* soft, semi-opaque purple */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  animation: smearFade 1s linear forwards;
}

/* About me page styles  */

/* ABOUT ME PAGE LAYOUT
   -------------------- */
/* Container for the whole about section */
.about-wrapper {
  max-width: 1300px;       
  margin: 150px auto 80px;
  padding: 0 40px;
  font-family: "Playfair Display", serif;
}

/* TWO equal columns */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* EQUAL widths */
  gap: 60px;
  align-items: start;
}
.beach-img {
  margin-top: -300px;   /* move image UP */
}


/* Make images LARGE and IDENTICAL size */
.about-img {
  width: 100%;
  height: 500px;         /* BIG AND UNIFORM */
  object-fit: cover;     /* Crop beautifully to keep the size identical */
  border-radius: 8px;
  display: block;
}

/* Text column styling */
.about-text,
.text-col {
  font-size: 1.2rem;     /* bigger text like Canva */
  line-height: 1.8;
  max-width: 100%;
}

/* Heading styling */
.about-text h1,
.text-col h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

/* ===== HUMAN SKILLS PAGE LAYOUT ===== */

.human-skills {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10rem 1.5rem;
  color: #1f1308; /* works with the brown background from your screenshot */
}

.human-skills-heading {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: left;
}

/* Each row: Title --- Blurb --- Image/Embed (horizontal) */
.skill-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr; /* title | blurb | media */
  column-gap: 2rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

/* Title column */
.skill-title {
  font-size: 1.6rem;
  margin: 0;
  text-transform: none;
}

/* Blurb column */
.skill-blurb {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Media (image or iframe) column */
.skill-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* For actual images you add */
.skill-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

/* For iframes (Spread project, etc.) */
.skill-embed {
  width: 100%;
  height: 500px;   /* MASSIVE, almost full column */
}


/* Temporary placeholder styling so you can see where to drop things */
.skill-media-placeholder {
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

/* Responsive: stack on small screens */
@media (max-width: 800px) {
  .skill-row {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .skill-title {
    font-size: 1.4rem;
  }

  .skill-blurb {
    font-size: 0.95rem;
  }
}


/* RESPONSIVE: stack on mobile */
@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .about-img {
    height: 350px; /* smaller but still large on mobile */
  }

  .about-text,
  .text-col {
    font-size: 1.1rem;
  }

  .text-col h1 {
    font-size: 2rem;
  }
}



/* Fade + stretch animation */
@keyframes smearFade {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}


@media (max-width: 600px) {
  .home-bg {
    background-size: contain;   /* shrink entire image so nothing gets cut off */
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
  }
}

/* === Mobile layout === */
@media (max-width: 700px) {
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    padding: 20px;
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 20px;
  }

  .nav-links.nav-open {
    display: flex; /* JS toggles this */
  }

  .nav-toggle {
    display: block;
  }
}



