
body {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-weight: 100;
  line-height: 1.5;
  background-color: white;
}

body strong{
  margin: 0px;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
}

h1 {
  font-weight: 300;
  font-size: 3em;
  text-transform: uppercase;
}
h2 {
  font-weight: 700;
  font-size: 2em;
  text-transform: uppercase;
  line-height: normal;
  color: #424245;
}

h3 {
  font-size: 1.5em;
  font-weight: 100;
  color: Grey;
  text-transform: capitalize;
}
h4 {
  font-size: 1.2em;
  font-weight: 400;
}

h5 {
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 0.05em;
}


ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

nav {
  position: fixed;
  overflow: hidden;
  height: 60px;
  width: 100vw;
  z-index: 3;
  background-color: black;
}
nav li {
  float: right;
  line-height: 200%;
  margin: 10px 20px 10px 20px;
  color: white;
}
nav li a {
  color: white;
  margin: 0px;
  text-decoration: none;
}
nav li a:hover {
  color: #00FFFF;
  cursor: pointer;
}
nav li img {
  height: 40px;
  width: 40px;
  text-align: center;
}
nav li:hover {
  color: #00FFFF;
  text-decoration: underline;
}

a {
  color: black;
  text-decoration: underline;
}

a:hover :focus-visible{
  color: black;
  text-decoration: underline;
}

/* Solid border */
hr.solid {
  border-top: 1px solid #bbb;
}
/* hero*/
.Box {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-image: url("cbk11.png");
  background-size: auto 100%;
  background-position: top;
  background-attachment: fixed;
}
.landing {
  margin: auto auto auto auto;
  height: 100vh;
  width: 100vw;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  -webkit-flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.MainTitle{
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
 color:#f4fba6;
 font-size:48px;
text-align: center;
padding: 60px;
background-color: rgba(50,50,50, 0.50);
text-transform: none;
}

.landing img {
  max-height: 60vh;
}
/* Full screen background */
.AboutSection{
  height: 100vh;
  min-height: 700px;
  width: 100vw;
  background-color: #F5F5F5;
  display: -webkit-flex;
  display: -ms-flex;
  display: -webkit-box;
  display: flex; /* or inline-flex */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/* middle center 1 column  */
.Box2a {
  height: auto;
  max-width: 500px;
  padding: 0 20px 0 20px;
  text-align: left;
}

.Box2a a {
  color: black;
  text-decoration: underline;
  cursor: pointer;
}

.UseCase {
  margin: 10vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 560px));
  justify-content:center;
  align-items:start;
  justify-items:center;
  gap:1em;
}

.Intro{
margin: 10px;
}

.Case{
margin: 10px;
}
.Box2 {
  width: 80%;         /* The div needs a specified width */
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    background-color: white;
    display: block;
}
.IMGFULL{
  display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
}

.IMGFULL img{
  width: 90vw;
max-width: 960px;
height: auto;
margin-top: 24px;
margin-bottom: 24px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.IMGFULL2 img{
  width: 100vw;
  margin-top: 40px;
height: auto;
display: block;
}


.UseCase2 {
  margin: 0 auto;
   column-gap: 40px; /* Adjust the space between columns */
   /* Add a vertical line between columns (optional) */
   column-rule: 1px solid #ccc;
   column-fill: balance;
}

.UseCase2 li{
  line-height: 1.75;
}

.UseCase2 ul {
  list-style-type:circle;
}

.topmargin {
  height: 10vh;
}

.projects {
  padding: 4rem 1.5rem;
}

.projects-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

/* Card   */
.card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  background-color: #323438;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  color: white;

}

/* Background image */
.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Bottom half overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
height: 36%; /* ← Only bottom half */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: rgba(50,50,50, 0.90);
box-shadow: rgba(0, 0, 0, .5) 0px 0px 16px;
backdrop-filter: blur(3px);
}


/* Typography */
.card-stack {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
  opacity: 0.9;
}

.card-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card-title:hover {
text-decoration: underline;
}

.card-description {
  line-height: 1.5;
  opacity: 0.95;
  width: 80%;
}

/* Hover */
.card:hover .card-image {
  transform: scale(1.05);
}
.card:hover {
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
cursor: pointer;
color: #BBFAF3;
}






.Box1 {
  padding: 0 0 10vh 0;
  max-width: 100vw;
  height: auto;
  min-height: 100vh;
  display: block;
  background: #252629;

}
.Box1 .title {
  height: auto;
  max-width: 100vw;
  text-align: center;
  padding-top: 120px;
color: #EDFAF7;
}

.Box1 .title h2{
color: white;

}

.title {
  padding:10vh auto 0 auto;
  text-align: center;
align-content: center;
width: auto;

}

