@charset "utf-8";

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
html {
  scroll-behavior: smooth;
}

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

.map-section {
  font-family: 'Pretendard', sans-serif;
  background: #fdfdfd;
  padding: 80px 20px;
  color: #222;
}



.map-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  animation: fadein 1s ease;
}

/* 타이틀 커스터마이징 */
.map-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}




.map-header-image-wrapper {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 25px;
}

.map-header-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  text-align: center;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;
  animation: floatUp 0.8s ease-in-out;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item i {
  font-size: 20px;
  color: #cda25a;
  flex-shrink: 0;
  margin-top: 4px;
}

.label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

.value {
  font-size: 1.1rem;
  color: #222;
  margin-top: 4px;
}

.map-box {
  margin-top: 50px;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

#map {
  width: 100%;
  height: 100%;
}



.map-image-map-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.map-photo-wrapper,
.kakao-map-wrapper {
  width: 480px;
  height: 480px;
  overflow: hidden;
  border-radius: 12px;
}

.map-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: contrast(1.02) brightness(1.05);
}

#map {
  width: 100%;
  height: 100%;
}








/* 애니메이션 */
@keyframes fadein {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes floatUp {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* 반응형 */
@media (max-width: 768px) {
  .map-title {
    font-size: 1.6rem;
  }
  .info-card {
    padding: 20px;
  }
  .info-item {
    flex-direction: column;
    gap: 6px;
  }
}

.gift-section {
  background-color: #fefefe;
  font-family: 'Pretendard', sans-serif;
}

.gift-card {
  width: 100%;
  height: 380px; /* 데스크탑에서 카드 고정 너비 */
  margin: 0 auto;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.gift-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.gift-title {
  font-size: 1.2rem;
  color: #333;
}

.gift-subtitle {
  font-size: 1rem;
  color: #222;
}
.gift-card img {
  max-width: 100%;
  width: 200px; /* 또는 적절한 값 예: 280px */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.gift-series,
.gift-usage {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.white-space-pre-line {
  white-space: pre-line;
}
.phone-link {
  text-decoration: none;      /* 밑줄 제거 */
  color: #000000;             /* 기본 검정색 */
  font-weight: normal;        /* 글씨체 변경 없음 */
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: gold;                /* 마우스 오버 시 황금색 */
}


@media (max-width: 767px) {
  .gift-section .row > div[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gift-card {
    padding: 1.25rem;
    max-width: 100%;
  }

  .gift-card img {
    width: 100%;
  }
}