@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #2E3440;
  padding: 20px 0;
}

.img_wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 12px;
}

.img_wrap img {
  width: 100%;
  height: auto;
  max-width: 1920px;
  max-height: 100vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.landing{
  margin-bottom: 0;
}

/* 고정 버튼 스타일 */
.fixed {
  position: fixed;
  right: 30px;
  bottom: 90px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.fixed img {
  width: 56px;
  height: 56px;
  max-width: none !important;
  max-height: none !important;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 99px;
}

.fixed:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fixed:hover img {
  transform: scale(1.1);
}

.fixed2 {
  position: fixed;
  right: 30px;
  bottom: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.fixed2 img {
  width: 56px;
  height: 56px;
  max-width: none !important;
  max-height: none !important;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 99px;
}

.fixed2:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fixed2:hover img {
  transform: scale(1.1);
}

.fixed3{
  position: fixed;
  right: 30px;
  bottom: 160px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  background: #70bdfb;
  border-radius: 50%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {

  .fixed,
  .fixed2,
  .fixed3{
    right: 25px;
  }

  .fixed img,
  .fixed2 img,
  .fixed3 img {
    width: 48px !important;
    height: 48px !important;
  }

  .fixed {
    bottom: 80px;
  }
  .fixed3 {
    bottom: 140px;
  }
}

/* 모바일 반응형 */
@media (max-width: 768px) {

  .fixed,
  .fixed2,
  .fixed3 {
    right: 20px;
  }

  .fixed img,
  .fixed2 img{
    width: 48px !important;
    height: 48px !important;
  }

  .fixed {
    bottom: 80px;
  }

  .fixed2 {
    bottom: 15px;
  }
  .fixed3 {
    bottom: 145px;
  }
}

/* 작은 모바일 */
@media (max-width: 480px) {

  .fixed,
  .fixed2 {
    right: 15px;
  }

  .fixed img,
  .fixed2 img {
    width: 48px !important;
    height: 48px !important;
  }
}