/* --- Page Header --- */
.loc-page-header {
    padding: 40px 0 20px;
    padding-top: 140px;
    text-align: center;
}
.loc-page-title {
    font-family: "Playfair Display", serif;
    color: var(--theme-maroon);
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.loc-page-desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Location Cards (Exact Homepage Design) --- */
.loc-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}
.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.loc-card-img-wrapper {
    position: relative;
}
.loc-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.loc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.loc-title {
    font-family: "Playfair Display", serif;
    color: var(--theme-maroon);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.loc-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}
.loc-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-explore {
    background: #f3f4f6;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    flex: 1;
    text-align: center;
    text-decoration: none;
}
.btn-explore:hover {
    background: #e5e7eb;
    color: #000;
}

.btn-book-loc {
    background: var(--theme-green);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
    flex: 1;
    text-align: center;
    text-decoration: none;
}
.btn-book-loc:hover {
    background: #128c7e;
    color: #fff;
}

/* --- Blogs Section (Below Locations) --- */
.loc-blog-section {
    margin-top: 60px;
    padding-bottom: 80px;
}
.loc-blog-title {
    font-family: "Playfair Display", serif;
    color: var(--theme-maroon);
    text-align: center;
    margin-bottom: 40px;
}

.loc-blog-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
}
.loc-blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-light-orange);
}

.loc-blog-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.loc-blog-title-text a {
    color: #ff7a00;
}
.loc-blog-title-text {
    font-weight: 600;
    color: #222;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.loc-blog-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.loc-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}
.loc-blog-tag {
    background: var(--theme-maroon);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}
.loc-blog-tag.orange {
    background: var(--theme-orange);
}
.loc-blog-read {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.loc-blog-read:hover {
    color: var(--theme-orange);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .loc-page-title {
        font-size: 2.2rem;
    }
}
