/* PetMeet 지원 페이지 스타일 */

:root {
  --primary-color: #4CAF50;
  --secondary-color: #2196F3;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #f5f5f5;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* 헤더 */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-color);
}

.logo-icon {
  font-size: 32px;
}

.logo-text h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.logo-text p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary-color);
}

/* 메인 콘텐츠 */
main {
  background: var(--white);
  margin: 20px 0;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* 히어로 섹션 */
.hero {
  text-align: center;
  padding: 60px 0;
}

.hero-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.hero-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* 기능 섹션 */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.feature {
  text-align: center;
  padding: 30px;
  background: var(--bg-color);
  border-radius: 12px;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.feature p {
  color: var(--text-light);
  font-size: 14px;
}

/* 섹션 */
section {
  margin: 40px 0;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-color);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
}

h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--text-color);
}

h4 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: var(--text-color);
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-color);
}

ul, ol {
  margin: 15px 0;
  padding-left: 30px;
}

li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* 연락처 */
.contact-info {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.contact-icon {
  font-size: 24px;
  color: var(--primary-color);
}

/* 푸터 */
footer {
  background: var(--white);
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  color: var(--text-light);
  font-size: 14px;
}

/* 반응형 */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  main {
    padding: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  h2 {
    font-size: 26px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

/* 스크롤바 커스텀 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #45a049;
}
