/* ===============================
   ROOT COLORS (PRO PALETTE)
================================ */
:root {
    --primary: #0b5ed7;      /* travel blue */
    --accent: #ff6b00;       /* warm orange */
    --accent-soft: #fff1e6;
    --bg-main: #f4f7fb;      /* light sky */
    --bg-card: #ffffff;
    --text-dark: #1f2937;
    --text-soft: #6b7280;
    --border-soft: #e5e7eb;
}

/* ===============================
   BASE
================================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.breadcrumb{
    max-width:1200px;
    margin:20px auto;
    font-size:14px;
    color:#6b7280;
}
.breadcrumb a{
    color:var(--primary);
}

/* ===============================
   HERO / SLIDER
================================ */
.place-hero {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 14px;
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* SLIDER NAV */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    font-size: 26px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.nav:hover {
    background: rgba(0,0,0,.8);
}

.nav.prev { left: 16px; }
.nav.next { right: 16px; }

/* ===============================
   HERO TEXT
================================ */
.hero-text {
    margin-top: 18px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.hero-text h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}

.location {
    color: var(--text-soft);
    font-size: 15px;
}

.type-badge {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--accent), #ff9a4d);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ===============================
   QUICK INFO CARDS
================================ */
.quick-info {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 16px;
}

.info-card {
    background: var(--bg-card);
    padding: 18px;
    border-radius: 16px;
    font-size: 14px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.info-card strong {
    font-weight: 600;
}

.info-card a {
    color: var(--primary);
    font-weight: 600;
}

/* ===============================
   CONTENT SECTIONS
================================ */
.place-section {
    max-width: 900px;
    margin: 44px auto;
    padding: 26px;
    background: var(--bg-card);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.place-section h2 {
    font-size: 24px;
    margin-bottom: 14px;
    position: relative;
}

.place-section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--accent);
    display: block;
    margin-top: 8px;
    border-radius: 4px;
}

.place-section p {
    font-size: 15px;
    color: #374151;
}

/* ===============================
   CHIPS (THINGS TO DO)
================================ */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chips li {
    list-style: none;
    background: var(--accent-soft);
    color: #7c2d12;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* ===============================
   NEARBY
================================ */
.nearby-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.near-card {
    background: #eef6ff;
    color: #1e40af;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
}

/* ===============================
   RELATED LINKS
================================ */
.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: var(--primary);
    font-weight: 600;
}

.related-links a:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .slide img {
        height: 280px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .place-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .slide img {
        height: 220px;
    }

    .hero-text {
        padding: 16px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .location {
        font-size: 13px;
    }

    .place-section {
        margin: 28px 14px;
    }
}


