/* =========================================================
   TENT LISTING PAGE STYLES (ITM THEME)
========================================================= */

.tents-listing-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px 90px 20px;
    box-sizing: border-box;
}

/* ----------------------------------------------------
   PAGE HEADER / INTRO
   ---------------------------------------------------- */
.tents-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 15px;
}

.tents-header-logo {
    display: block;
    margin: 0 auto 12px auto;
    width: 60px;
    height: auto;
    object-fit: contain;
}

.tents-tagline {
    font-family: 'Lora', serif;
    font-size: 15px;
    color: #18171C;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
    text-transform: capitalize;
}

.tents-main-title {
    font-family: 'Lora', serif;
    font-size: 40px;
    font-weight: 400;
    color: #18171C;
    text-transform: uppercase;
    line-height: 1.28;
    max-width: 920px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* ----------------------------------------------------
   TENT LISTING CARDS
   ---------------------------------------------------- */
.tents-list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tent-listing-card {
    width: 100%;
    margin-bottom: 90px;
    text-align: center;
    box-sizing: border-box;
}

.tent-card-header {
    margin-bottom: 25px;
    padding: 0 15px;
}

.tent-card-title {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 400;
    color: #18171C;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.tent-card-desc {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #333333;
    max-width: 860px;
    margin: 0 auto;
    font-weight: 400;
}

/* Media / Big Tent Image */
.tent-card-media {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    background: #f7f7f7;
}

.tent-card-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tent-card-media:hover img {
    transform: scale(1.025);
}

/* Action Buttons */
.tent-card-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-know-more {
    background-color: #C5A880;
    color: #FFFFFF !important;
    border: 1px solid #C5A880;
    min-width: 190px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    cursor: pointer;
}

.btn-know-more:hover {
    background-color: #b08b49;
    border-color: #b08b49;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.btn-enquire-now {
    background-color: #FFFFFF;
    color: #C5A880 !important;
    border: 1px solid #C5A880;
    min-width: 190px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    cursor: pointer;
}

.btn-enquire-now:hover {
    background-color: #C5A880;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.3);
}

/* ----------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ---------------------------------------------------- */
@media (max-width: 1200px) {
    .tents-main-title {
        font-size: 34px;
    }

    .tent-card-title {
        font-size: 32px;
    }

    .tent-card-media img {
        height: 480px;
    }
}

@media (max-width: 992px) {
    .tents-header {
        margin-bottom: 50px;
    }

    .tents-main-title {
        font-size: 28px;
    }

    .tent-listing-card {
        margin-bottom: 70px;
    }

    .tent-card-title {
        font-size: 26px;
    }

    .tent-card-desc {
        font-size: 13.5px;
    }

    .tent-card-media img {
        height: 390px;
    }

    .btn-know-more,
    .btn-enquire-now {
        min-width: 160px;
        height: 44px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .tents-listing-section {
        padding: 20px 15px 60px 15px;
    }

    .tents-header {
        margin-bottom: 40px;
    }

    .tents-header-logo {
        width: 50px;
    }

    .tents-tagline {
        font-size: 13px;
    }

    .tents-main-title {
        font-size: 24px;
        line-height: 1.35;
    }

    .tent-listing-card {
        margin-bottom: 55px;
    }

    .tent-card-title {
        font-size: 22px;
    }

    .tent-card-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .tent-card-media img {
        height: 300px;
    }

    .tent-card-actions {
        margin-top: 24px;
        gap: 12px;
    }

    .btn-know-more,
    .btn-enquire-now {
        min-width: 140px;
        height: 42px;
        font-size: 12.5px;
    }
}

@media (max-width: 480px) {
    .tents-main-title {
        font-size: 20px;
    }

    .tent-card-title {
        font-size: 19px;
    }

    .tent-card-media img {
        height: 230px;
    }

    .tent-card-actions {
        width: 100%;
    }

    .btn-know-more,
    .btn-enquire-now {
        flex: 1;
        min-width: 0;
        padding: 0 8px;
        font-size: 12px;
        height: 40px;
    }
}



