:root {
    --gold: #c5a059;
    --dark: #080808;
    --card-gray: #121212;
    --font-main: 'Pretendard', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: #fff;
    font-family: var(--font-main);
    overflow-x: hidden;
}

header {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #080808 100%);
}

header h1 {
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

header p {
    color: #555;
    margin-top: 15px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 지역별 실루엣 섹션 */
.region-section {
    margin-bottom: 150px;
    position: relative;
}

.region-visual-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.region-silhouette-img {
    width: 320px;
    height: 320px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
    filter: sepia(1) saturate(2) hue-rotate(330deg) brightness(0.9) contrast(1.2) drop-shadow(0 0 20px rgba(197, 160, 89, 0.4));
    transition: all 0.5s ease;
}

.region-silhouette-img:hover {
    filter: sepia(1) saturate(3) hue-rotate(330deg) brightness(1.1) contrast(1.3) drop-shadow(0 0 30px rgba(197, 160, 89, 0.6));
    transform: scale(1.05);
}

.region-name-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

/* 셰프 카드 그리드 */
.chef-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.card {
    background: var(--card-gray);
    border: 1px solid #1a1a1a;
    transition: all 0.4s ease;
    display: flex;
    min-height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.card.white-spoon {
    background: #fff;
    color: #000;
}

.card-left,
.card-right {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 200px;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .image-container img {
    transform: scale(1.1);
}

.info-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.card-left {
    border-right: 1px solid rgba(197, 160, 89, 0.1);
}

.card-right {
    background: rgba(255, 255, 255, 0.02);
}

.white-spoon .card-right {
    background: rgba(0, 0, 0, 0.02);
}

.spoon-type {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.black-spoon .spoon-type {
    color: var(--gold);
}

.white-spoon .spoon-type {
    color: #666;
}

.chef-name {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.dish-label {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 800;
}

.white-spoon .dish-label {
    color: #666;
}

.dish-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.chef-intro {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.location-meta {
    margin-top: auto;
    padding-top: 25px;
}

.res-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.white-spoon .res-name {
    color: #000;
    text-decoration: underline;
}

.res-addr {
    font-size: 0.8rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .card {
        flex-direction: column;
    }

    .card-left,
    .card-right {
        flex-direction: row;
    }

    .card-left {
        border-right: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }
}

@media (max-width: 768px) {

    .card-left,
    .card-right {
        flex-direction: column;
    }

    .image-container {
        width: 100%;
        height: 250px;
    }

    .info-content {
        padding: 30px;
    }

    .region-silhouette-img {
        width: 240px;
        height: 240px;
    }
}

.region-name-large {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

.region-name-large:hover {
    color: var(--gold) !important;
    letter-spacing: 8px;
    /* 손대면 글자가 마법처럼 옆으로 슥 벌어짐 */
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}