/* ============================================
   JapanChillChill - Main Stylesheet
   Aesthetic: Modern Japanese Magazine
   Colors: Sakura pink, Deep Indigo, Warm Cream
============================================ */

:root {
    --sakura: #E8457A;
    --sakura-light: #FFB3C8;
    --sakura-pale: #FFF0F4;
    --indigo: #1A1A3E;
    --indigo-mid: #2D2D6B;
    --gold: #C9A84C;
    --gold-light: #F0D685;
    --cream: #FFFDF7;
    --warm-gray: #F5F3EF;
    --text-dark: #1C1C2E;
    --text-mid: #4A4A6A;
    --text-light: #8888AA;
    --border: #E8E5F0;
    --shadow-sm: 0 2px 12px rgba(26,26,62,0.07);
    --shadow-md: 0 8px 30px rgba(26,26,62,0.12);
    --shadow-lg: 0 20px 60px rgba(26,26,62,0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans Thai', 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Topbar ---- */
.topbar {
    background: var(--indigo);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-right { display: flex; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: var(--transition); }
.topbar a:hover { color: var(--sakura-light); }

/* ---- Header ---- */
.main-header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.main-header .container {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 68px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.7rem; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--indigo);
    background: linear-gradient(135deg, var(--indigo), var(--sakura));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    display: block;
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--sakura); background: var(--sakura-pale); }
.btn-write {
    background: var(--sakura) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
}
.btn-write:hover { background: #C43569 !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(232,69,122,0.4) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; pointer-events: all; top: 100%; }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown a {
    padding: 9px 12px; border-radius: 8px;
    font-size: 0.85rem;
    display: flex; flex-direction: column; gap: 1px;
    color: var(--text-dark) !important;
}
.dropdown a small { color: var(--text-light); font-size: 0.72rem; }
.dropdown a:hover { background: var(--sakura-pale); color: var(--sakura) !important; }
.dropdown-sm { min-width: 160px; }
.dropdown-sm a { display: flex; flex-direction: row; gap: 8px; align-items: center; }

/* Mobile Toggle */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--indigo) 0%, #3D2B6B 50%, #6B1A3E 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=1400') center/cover;
    opacity: 0.2;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,62,0.92) 0%, rgba(61,43,107,0.85) 60%, rgba(107,26,62,0.88) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    text-align: center;
    color: white;
}
.hero-badge {
    display: inline-block;
    background: rgba(232,69,122,0.25);
    border: 1px solid rgba(232,69,122,0.5);
    color: var(--sakura-light);
    font-size: 0.82rem;
    padding: 5px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero h1 em { color: var(--sakura-light); font-style: italic; }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 36px;
}
.hero-search {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}
.hero-search button {
    background: var(--sakura);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.hero-search button:hover { background: #C43569; transform: scale(1.02); }
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ============================================
   SECTIONS
============================================ */
.section { padding: 70px 0; }
.section-alt { background: var(--warm-gray); }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--indigo);
    line-height: 1.3;
}
.section-title span { color: var(--sakura); }
.section-subtitle { color: var(--text-light); font-size: 0.9rem; margin-top: 4px; }
.section-link {
    color: var(--sakura);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

/* ============================================
   CITY CARDS
============================================ */
.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.city-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.city-card.large { grid-column: span 2; grid-row: span 2; }
.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.city-card:hover img { transform: scale(1.08); }
.city-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,62,0.9) 0%, rgba(26,26,62,0.1) 60%);
    transition: var(--transition);
}
.city-card:hover .city-card-overlay { background: linear-gradient(to top, rgba(26,26,62,0.95) 0%, rgba(26,26,62,0.2) 60%); }
.city-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
}
.city-card-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 2px; }
.city-card.large .city-card-info h3 { font-size: 1.7rem; }
.city-card-info p { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.city-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--sakura);
    color: white;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 30px;
    font-weight: 600;
}

