:root {
    --green: #1f7a4c;
    --green-dark: #145c38;
    --cream: #f7f4ec;
    --ink: #202622;
    --muted: #69716c;
}

body {
    color: var(--ink);
    background: #fff;
}

.site-navbar {
    background: rgba(19, 52, 36, 0.97);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.45rem;
}

.navbar-brand span {
    color: #8bd3a9;
}

.hero-section {
    color: #fff;
    background:
        linear-gradient(
            rgba(12, 48, 31, 0.74),
            rgba(12, 48, 31, 0.82)
        ),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80")
        center / cover no-repeat;
}

.min-vh-60 {
    min-height: 60vh;
}

.hero-label,
.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-label {
    color: #b9efcc;
}

.hero-search {
    max-width: 760px;
}

.hero-search .input-group {
    background: #fff;
    border-radius: 1rem;
    padding: 0.35rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
}

.hero-search .form-control:focus {
    box-shadow: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-stats span {
    color: rgba(255,255,255,0.85);
}

.hero-stats strong {
    display: block;
    color: #fff;
    font-size: 1.5rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.section-kicker {
    color: var(--green);
}

.category-card {
    display: block;
    height: 100%;
    padding: 1.4rem;
    color: var(--ink);
    background: var(--cream);
    border-radius: 1rem;
    transition: 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    background: #edf5ef;
}

.category-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    font-size: 1.35rem;
}

.destination-section {
    background: var(--cream);
}

.destination-card {
    display: flex;
    justify-content: space-between;
    align-items: end;
    min-height: 150px;
    padding: 1.5rem;
    color: #fff;
    text-decoration: none;
    border-radius: 1rem;
    background:
        linear-gradient(
            135deg,
            rgba(20, 92, 56, 0.96),
            rgba(44, 130, 82, 0.84)
        );
}

.destination-card h4 {
    margin-bottom: 0.2rem;
}

.destination-card p {
    margin: 0;
    opacity: 0.8;
}

.place-card {
    overflow: hidden;
    border-radius: 1rem;
    transition: 0.2s ease;
}

.place-card:hover {
    transform: translateY(-4px);
}

.place-card-image,
.place-card-placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.place-card-placeholder {
    display: grid;
    place-items: center;
    background: #e8ece9;
    color: #8a918d;
    font-size: 2rem;
}

.rating-star {
    color: #d79500;
    font-weight: 600;
}

.page-header,
.place-detail-header {
    background: var(--cream);
}

.filter-panel,
.content-card,
.contact-card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e7e9e7;
    border-radius: 1rem;
}

.contact-card {
    top: 90px;
}

.photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 0.5rem;
    overflow: hidden;
    border-radius: 1rem;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-grid img:first-child {
    grid-row: 1 / 3;
}

#place-map {
    height: 430px;
    border-radius: 0.8rem;
}

.type-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.type-tags span {
    padding: 0.45rem 0.75rem;
    background: var(--cream);
    border-radius: 999px;
    font-size: 0.85rem;
}

.empty-state {
    padding: 5rem 1rem;
    text-align: center;
    color: var(--muted);
}

.empty-state i {
    display: block;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.site-footer {
    color: #d7dfda;
    background: #153525;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .hero-section .display-3 {
        font-size: 2.6rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 150px;
    }

    .photo-grid img:first-child {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }
}
