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

body {
  padding-top: 70px;
  background-color: #436c3d;
}

p {
  font-weight: 100;
  padding: 0 5% 0 5%;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 4vw;
  line-height: 1.5;
}

h2 {
  font-size: 6vw;
}

/*NAVBAR STYLES*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(168, 193, 155);
  padding: 10px;
  z-index:10;
}

.menu-item {
  font-size: 1.5em;
  margin: 20px;
}

.mobile-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 10px;
}

.logo {
  display: flex;
  max-width: 50px;
  margin-left: -10px;
}

/*THE HAMBURGER MENU*/

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #74aa6c;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/*HOMEPAGE STYLES*/

.home-page {
    background-image: url("../img/mobile-home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}


#cta-button {
  background: rgb(51, 34, 0);
  color: rgb(255, 255, 255);
  padding: 15px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3vh;
  margin: 20px 0px 10px 0px;
    position: fixed;
  bottom: 0px;
  width:100%;
}

.tagline-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tagline{
    background-color: #243b20;
    color: white;
    justify-content: center;
    padding:10px;
    padding-left:20px;
    margin-top:70px;
    width:100%;
    font-size:5vh;
}


/* HUMAN SKILLS SYLES */

#human-skills-body {
  background-color: skyblue;
}

#button-row {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  background-color: rgb(51, 34, 0);
  width: 100%;
}

#skills-content {
  display: flex;
  text-align: center;
  justify-content: center;
  max-width: 100%;
  background-color: rgb(51, 34, 0);
  color: white;
}

.button {
  background-color: rgb(0, 58, 0);
  width: 100px;
  text-align: center;
  margin: 20px;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

.skill-card {
  position: relative; /* allows layering inside */
  max-width: 100%;
  height: auto;
  position: fixed;
  bottom: 220px;
  margin-top: 80px;
}
.skill-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.skill-text {
  text-align: center;
  color: white; /* contrast against image */
  z-index: 2;
  background-color: #243b20;
  padding: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  /* Base color */
  background-color: #243b20;

  /* Paper texture overlay */
  background-image: url("../img/soil-texture.png");

  /* Blend texture with the color */
  background-blend-mode: multiply;
}

.skill-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  background-color: #243b20;
}

.skill-text p {
  font-size: 1.5rem;
  width: 80%;
  margin: auto;
  background-color: #243b20;
}

img {
  z-index: -1;
}

.roots {
  position: fixed;
  bottom: 0; /* stick to bottom of screen */
  left: 50%; /* move to center point */
  transform: translateX(
    -50%
  ); /* shift back by half its width = perfect center */

  width: 100%;
  max-height: 50%; /* optional – prevents vertical overflow */

  z-index: -1; /* stays behind content */
}

/* AI SKILLS STYLES */

.container {
  display: flex;
  justify-content: center;
}

ol {
  list-style: decimal;
  margin-left: 30px;
}

ol li {
  font-weight: 100;
  padding: 0 5% 0 5%;
  margin-right: 5px;
  margin-left: 2px;
  font-size: 4vw;
  margin-bottom: 20px;
}

.list {
  background-color: #74aa6c;
  padding: 10px;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  margin-top: 20px;

  /* Base color */
  background-color: #243b20;

  /* Paper texture overlay */
  background-image: url("../img/soil-texture.png");

  /* Blend texture with the color */
  background-blend-mode: multiply;

  /* Make sure texture repeats or scales nicely */
  background-repeat: repeat;
  background-size: auto; /* or 'cover' */
  clip-path: polygon(0% 0%, 100% 5%, 95% 100%, 5% 95%);
}

.list-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: white;

  /* Base color */
  background-color: #243b20;

  /* Paper texture overlay */
  background-image: url("../img/soil-texture.png");

  /* Blend texture with the color */
  background-blend-mode: multiply;

  /* Make sure texture repeats or scales nicely */
  background-repeat: repeat;
  background-size: auto; /* or 'cover' */
  clip-path: polygon(0% 0%, 100% 5%, 95% 100%, 5% 95%);
}

.body-ai {
  display: flex;
  margin-bottom: 50px;
  padding: 10px;
  background-color: #74aa6c;
}

/* ABOUT PAGE STYLES */
.pic-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

.me {
    max-width: 45%;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.contact{
    font-size:2vh;
    text-align: center;
    margin-bottom: 10px;
}

#contact-banner{
    margin-top: -10px;
    margin-bottom:-5px;
}

@media screen and (min-width: 1063px) {
    .skill-card{
        bottom:300px;
    }

    #skills-content {
  display: flex;
  text-align: center;
  justify-content: center;
  max-width: 100%;
  background-color: rgb(51, 34, 0);
  color: white;
  font-size: small;
}
    .home-page {
    background-image: url("../img/desktop-home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}
p {
  font-weight: 100;
  padding: 0 5% 0 5%;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 2vw;
  line-height: 1.5;
}
ol {
  list-style: decimal;
  margin-left: 60px;
  padding-left: 0;
}

ol li {
  font-weight: 100;
  margin: 0 5px 20px 0;
  font-size: 2vw;
}

h2 {
  font-size: 3vw;
}

/* ABOUT PAGE STYLES */
.whole-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.left-section {
    max-width: 50%;
    flex:1;
}

.pic-container {
    display: flex;
    gap: 20px;
    max-width: 50%;
    align-items: center;
    margin-top:200px;
}

.me {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
        margin-right:0px;
}

}