/* ============================================
   PLACE CARDS
============================================ */
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.place-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: block;
}
.place-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sakura-light);
}
.place-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.place-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.place-card:hover .place-card-img img { transform: scale(1.05); }
.place-card-cat {
    position: absolute;
    top: 12px; left: 12px;
    background: white;
    font-size: 0.74rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-mid);
    box-shadow: var(--shadow-sm);
}
.place-card-featured {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gold);
    color: white;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.place-card-body { padding: 18px; }
.place-card-city {
    font-size: 0.76rem;
    color: var(--sakura);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 5px;
}
.place-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.place-card-body p {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}
.place-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.place-card-rating {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 600;
}
.place-card-price {
    font-size: 0.76rem;
    color: var(--text-light);
}

/* ---- Stars ---- */
.stars .star { font-size: inherit; }
.stars .star.full { color: #F5A623; }
.stars .star.half { color: #F5A623; opacity: 0.6; }
.stars .star.empty { color: #DDD; }
.stars-sm { font-size: 0.85rem; }
.stars-md { font-size: 1rem; }
.stars-lg { font-size: 1.3rem; }

/* ============================================
   CITY PAGE HEADER
============================================ */
.city-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.city-hero img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.city-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,62,0.88) 0%, transparent 60%);
}
.city-hero-content {
    position: absolute;
    bottom: 40px; left: 0; right: 0;
    color: white;
}
.city-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}
.city-hero-content p { color: rgba(255,255,255,0.8); margin-top: 8px; font-size: 1rem; }
.city-hero-meta {
    display: flex; gap: 24px;
    margin-top: 14px;
}
.city-hero-meta span {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.75);
    display: flex; align-items: center; gap: 5px;
}

/* ============================================
   CATEGORY TABS
============================================ */
.cat-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.cat-tab {
    padding: 9px 20px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-mid);
    font-family: inherit;
    font-size: 0.87rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.cat-tab:hover, .cat-tab.active {
    background: var(--sakura);
    color: white;
    border-color: var(--sakura);
}

/* ============================================
   PLACE DETAIL PAGE
============================================ */
.place-detail { padding: 50px 0; }
.place-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.place-gallery { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.place-gallery img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.place-info-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}
.place-info-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--indigo); }
.info-row {
    display: flex; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .icon { font-size: 1.1rem; flex-shrink: 0; }
.info-row .label { color: var(--text-light); font-size: 0.78rem; }
.info-row .value { color: var(--text-dark); font-weight: 500; }

/* ============================================
   REVIEW SECTION
============================================ */
.review-summary {
    background: linear-gradient(135deg, var(--sakura-pale), white);
    border: 1px solid var(--sakura-light);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.review-big-score {
    text-align: center;
    flex-shrink: 0;
}
.review-big-score .score {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sakura);
    line-height: 1;
}
.review-big-score .out-of { font-size: 0.8rem; color: var(--text-light); }

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 16px;
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sakura), var(--indigo));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: var(--text-light); }
.review-title { font-weight: 700; margin-bottom: 8px; color: var(--indigo); }
.review-content { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================
   WRITE REVIEW FORM
============================================ */
.review-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}
.form-group { margin-bottom: 22px; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-label .req { color: var(--sakura); margin-left: 3px; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
    background: white;
}
.form-control:focus { border-color: var(--sakura); box-shadow: 0 0 0 3px rgba(232,69,122,0.1); }
.form-control.is-invalid { border-color: #EF4444; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    font-size: 2rem;
}
.star-rating-input input { display: none; }
.star-rating-input label {
    cursor: pointer;
    color: #DDD;
    transition: var(--transition);
}
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: #F5A623; }

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 16px 0;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--sakura); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text-dark); font-weight: 500; }

