/* this part contains css for home page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: lighter;
}

body {
  font-family: 'Fredericka the Great';
  background-image: url(pics/paper.jpg);
  background-size:cover;
  background-repeat: no-repeat;
  background-attachment: scroll; /* changed from fix cuz needs it to scroll with page */
  background-position: center;
  color: #000;
  padding-bottom: 100px;
  margin: 0;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: nowrap;
  width: 100%;
}

.nav-links a {
  margin-left: 60px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-links a:hover {
  color: #7060b4; 
  text-decoration: none; 
}

.home-icon img {
  width: 100px; 
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home-icon img:hover {
  transform: scale(1.1); 
  filter: brightness(1.2); 
  cursor: pointer;
}

.intro {
  display: flex;
  align-items: center;
  padding: 30px 20px;
  gap: 60px;
  margin-left: 200px;
}

.profile-pic {
  width: 350px;
  height: 350px;
  background-color: #f4a06a;
  position: relative;
  box-shadow: 0 8px 15px rgba(0, 0, 0.5, 0.5);

}

.profile-pic img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  transform: scale(1.1);
  margin: -12%;
}

.intro-text h1 {
  font-size: 44px;
  text-align: left;
}

.intro-text h3, .intro-text h4 {
  font-weight: normal;
  margin: 4px 0;
}

.intro-text p {
  max-width: 500px;
  margin: 10px 0;
  line-height: 1.8;
  font-size: 20px;
}

.cta-btn {
  padding: 8px 20px;
  background: #e856a0;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

/* About Me */

.about-me {
  padding: 80px 20px;

}

.about-me h2 {
  margin-bottom: 30px;
 
}

.aboutportf {
  margin-right: 540px;
}

.abtme {
  margin-right: 800px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 200px;
  font-size: 18px;
  line-height: 1.8;

}

.bio {
  flex: 1;
}

/* for now pause on the video rq; projects selection area coming soon!*/
/*
.video-box {
  width: 300px;
  height: 300px;
  background: #90cb39;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.play-button {
  font-size: 30px;
}

.video-stats {
  margin-top: 20px;
  text-align: center;
}

.skills {
  margin-top: 20px;
  text-align: center;
  gap: 10px;
}

.skills span {
  width: 25px;
  height: 25px;
  background: #f9dc7b;
  border-radius: 5px;
}

/* seawrap */

/*
.seasketch-wrapper {
  position: relative;
  width: max-content; 
  height: auto;}

#projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;     
  min-height: 100vh;          
  position: relative;
}

.seasketch1,
.seasketch2,
.seasketch3 {
  position: absolute;
  top: 0;
  left: 0;
}

.seasketch1 {
  z-index: 1;
}

.seasketch2 {
  z-index: 2;
}

.seasketch3 {
  z-index: 3;
}
*/
/* Projects */
.projects {
  padding: 40px 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
  margin-left: 200px;
}

.project-grid .note {
  height: 200px;
  width: 200px;
  padding: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* got stuck and asked chatgpt to help with getting colors differntly on the page but only works without the hover so
i kept it with yellow for safe look*/

/* Sticky note background colors */
.project-grid .note:nth-child(1) { background: #f8e076; }  


/* Alternating rotation for a hand-placed sticky note look */
.project-grid .note:nth-child(odd) {
  transform: rotate(-2deg);
}

.project-grid .note:nth-child(even) {
  transform: rotate(2deg);
}

/* Hover effect: straighten and float */
.project-grid .note:hover {
  transform: rotate(0deg) translateY(-5px);
}
/* Scroll Button */


.scroll-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
  background: #f4a06a;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* this part follows css for OSCAR page */

.osfastintro {
  max-width: 800px;
  margin: 0 auto;
  margin-left: 300px; 
  padding: 20px;
  box-sizing: border-box;
}

.osfastintro .oscarit,
.osfastintro .process {
  margin-bottom: 40px;
}

.osfastintro h2,
.osfastintro h3 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 21px;
}

.osfastintro p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 18px;
}

.osfastintro ul {
  margin-top: 10px;
  padding-left: 20px;
}

.osfastintro li {
  margin-bottom: 10px;
}

/* hover on links (may change color to something more fitting) */
.osfastintro a {
  color: #0056b3;
  text-decoration: underline;
}

.osfastintro a:hover {
  color: #003d80;
}

/* this part follows css for BLECO page */


.belcointro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.8;
}

.belco {
  margin-bottom: 60px;
}

.belco h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.belco h3,
.process2 h3 {
  font-size: 24px;
  margin-top: 30px;
  font-weight: bold;
}

.belco p,
.process2 p {
  margin-bottom: 20px;
}

.process2 {
  margin-top: 40px;
}


/* this part follows css for PROJECTX-BLENDER page */
.projxintro {
  max-width: 800px;
  margin: 0 auto;
  margin-left: 400px; 
  padding: 20px;
  box-sizing: border-box;
}

.projxintro .blender,
.projxintro .docs {
  margin-bottom: 40px;
}

.projxintro h2,
.projxintro h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

.projxintro p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.projxintro ul {
  margin-top: 10px;
  padding-left: 20px;
}

.projxintro li {
  margin-bottom: 10px;
}

/* hover on links (may change color to something more fitting) */
.projxintro a {
  color: #0056b3;
  text-decoration: underline;
}

.projxintro a:hover {
  color: #003d80;
}

/* this part follows css for PROJECTX-BLENDER page */
.pupintro {
  max-width: 800px;
  margin: 0 auto;
  margin-left: 400px; 
  padding: 20px;
  box-sizing: border-box;
}

.pupintro .pup,
.pupintro .process2 {
  margin-bottom: 40px;
}

.pupintro h2,
.pupintro h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

.pupintro p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.pupintro ul {
  margin-top: 10px;
  padding-left: 20px;
}

.pupintro li {
  margin-bottom: 10px;
}

/* hover on links (may change color to something more fitting) */
.pupintro a {
  color: #0056b3;
  text-decoration: underline;
}

.pupintro a:hover {
  color: #003d80;
}


/* this part follows css for lo page */

h1 {
  text-align: center;
  padding: 40px 0 10px;
}

h2 {
  font-size: 40px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  margin-top: 20px;

}

ul {
  margin-top: 20px;

}

.subtitle {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.learning-outcome {
  margin-bottom: 40px 0;
  padding: 0 20px;
}

.content-box {
  background-color: #f5cc73;
  padding: 20px;
  border-radius: 20px;
  width: 800px;
  margin: 0 auto; 
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; 
  line-height: 1.8;

}

.content-box p.description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.content-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

.content-box li {
  margin-bottom: 8px;
}

.content-box li a {
  text-decoration: none;
  color: #000;
}

.content-box li a:hover {
  text-decoration:underline;
}

/* this part follows css for stickers page */

.process2 img {
  display: block;
  max-width: 400px;
  margin: 1rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.process2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process2 .image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.process2 .image-row img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* this is footer*/

  
  .footer {
    background-color: #1e1e1e;
    color: #f1f1f1;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }

  .footer-about h2 {
    margin: 0 0 10px;
    color: #fff;
  }

  .footer-about p {
    margin: 5px 0;
  }

  .footer-about a {
    color: #88c0d0;
    text-decoration: none;
  }

  .footer-nav h3 {
    margin-bottom: 10px;
    color: #fff;
  }

  .footer-nav ul {
    list-style: none;
    padding: 0;
  }

  .footer-nav li {
    margin: 6px 0;
  }

  .footer-nav a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #88c0d0;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    color: #aaa;
  }
