/* 스타일 2: 럭셔리 & 골드 */
@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Noto+Sans+KR:wght@400;700;900&display=swap');

:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #c09b2e;
    --bg-color: #121212;
    --surface-color: #1a1a1a;
    --text-color: #f0f0f0;
    --text-muted-color: #a0a0a0;
    --border-color: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Gowun Dodum', sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: var(--primary-color); transition: color 0.3s ease; }
a:hover { color: #fff; }
h1, h2, h3 { font-family: 'Noto Sans KR', sans-serif; font-weight: 700; }

/* 헤더 & 네비게이션 */
header { background-color: rgba(18, 18, 18, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid #2a2a2a; padding: 20px 0; position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: 1px; }
.logo h1 i { color: var(--primary-color); }
.logo .highlight { color: var(--primary-color); }
nav ul { list-style: none; display: flex; gap: 25px; }
nav a { color: var(--text-muted-color); font-weight: 700; font-size: 16px; transition: color 0.3s; }
nav a:hover { color: var(--primary-color); }
nav a.nav-contact { color: #000; background: var(--primary-color); padding: 8px 15px; border-radius: 5px; transition: background-color 0.3s, transform 0.3s; }
nav a.nav-contact:hover { background-color: #fff; color: #000; }

/* 히어로 섹션 */
.hero { text-align: center; padding: 80px 0 60px; }
.hero h2 { font-size: 42px; margin-bottom: 15px; text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
.hero h2 span { color: var(--primary-color); }
.hero p { font-size: 18px; color: var(--text-muted-color); max-width: 600px; margin: 0 auto; }

/* 사이트 그리드 */
#sites-grid { padding: 60px 0; }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.site-card { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 4px; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease; display: flex; flex-direction: column; }
.site-card:hover { transform: translateY(-8px); border-color: var(--primary-color); }
.site-card img { width: 100%; height: auto; display: block; filter: saturate(0.8); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-content h3 { font-size: 20px; margin-bottom: 10px; color: #fff; }
.card-content p { color: var(--text-muted-color); font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.tags { margin-bottom: 20px; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-right: 8px; border: 1px solid; }
.tag.guaranteed { border-color: #27ae60; color: #27ae60; }
.tag.new { border-color: #3498db; color: #3498db; }
.tag.event { border-color: #e67e22; color: #e67e22; }
.btn-go { display: block; width: 100%; text-align: center; padding: 12px; background: linear-gradient(90deg, var(--secondary-color), var(--primary-color)); color: #000; font-weight: 700; border-radius: 4px; transition: opacity 0.3s ease; }
.btn-go:hover { opacity: 0.8; color: #000; }

/* 배너 문의 섹션 */
#banner-inquiry { background-color: #000; padding: 60px 0; text-align: center; border-top: 1px solid var(--primary-color); border-bottom: 1px solid var(--primary-color); }
#banner-inquiry h2 { font-size: 32px; margin-bottom: 15px; color: var(--primary-color); }
#banner-inquiry h2 i { margin-right: 10px; }
#banner-inquiry p { color: var(--text-muted-color); max-width: 600px; margin: 0 auto 30px; }
.contact-info { margin-bottom: 30px; }
.contact-info p { font-size: 18px; margin-bottom: 10px; color: var(--text-color); }
.contact-info i { margin-right: 10px; color: var(--primary-color); }
.btn-contact { display: inline-block; padding: 15px 40px; font-size: 18px; font-weight: 700; color: #000; background: var(--primary-color); border-radius: 50px; transition: transform 0.3s ease, background-color 0.3s; }
.btn-contact:hover { transform: scale(1.05); background-color: #fff; color: #000; }

/* 푸터 */
footer { padding: 40px 0; text-align: center; background-color: #000; }
footer p { font-size: 14px; color: #666; margin-bottom: 5px; }

/* 반응형 */
@media (max-width: 768px) {
    header .container { flex-direction: column; gap: 20px; }
    nav ul { gap: 15px; justify-content: center; flex-wrap: wrap; }
    .hero h2 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .grid-container { grid-template-columns: 1fr; }
}