@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
a, a:visited {
  text-decoration: none;
  color: black;
}
body {
  background: rgb(243, 243, 243);
  font-family: 'Pixelify Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container {
  min-height: 400px;
  min-width: 400px;
  padding: 10px;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 10px;
  transform: rotate(-45deg);
}
 
.item {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid black;
  transition: all .3s;
  padding: 5px;
  transform-origin: center center;
}
.item:hover {
  transform: scale(1.5) rotate(45deg);
  position: relative;
  z-index: 10;
}
.item:hover::before {
  opacity: 1;
}
.item:hover .hi {
  transform: translate(-50%, -50%);
}

.item::before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  transition: all .4s;
  
}
.item:nth-child(1) {
  background: url("https://images.unsplash.com/photo-1492633171473-373002e678b9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1533&q=80");
  background-size: cover;
  background-position: center;
  grid-row: 1 / 3;
/*   transform: rotate(45deg); */
  
}
.item:nth-child(2) {
  background: url("https://images.unsplash.com/photo-1518656306295-aa28b28b2504?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3750&q=80");
  background-size: cover;
  background-position: center;
/*   transform: rotate(45deg); */
  
}
.item:nth-child(3) {
  background: url("https://images.unsplash.com/photo-1469617833234-8a6843da14d0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3136&q=80");
  background-size: cover;
  background-position: center;
/*   grid-row: 1 / 3; */
}
.item:nth-child(4) {
  background: url("https://images.unsplash.com/photo-1515955656352-a1fa3ffcd111?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3750&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 6;
}
.item:nth-child(5) {
  background: url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?ixlib=rb-1.2.1&auto=format&fit=crop&w=2300&q=80");
  background-size: cover;
  background-position: center;
}
.item:nth-child(6) {
  background: url("https://images.unsplash.com/photo-1511556532299-8f662fc26c06?ixlib=rb-1.2.1&auto=format&fit=crop&w=3750&q=80");
  background-size: cover;
  background-position: center;
}
.item:nth-child(7) {
  background: url("https://images.unsplash.com/photo-1516478177764-9fe5bd7e9717?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3450&q=80");
  background-size: cover;
  background-position: center;
/*   transform: rotate(45deg); */
  grid-column: 2 / 4;
  
}

.hi {
  position: absolute;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  top: 50%;
  left: 50%;
  transform: translate(-60%, -250px) rotate(45deg);
  border-radius: 10px;
  transition: all .5s;
}

 .hi span {
  transform: rotate(-45deg);
  font-size: 22px;
}

.company {
  color:rgb(0, 0, 0);
  font-size: 150px;
  margin: 80px;
  text-shadow: -3px 3px 5px rgba(0,0,0,.5);
  transition: all .4s;
  transform-origin: center;
  cursor: pointer;
}
.company:hover {
  transform: scale(1.2);
  text-shadow: 0 10px 15px rgba(0,0,0,.5);
}

#jin {
  color: rgb(0, 0, 0);
  position: absolute;
  font-size: 2em;
  bottom: 120px;
  left: 30px;
}

#jin2 {
  color: rgb(0, 0, 0);
  position: absolute;
  font-size: 1.5em;
  bottom: 80px;
  left: 30px;
}

#jin3 {
  color: rgb(0, 0, 0);
  position: absolute;
  font-size: 1.5em;
  bottom:40px;
  left: 30px;
}

#jin4 {
  color: rgb(0, 0, 0);
  position: absolute;
  font-size: 1.5em;
  bottom: 0px;
  left: 30px;
}
 
#jin:hover > a {
  color: rgb(225, 65, 65);
  transform: scale(1.5);
}

#jin2:hover > a {
  color: rgb(255, 239, 91);
  transform: scale(1.5);
}

#jin3:hover > a {
  color: royalblue;
  transform: scale(1.5);
}

#jin4:hover > a {
  color: rgb(248, 68, 167);
  transform: scale(1.5);
}
a {
    display: inline-block;
    transition: all .3s;
    transform-origin: bottom left;
  }

@media only screen and (max-width: 1100px) {
    .container {
      transform: scale(.7);
    }
    .company {
      margin: 0;
      font-size: 50px;
    }
    .hero {
      flex-direction: column;
    }
}

/* Scroll Indicator */
.scroll_indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: black;
  font-size: 1rem;
  animation: bounce 2s infinite;
}

.scroll_indicator i {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

/* About Section */
.about {
  min-height: 100dvh;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.about_content {
  max-width: 1100px;
  width: 100%;
}

.about_content h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.about_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about_text .intro {
  font-size: 1.5rem;
  line-height: 1.6;
}

.about_text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

.about_text strong {
  color: #F8D800;
}

.location_info,
.contact_info {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid #F8D800;
}

.location_info h3,
.contact_info h3 {
  font-size: 1.3rem;
  margin: 0 0 15px;
  color: #F8D800;
}

.location_info h3 i,
.contact_info h3 i {
  margin-right: 10px;
}

.location_info p,
.contact_info p {
  margin: 0;
  color: #fff;
}

.social_icons {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.social_icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #F8D800;
  color: #F8D800;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social_icons a:hover {
  background: #F8D800;
  color: #000;
  transform: scale(1.1);
}

.about_image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image_placeholder {
  width: 100%;
  height: 400px;
  border: 3px solid #F8D800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.image_placeholder i {
  font-size: 5rem;
  color: #F8D800;
}

.image_placeholder span {
  font-size: 2rem;
  color: #F8D800;
}

.about .cta_button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 60px;
  background: #F8D800;
  color: #000;
  font-family: 'Pixelify Sans', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  border: 3px solid #F8D800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .cta_button:hover {
  background: transparent;
  color: #F8D800;
  transform: translateX(-5px) translateY(-5px);
  box-shadow: 5px 5px 0 #F8D800;
}

@media only screen and (max-width: 900px) {
  .about_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about_content h2 {
    font-size: 2.5rem;
  }
  
  .image_placeholder {
    height: 250px;
  }
}

@media only screen and (max-width: 600px) {
  .about_content h2 {
    font-size: 2rem;
  }
  
  .about_text .intro {
    font-size: 1.2rem;
  }
  
  .scroll_indicator {
    bottom: 15px;
    font-size: 0.9rem;
  }
}