@font-face {
  font-family: 'geist';
  src: url('/assets/geist.ttf');
}

body {
  font-family: 'geist', sans-serif;
  margin: 0;
  background: #fff;
}

a { text-decoration: none; }
p { color: gray; font-size: 14px; }

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}


.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(45deg ,#fff ,#fff, #fff, #fff, #C1A9FF6E);
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

h1 { 
  color: #ACBAFF;
  font-size: 20px;
  margin: 0;
  }

.navbar button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  background: #FFFFFF1C;
  border-radius: 5px;
  border: 1px solid #4E4E4E66;
  font-size: 9px;
  cursor: pointer;
}

.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 5vh;
}

.profile {
  height: 150px;
  width: 150px;
  border-radius: 100%;
  object-fit: cover;
}

h2 { color: #7F7F7F; margin: 15px 0 5px 0; font-size: 20px; }

.min-about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.box {
  border-radius: 8px;
  border: 2px solid #B9B9B9;
  width: 75px;
  height: 75px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box p { margin: 2px 0; font-size: 12px; }
.box-title { font-weight: bold; color: #2289FFBF; font-size: 14px !important; }

.contact { display: flex; justify-content: center; margin-top: 15px; }
.contact button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 4.5cm;
  background: linear-gradient(45deg, #7500FF, #6BAFF9);
  border: none;
  border-radius: 7px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.social-icon {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

#scroller {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-bottom: 20px;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}


#element {
  border: 1px solid #9B9B9B;
  margin: 10px;
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 15px;
  line-height: 22px;
  background: #fff;
}


@media (min-width: 800px) {
  .grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
  }
  
  .hero-main-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 5vh;
  }
  .card { padding-top: 0; }
}

.section-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.date-container { display: flex; align-items: center; margin-top: -20px; margin-bottom: 10px; }

li {
  margin-left: -20px;
  color: #6E6E6E;
  font-size: 14px;
  margin-bottom: 12px;
}


.project-card {
  margin-bottom: 15px;
  padding: 10px;
  line-height: 1.4;
  border-radius: 8px;
  box-shadow: 2px 2px 10px #3A3A3A1C;
}

.project-card a { text-decoration: underline; color: #474747; font-size: 13px; }
.project-card .title { color: #3A3A3A; font-weight: bold; margin-bottom: 5px; }
.projet { position: relative; }
.view-all { margin-left: auto; }


.stack-title { font-weight: bold; color: #5B5B5B; margin: 15px 0 10px 0; }
.stack-box { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-box p {
  background: #A6A6A636;
  padding: 5px 12px;
  color: #343434;
  border-radius: 18px;
  font-size: 12px;
  margin: 0;
}

.call-to-act { display: flex; align-items: center; gap: 10px; margin-top: 15px; }


.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto !important;
}

.gallery-img {
  height: 250px;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  animation: changebg 30s infinite;
}


.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes changebg {
  0% { background-image: url('img/bg1.jpg'); }
  10% { background-image: url('img/bg2.jpg'); }
  20% { background-image: url('img/bg3.jpg'); }
  30% { background-image: url('img/bg4.jpg'); }
  40% { background-image: url('img/bg5.jpg'); }
  50% { background-image: url('img/bg6.jpg'); }
  60% { background-image: url('img/bg7.jpg'); }
  70% { background-image: url('img/bg8.jpg'); }
  80% { background-image: url('img/bg9.jpg'); }
  100% { background-image: url('img/bg10.jpg'); }
}



.service-item .desc {
  font-size: 13px;
  line-height: 1.5;
  margin: 5px 0 0 0;
}

details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details summary::after {
  content: "+";
  color: #7500FF;
  font-weight: bold;
}

details[open] summary::after {
  content: "-";
}

blockquote p {
  line-height: 1.6;
  margin-bottom: 5px;
}


@media (min-width: 800px) {
  .faq {
    grid-column: span 2; 
  }
}
