/* =====================
   GLOBAL RESET
===================== */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f6fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =====================
   BANNER
===================== */

.place_banner {
    position: relative;
    height: 320px;
    background: url('../images/lonavala.jpg') center/cover no-repeat;
}

.place_overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.place_overlay h1 {
    color: #fff;
    font-size: 42px;
    letter-spacing: 2px;
}

/* =====================
   CONTENT
===================== */

.place_content {
    margin-top: -50px;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.place_content h2 {
    margin-bottom: 15px;
    color: #5a3d75;
    font-size: 26px;
}

.place_content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

/* =====================
   REVIEW SECTION
===================== */

.review_section {
    margin-top: 50px;
}

.review_section h2 {
    margin-bottom: 30px;
    color: #5a3d75;
    font-size: 26px;
}

/* GRID */
.review_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.review_card {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.review_card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.review_card img {
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
    object-fit: cover;
    border-radius: 8px;
}

/* VIDEO */
.review_card video {
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* TEXT */
.review_card p {
    color: #444;
    font-size: 14px;
}

/* =====================
   TRENDING DETAILS LAYOUT
===================== */

.trending_banner {
    padding: 60px 0;
    background: linear-gradient(to right, #fa9e1b, #8d4fff);
    color: #fff;
    text-align: center;
}

.trending_banner h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 40px;
    font-family: 'Felipa', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

.trending_banner p {
    margin: 0;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

.trending_banner p span {
    color: #fa9e1b;
    font-weight: 600;
}

/* =====================
   TRENDING LAYOUT & MAIN CONTENT
===================== */

.trending_details_section {
    padding: 60px 0;
}

.trending_layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Main Content Card */
.trending_main {
    flex: 2;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.trending_main_video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trending_title {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.trending_meta {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.trending_main p {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.trending_main h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    color: #5a3d75;
}

.trending_main ul {
    list-style-type: none;
    padding-left: 0;
}

.trending_main ul li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.trending_main ul li::before {
    content: "•";
    color: #fa9e1b;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1.2;
}

/* Sidebar */
.trending_sidebar {
    flex: 1;
    position: sticky;
    top: 20px;
}

/* =====================
   WIDGETS
===================== */

.widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget h4 {
    font-size: 20px;
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
    border-left: 4px solid #fa9e1b;
    padding-left: 12px;
}

/* Search Box */
.search_box {
    display: flex;
}

.search_box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-family: inherit;
}

.search_box button {
    padding: 12px 20px;
    background: #fa9e1b;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: 0.3s;
}

.search_box button:hover {
    background: #e08b15;
}

/* Widget Posts */
.widget_post {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

.widget_post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget_post:hover {
    transform: translateX(5px);
}

.widget_post img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
}

.widget_post h5 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #333;
    transition: 0.3s;
}

.widget_post:hover h5 {
    color: #fa9e1b;
}

.widget_post span {
    font-size: 13px;
    color: #888;
}

/* Custom Scrollbar for widget */
.widget_scrollable::-webkit-scrollbar {
    width: 6px;
}
.widget_scrollable::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.widget_scrollable::-webkit-scrollbar-thumb {
    background: #fa9e1b; 
    border-radius: 3px;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 991px) {
    .review_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trending_layout {
        flex-direction: column;
    }

    .trending_sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .review_grid {
        grid-template-columns: 1fr;
    }

    .place_overlay h1 {
        font-size: 24px;
    }
}