@import url("theme.css");
@import url('animations.css');
@import url('gallery.css');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
section {
  min-height: 100vh;
  /* width: 100vw; */
  padding: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section {
  max-width: 800px;
}
.white {
  background-color: white;
}
.light {
  background-color: var(--bg-light);
}
.dark {
  background-color: black;
}
/* header and navigation */
.header-container{
  width: 100vw;
display: flex;
justify-content: center;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  background: white;
  max-width: 1200px;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 4px;
  padding-right: 2rem;
  overflow: hidden;
  z-index: 1000;
} 
.nav a{
  color: black;
  font-size: 12.445px;
  font-weight: 400;
}
.right{
  display: flex;
  flex-direction: row;
  min-width: 320px;
  width: 40%;
  justify-content: space-between;
  align-items: center;
}
.left{
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.left:hover{
  transform: scale(1.05);
}
.title{
  font-family: "Rubik Mono One", monospace, sans-serif;
  /* font-style: normal; */
  font-weight: 100;
  font-size: 20px;
  color: black;
}
.logo img{
  width: 4rem;
  height: 4rem;
}

#reviews{
  display: flex;
  flex-direction: column;
}
.reviews-title{

}
.reviews-title h1, h2{
  font-family: "Rubik Mono One", monospace, sans-serif;
  margin-bottom: 1rem;
  text-align: center;
}
/* misc */
/* .card {
  width: 200px;
  height: 200px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
} */

.container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.column{
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);

  transform: scale(1.0);
  transition:  all 0.3s ease;
  font-size: medium;
  font-weight: 200;
  text-align: justify;  
}
.column:hover{
  transform: scale(1.05);
}
.icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon img {
  width: 100px;
  height: 100px;
}

.hero{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.rubik-mono-one {
  font-family: "Rubik Mono One", monospace, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  color: black;
}
.hero-text{
  font-weight: 400;
  font-size: larger;
  color: var(--text-light);
}
.text-black{
  color: rgb(38, 38, 38);
}

.text-container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  line-height: 2rem;
  text-align: justify;
}
.text-container  .text-inner{
  display: flex;
  gap: 1rem;
  border-radius: 4px;
  /* border: 1px solid var(--bg-light-gray); */
  padding: 1rem;
  /* box-shadow: 10px 10px 20px var(--light-gray); */
}
.text-inner{
  border: 2px solid lightgray;
  /* border-bottom: 1rem solid var(--highlight); */
}
.text-first{

}
.map {
  width: 100vw;
  max-width: 800px;
  /* margin-top: 20px; */
  height: 60vh;
}

footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: var(--light-gray);
  gap: 1rem;
  padding-top: 1rem;
}
.footer-links{
  display: flex;
  flex-direction: row;
  justify-items: center;
  gap: 3rem;
}
.footer-links a{
  color: black;
  font-weight: 400;

}
.attributes{
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.attribute{
  text-decoration: none;
  font-weight: 100;
  color: var(--dark-gray);
  font-size: small;
}
.link-underline i {
  transform: scale(1.0);
  transition: transform 0.2s ease;

  color: var(--highlight);
}

.link-underline:hover i {
  transform: scale(1.1);
}
.fa:hover{
  color: black;
}

.contact{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact a{
  text-decoration: none;
  color: var(--dark-gray);
}
.profile-picture img{
  max-width: 300px;
}
.mobile-none{
  display: block;
}

@media (max-width: 700px) {
  .text-inner{
    flex-direction: column;
  }
  .container {
    grid-template-columns: 1fr;
  }
  .rubik-mono-one {
    font-weight: 200;
    font-size: 30px;
  }
  .hero-text{
    font-weight: 400;
    font-size: large;
  }
  header{
    flex-direction: column;
    height: 6rem;
    justify-content: center;
    align-items: center;
  }
  .footer-links{
    flex-direction: column;
  }
  .footer-links div{
    display: flex;
    justify-content: center;
  }
  .footer-name{
    display: none;
  }
  .mobile-none{
    display: none;
  }
  .icon img{
    width: 50vw;
    height: 50vw;
  }
  .profile-picture{
    width: 90vw;
    height: 90vw;
    justify-self: center;
  }
  .profile-picture img{
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 400px) {
  .link-underline .name {
    display: none;
  }
}