/* ============================================
   SEARCH PAGE
============================================ */
.search-bar-wrap {
    background: var(--indigo);
    padding: 36px 0;
}
.search-bar-inner {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow-lg);
}
.search-bar-inner input {
    flex: 1;
    border: none; outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
}
.search-bar-inner button {
    background: var(--sakura); color: white;
    border: none; padding: 12px 30px;
    border-radius: 40px;
    font-family: inherit; font-weight: 600;
    cursor: pointer; font-size: 0.95rem;
    transition: var(--transition);
}
.search-bar-inner button:hover { background: #C43569; }

/* ============================================
   PAGINATION
============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 40px 0 20px;
}
.page-btn {
    min-width: 38px; height: 38px;
    border: 1.5px solid var(--border);
    background: white;
    border-radius: 8px;
    color: var(--text-mid);
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    padding: 0 12px;
}
.page-btn:hover { border-color: var(--sakura); color: var(--sakura); }
.page-btn.active { background: var(--sakura); color: white; border-color: var(--sakura); }

/* ============================================
   SEASONAL BANNER
============================================ */
.season-section { padding: 60px 0; background: var(--indigo); }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season-card {
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.season-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.3); }
.season-card .season-icon { font-size: 2.5rem; margin-bottom: 12px; }
.season-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.season-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.season-spring { background: linear-gradient(135deg, rgba(232,69,122,0.3), rgba(255,179,200,0.2)); }
.season-summer { background: linear-gradient(135deg, rgba(16,185,129,0.3), rgba(6,182,212,0.2)); }
.season-autumn { background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(239,68,68,0.2)); }
.season-winter { background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(148,163,184,0.2)); }

/* ============================================
   ALERT / FLASH MESSAGES
============================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-info { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }

/* ============================================
   ADMIN
============================================ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 120px); gap: 0; }
.admin-sidebar {
    background: var(--indigo);
    padding: 24px 16px;
}
.admin-sidebar h3 { color: rgba(255,255,255,0.5); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; margin: 20px 0 8px; padding: 0 12px; }
.admin-sidebar a {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    transition: var(--transition);
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,0.12); color: white; }
.admin-content { padding: 32px; background: var(--warm-gray); }
.admin-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
}
.stat-card .stat-num { font-size: 2rem; font-weight: 800; color: var(--sakura); }
.stat-card .stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }

/* ============================================
   TABLE
============================================ */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th {
    background: var(--warm-gray);
    padding: 11px 14px;
    text-align: left;
    font-weight: 600;
    color: var(--text-mid);
    border-bottom: 2px solid var(--border);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}
.data-table tr:hover td { background: var(--sakura-pale); }
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-orange { background: #FEF3C7; color: #92400E; }
.badge-red { background: #FEE2E2; color: #991B1B; }

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 24px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}
.btn-primary { background: var(--sakura); color: white; }
.btn-primary:hover { background: #C43569; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(232,69,122,0.35); }
.btn-secondary { background: white; color: var(--text-mid); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--sakura); color: var(--sakura); }
.btn-dark { background: var(--indigo); color: white; }
.btn-dark:hover { background: var(--indigo-mid); }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 12px; }
.btn-danger { background: #EF4444; color: white; }
.btn-danger:hover { background: #DC2626; }

/* ============================================
   FOOTER
============================================ */
.main-footer { background: var(--indigo); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-text { -webkit-text-fill-color: white !important; background: none !important; color: white !important; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin: 14px 0 20px; line-height: 1.7; }
.social-links { display: flex; gap: 14px; font-size: 1.3rem; }
.social-links a { text-decoration: none; transition: transform 0.2s; display: inline-block; }
.social-links a:hover { transform: scale(1.2); }
.footer-links h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--sakura-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .city-grid { grid-template-columns: repeat(3, 1fr); }
    .city-card.large { grid-column: span 1; grid-row: span 1; }
    .places-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .place-detail-layout { grid-template-columns: 1fr; }
    .place-info-card { position: static; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: white; border-top: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-md); }
    .main-nav.open ul { flex-direction: column; gap: 4px; }
    .mobile-toggle { display: block; }
    .has-dropdown > .dropdown { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: all; box-shadow: none; border: none; background: var(--warm-gray); margin-top: 4px; }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .places-grid { grid-template-columns: 1fr; }
    .season-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .admin-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .topbar .container { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
    .city-grid { grid-template-columns: 1fr; }
    .season-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.text-sakura { color: var(--sakura); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-10 { gap: 10px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* Scroll animation */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
