@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght:700;900&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary: #E85D04;
    --bg-cream: #FAF3E0;
    --bg-white: #FFFFFF;
    --text-dark: #2B2D42;
    --text-gray: #6C757D;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}

.back-btn {
    background: var(--bg-cream);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

.detail-hero {
    background: linear-gradient(135deg, var(--primary), #DC2F02);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.hero-icon { font-size: 6rem; margin-bottom: 1rem; }

.detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: -3rem auto 3rem;
    padding: 0 2rem;
}

.content-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
}

.city-tags, .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.city-tag, .tag {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-box {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.info-box-title {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.info-box-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.info-box-label {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.info-box-category {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.restaurant-list {
    display: grid;
    gap: 1.5rem;
}

.restaurant-item {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.restaurant-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.restaurant-info h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.restaurant-info h3 a:hover {
    color: var(--primary);
}

.restaurant-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.restaurant-location {
    text-align: right;
}

.location-city {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.location-area {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.location-card, .restaurant-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.location-card-full {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.location-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.price-badge-large {
    background: #FFBA08;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.location-area {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.location-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-price {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.restaurant-card h3 a {
    color: var(--primary);
    text-decoration: none;
}

.cuisine-restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.cuisine-restaurant-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.cuisine-restaurant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.cuisine-rest-content {
    flex: 1;
}

.cuisine-rest-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.rest-specialty {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rest-location {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.price-badge-cuisine {
    background: #FFBA08;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.sort-select {
    padding: 0.6rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: white;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .detail-hero h1 { font-size: 2.5rem; }
    .hero-icon { font-size: 4rem; }
}
