:root{
      --bg: #0f1720;
      --accent: #ff6600;
      --muted: #6b7280;
      --card-bg: #fff;
      --site-padding: 4%;
      --container-max: 1200px;
    }

* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", system-ui;
  color: rgb(0, 0, 0);
}

body{
  background-image: url(/Photos/BG2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background: #fff;
}

ul,li {
  list-style: none;
}
a{
  text-decoration: none;
}


/*SOCIALS*/

#socials-list{
  margin: 1.5rem 0 0;
  justify-content: center;
  display: flex;
  gap: 0.5rem;
}
.socials img {
  height: 2.5rem;
}
/*COLLABORATIONS*/
.collaboration{
  margin-top: 1.5rem;
  padding: 2rem 0;
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap:wrap;
}
.collaboration .collab-text{
  min-width: 164.45px;
  width: 20%;
  font-size: large;
  font-weight: bold;
  text-align: center;
}


/*SKILLS*/
#skill-list{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.skill {
  border: black solid 3px;
  border-radius: 10px;
  padding: 0.5rem;
  background: #ffffff93;
  text-align: center;
}

/*HERO*/
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 4rem 0;
}
/*.hero {
  background: linear-gradient(135deg,var(--accent),#ff8a29);
  margin-top: 14vh;
  text-align: center;
}

.hero span {
  color: #ffffff;
}
.hero p{
  margin-top: 1rem;
  align-items: center;
}*/

.btn {
  display: inline-block;
  
  padding: 1rem 1.75rem;
  background: black;
  color: white;
  font-weight: 600;
  border-radius: 5px;
  border: black solid 3px;
  text-decoration: none;
}
.btn:hover {
  background: white;
  color: #2196f3;
  border: black solid 3px;
  transition: 0.5s;
}

.section {
  border-top: black solid 0.2rem;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
.item-list li {
  margin-bottom: 1rem;
}

.bg-light {
  background: #f3f1f1;
}
footer {
  background: #101820;
  color: white;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}
footer p {
  color: #ffffff;
}



/*HERO*/
.hero-header {
    margin-top: 14vh;
    width: 100%;
    background: linear-gradient(135deg, #ff8a29, #ff5e2b);
    color: #fff;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;  
  }
  .hero-text {
    flex: 1 1 480px;
    max-width: 1000px;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.8rem;
    margin: 0 0 0.2rem;
    font-weight: 800;
  }
  .hero-text h2 {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 0 1.2rem;
  }
  .hero-text p {
    justify-self: center;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
    color: #f0e9e0dd;
    max-width: 600px;
    font-weight: 600;
  }
  .btn-primary {
    display: inline-block;
    background: #082024;
    color: #ff8a29;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .btn-primary:hover {
    background: #0a2f2a;
  }
  /*.hero-image {
    flex: 0 0 280px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
  }
  .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }*/
 
  
