
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("../Imgs/Bg.jpg");
  background-repeat: repeat-y;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;

}


/* ------ Header ------ */

header{
  background-color: black;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1% 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.2em;

  z-index: 10000;
  box-shadow: -2px -2px 3px rgba(255, 255, 255,   0.1),
  4px 4px 6px rgba(5,5, 5,   0.5);
}

header ul{
  display: flex;
  justify-content: center;
  align-items: center;
}

header ul li{
  list-style: none;
  margin-left: 15px;
  border-radius: 20px;
  box-shadow: -2px -2px 3px rgba(255, 255, 255,   0.1),
  4px 4px 6px rgba(5,5, 5,   0.5);
  padding: 6px 12px;
}

header ul li a{
  padding: 6px 12px;
}

header .logo {
  font-size: 1.2em;
  letter-spacing: 3px;
}

header a:link {
  color: white;
  text-decoration: none;
}

header a:active{
  color: white;
}

header a:visited{
  color: white;
  text-decoration: none;
}

header li:hover{
  border-radius: 20px;
  box-shadow: 2px 2px 3px rgba(255, 255, 255,   0.1),
  -4px -4px 6px rgba(5,5, 5,   0.5);
}

/* ---- photo reel segment ---- */

main{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.reel{
  margin-top: 10vh;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.swiper-slide{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.htrar_images{
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;     /* not flex */
  margin: auto;       /* centers in both axes inside flex */
  align-self: center; /* ensures vertical centering */
}

.htrar_images2{
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

iframe{
  width: 80%;
  height: 80%;
}

.project_title{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 5%;
  margin-bottom: 5%;
  font-family: "Cubano", sans-serif;
  letter-spacing: 4px;
  font-size: 2.4em;
  text-align: center;
}
.brief{
  display: flex;
  flex-direction: column;
  color: white;
  padding: 0% 8%;
  padding-bottom: 5%;
}

.brief h2{
  font-family: "Roboto", sans-serif;
  font-size: 2em;
  margin-bottom: 0.5%;
}

.brief .roles{
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  margin-bottom: 3%;
}

.brief .roles li{
  margin-bottom: 0.5%;
}

.brief .challenges{
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  margin-bottom: 3%;
}

.brief .challenges li{
  margin-bottom: 2%;
}

.brief p{
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.0rem, 2vw, 1.5rem);
  margin-bottom: 3%;
}

@media screen and (max-width: 1000px) {
.reel{
height: 30vh;
}

.project_title{
font-size: 2em;
}

.brief p{
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 6%;
}

.brief .roles{
  margin-bottom: 6%;
}

.brief .challenges{
 margin-bottom: 6%;
}

.brief li {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 3%;
}

}