.foot .title h2{
color: white;
width: 300px;
margin: auto;
background-color: rgba(50,50,50, 0.50);
backdrop-filter: blur(3px);
padding:10px;
}


footer {
  min-height: 100vh;
}

.foot {
  min-height: 100vh;
  width: 100vw;
  background-image: url("cbk.jpg"); /* Specify the image file path */
  background-size:  100vw auto;
  background-position: calc(100% - 100vw) calc(100% - 100vh);
  background-attachment: fixed;
  margin: 0;
  padding-top: 5vh;
    }

.footerWave {
      min-height: 100vh;
        background-image: url("wave-Hero.png"); /* Specify the image file path */
        background-color: #d5cbef;
        background-size: auto 100%;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;

    }



.content2 {
  max-width: 100vw;
  max-height: 80vh;
  display: -webkit-flex;
  display: -ms-flex;
  display: -webkit-box;
  display: flex; /* or inline-flex */
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;

}

.columnf {
  text-align: left;
  margin: 30px;
  width: 100px;
  height: 100px;
}

.boton1 {
  display: block;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-color: black;
  background-image: url("Mailme.svg");
}

.boton2 {
  display: block;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-image: url("Callme.svg");
}
.boton3 {
  text-decoration: none;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-image: url("Linkedme.svg");
}
.boton4 {
  text-decoration: none;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-image: url("dribbbleme.svg");
}
.boton5 {
  text-decoration: none;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-image: url("instagramme.svg");
}


.credit {
  font-size: 10px;
  text-align: center;
  color: white;
  width: 100vw;
  height: 20px;
  background-color: black;
  letter-spacing: 0.25em;
  position: fixed;
  bottom: 0px;
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin:0;
  border-top: 1px solid #eaeaea;
}

/* Each half */
.nav-half {
  padding: 3rem 2rem;
  text-decoration: none;
  color: #111;

  position: relative;
}

/* Divider line */
.nav-prev {
  border-right: 1px solid #eaeaea;
}

/* Typography */
.nav-direction {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 0.75rem;
}

.nav-project-title {
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 100%;
  transition: transform 0.3s ease;
}

/* Alignment */
.nav-prev {
  text-align: left;
}

.nav-next {
  text-align: right;
}


/* Hover effect */
.nav-half:hover {
  background: #f7f7f7;
}

.nav-prev:hover .nav-project-title {
  transform: translateX(-8px);
}

.nav-next:hover .nav-project-title {
  transform: translateX(8px);
}



@media (min-width: 320px){

  .Box {
    background-size: auto 100vh;
  }
  footer {
  background-size: 100vw auto;
  }
  .foot {
  background-size: auto 100vh;
  }
  .footerWave {
 background-attachment: fixed;
  }

}

@media (min-width: 640px){

  .Box {
    background-size: auto 100vh;
  }
  footer {
  background-size: 100vw auto;
  }
  .foot {
  background-size: auto 100vh;
  }
  .footerWave {
 background-attachment: fixed;
  }

}

@media (min-width: 768px){

  .Box {
    background-size: auto 100vh;
  }
  footer {
  background-size: 100vw auto;
  }
  .foot {
  background-size: auto 100vh;
  }
  .footerWave {
 background-attachment: fixed;
  }
}

@media (min-width: 828px){

  .Box {
    background-size: auto 100vh;
  }
  footer {
  background-size: 100vw auto;
  }
  .foot {
  background-size: auto 100vh;
  }
  .footerWave {
 background-attachment: fixed;
  }
}


@media (min-width: 1024px){

  .Box {
    background-size: auto 100vh;
  }
  footer {
  background-size: auto 100vh;
  }
  .foot {
  background-size: auto 100vh;
  }
  .footerWave {
 background-attachment: fixed;
  }

}

@media (min-width: 1200px){

  .Box {
    background-size: 100vw auto;
  }
  footer {
  background-size: auto 100vh;
  }
  .foot {
  background-size: 100vw auto;
  }
  .footerWave {
 background-attachment: fixed;
  }
}

@media (min-width: 1366px){

    .Box {
      background-size: 100vw auto;
    }
    footer {
    background-size: auto 100vh;
    }
    .foot {
    background-size: 100vw auto;
    }
    .footerWave {
   background-attachment: fixed;
    }


}
@media (min-width: 1680px){

    .Box {
      background-size: 100vw auto;
    }
    footer {
    background-size: auto 100vh;

    }
    .foot {
    background-size: 100vw auto;
    }
    .footerWave {
   background-attachment: fixed;
    }
}

:focus-visible {
  outline: 3px solid yellow;
  outline-offset: 3px;
}

.pt-sans-regular {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-bold {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pt-sans-regular-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.pt-sans-bold-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.boldonse-regular {
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
}
