:root {
  --neutral-cream: #f2e9e4;
  --neutral-tan: #d3b78f;     
  --neutral-brown: #7a6b59;  
  --dark-accent: #4a4a38;    
  --soft-black: #222222;
  --soft-green: #7a8b69;     
  --soft-orange: #c27a4d;   
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: "Bad Script", cursive;
  font-weight: 400;
  font-style: normal;
  background-color: var(--neutral-cream);
  
 background-image: url("images/Beige Collage .png");

  color: var(--soft-black);
  line-height: 1.6;
  font-size: 1.3rem; 
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 175px;
  background-color: rgba(242, 233, 228, 0.85); 
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(34, 34, 34, 0.1);
}

nav .logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-accent);
  user-select: none;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark-accent);
  font-weight: 600;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  color: var(--soft-orange);
  outline: none;
}


.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("images/forest background.png") no-repeat center/cover;
  color: var(--soft-black);
  overflow: hidden;
  padding-top: 100px; 
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(125, 94, 63, 0.15);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.polaroid {
  background: #fdfaf3;
  border: 1px solid #d8cfc1;
  padding: 1rem 1rem 3rem;
  width: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: rotate(-1.5deg);
  filter: brightness(0.97) contrast(0.96);
  z-index: 1;
}

.polaroid img {
  width: 100%;
  display: block;
  filter: sepia(0.3) contrast(0.95) brightness(1.05);
}

.caption {
  margin-top: 2rem;
  font-size: 2.7rem;
  color: #4a3f35;
  user-select: none;
  font-weight: 500;
}


.about-stamp {
  margin-top: 2rem;
  max-width: 500px;
  background-color: var(--neutral-cream);
  border: 2px dashed var(--neutral-brown);
  padding: 1rem 1.5rem;
  color: var(--dark-accent);
  letter-spacing: 1px;
  font-size: 2rem;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  z-index: 1;
  font-weight: 400;
}

.about-stamp p {
  margin: 0;
  line-height: 1.4;
}


.section {
  padding: 4rem 2rem;
  position: relative;
}

.section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-accent);
  text-align: center;
  user-select: none;
  font-weight: 650;
  font-family: "Bad Script", cursive;
}





.skill-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.badge {
  background-color: var(--neutral-tan);
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-accent);
  cursor: default;
  user-select: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge:hover {

  transform: scale(1.1) rotate(-3deg);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.25);
}

/* MY JOURNEY - Journal Entry Style */
.my-journey {
  background-color: var(--neutral-cream);
  max-width: 650px;
  margin: 2rem auto;
  padding: 2rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark-accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  position: relative;
  text-align: left;
  border: 2px solid var(--neutral-brown);
  font-family: "Bad Script", cursive;
}


.my-journey::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 23px,
    var(--neutral-tan) 24px,
    var(--neutral-tan) 25px
  );
  opacity: 0.15;
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}

.my-journey p {
  position: relative;
  z-index: 1;
}

.my-journey h2 {
  font-size: 3rem;
  font-weight: 650;
  margin-bottom: 1.2rem;
  text-align: center;
  color: var(--dark-accent);
  user-select: none;
  font-family: "Bad Script", cursive;
}

#projects h2 {
  background-color: rgba(255, 255, 255, 0.85); /* light background for contrast */
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
  max-width: fit-content;
  margin: 0 auto 30px auto; /* centers the h2 and adds space below */
  font-size: 3rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.project-stamp {
  background-color: var(--neutral-cream);
  border: 3px dashed var(--neutral-brown);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem 2rem;
  width: 300px;
  text-align: center;
  color: var(--dark-accent);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  font-family: "Bad Script", cursive;
  font-weight: 400;
}

.project-stamp:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.25);
}

.project-stamp img {
  width: 100%;
  height: auto;
  border: 2px solid var(--neutral-brown);
  margin-bottom: 1rem;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.6);
}

.project-stamp h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.project-stamp p {
  font-size: 1.2rem;
  line-height: 1.4;
}


.contact-section {
  background-image: url('images/journal-bg.png');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.contact-card {
  background: rgba(255, 255, 255, 0.85);
  border: 2px dashed var(--orange);
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  
  color: var(--dark);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  position: relative;
}

a.project-link { 
	text-decoration: none; color: inherit; 
}

.contact-card h2 {
  
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--dark);
  text-decoration: underline;
}

.contact-sticker {
  width: 60px;
  position: absolute;
  top: -30px;
  right: -20px;
  transform: rotate(-15deg);
  opacity: 0.8;
}



.quote-section {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  
}

.quote-text {
  font-size: 1.2rem;
  color: var(--dark-accent);
  margin-bottom: 1rem;
}

.quote-button {
  background-color: var(--bright-orange);
  color: var(--neutral-brown);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.quote-button:hover {
  background-color: var(--muted-brown);
}

footer {
  background-color: var(--neutral-brown);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 4rem;
  font-family: "Bad Script", cursive;
  font-weight: 400;
  font-size: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  nav .logo img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    padding-top: 200px; 
  }

  .polaroid {
    width: 90%;
    max-width: 400px;
  }

  .about-stamp {
    max-width: 90%;
  }
}
