/* 기본 스타일 초기화 및 설정 */
:root {
    --primary-color: #d4af37; /* Gold */
    --glow-color: rgba(212, 175, 55, 0.6);
    --bg-color: #121212;
    --surface-color: #1a1a1a;
    --text-color: #e0e0e0;
    --text-muted-color: #a0a0a0;
    --border-color: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
}

.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: #ffffff;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* 헤더 & 네비게이션 */
header {
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    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: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo h1 i {
    color: var(--primary-color);
    margin-right: 8px;
    text-shadow: 0 0 10px var(--glow-color);
}

.logo .highlight {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-muted-color);
    font-weight: 700;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover, nav a.nav-contact:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--glow-color);
}

nav a.nav-contact {
    color: #121212;
    background-color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a.nav-contact:hover {
    background-color: #fff;
    color: #121212;
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--glow-color);
}

/* 히어로 섹션 */
.hero {
    text-align: center;
    padding: 90px 0 70px;
    background: linear-gradient(rgba(18, 18, 18, 0.9), var(--bg-color)), url('https://www.transparenttextures.com/patterns/black-linen.png');
}

.hero h2 {
    font-size: 44px;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
    color: #fff;
}

.hero h2 span {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--glow-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: 35px;
}

.site-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.site-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 30px var(--glow-color);
    border-color: var(--primary-color);
}

.site-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.2);
}

.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;
    font-family: 'Noto Sans KR', sans-serif;
}

.tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    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: #d4af37; color: #d4af37; }

.btn-go {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: linear-gradient(90deg, #c09b2e, var(--primary-color));
    color: #000;
    font-weight: 900;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

.btn-go:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px var(--glow-color);
    color: #000;
}

/* 배너 문의 섹션 */
#banner-inquiry {
    background: #000;
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

#banner-inquiry h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

#banner-inquiry h2 i {
    margin-right: 15px;
}

#banner-inquiry p {
    color: var(--text-muted-color);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
}

.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);
    width: 20px;
}

.btn-contact {
    display: inline-block;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background: var(--primary-color);
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--glow-color);
    color: #000;
}

/* 푸터 */
footer {
    padding: 40px 0;
    text-align: center;
    background-color: #0a0a0a;
}

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: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }
}