/* contact.css - IG / LINE 頁面共用內容區塊樣式 */

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 2rem;
  background-color: #fff9f4;
}

/* 標題粉色系統一 */
.contact-section h2 {
  font-size: 2rem;
  color: #ff6699;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

/* QR 圖片樣式 */
.contact-section img {
  width: 300px;
  max-width: 90vw;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(255, 182, 193, 0.3);
  margin-bottom: 1.5rem;
}

/* 按鈕樣式 */
.contact-section a[href^="https://"] {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #ff88aa;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 136, 170, 0.3);
  transition: background-color 0.2s ease;
  margin-bottom: 1.5rem;
}

.contact-section a[href^="https://"]:hover {
  background-color: #ff5e87;
}

/* 提示文字 */
.contact-section p {
  font-size: 1rem;
  color: #7a4c3b;
  max-width: 500px;
  text-align: center;
  line-height: 1.6;
}

/* 保留原本內容，加上以下 RWD */

@media (max-width: 480px) {
  .contact-section img {
    width: 100%;
    height: auto;
  }
}
