/**
 * Theme Name:     Twenty Twenty-One Child
 * Author:         the WordPress team
 * Template:       twentytwentyone
 * Text Domain:	   twenty-twenty-one-child
 * Description:    Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
 */
@import "css/common.css";
/* HERO BANNER
--------------------------------------------------*/

.bannerBlock{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.bannerVideo{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.bannerOverlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    );
}

.banner_content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.banner_content h1{
    color:#fff;
}

.banner-description{
    color:#fff;
    font-size:20px;
    margin:25px 0;
    max-width:650px;
}

/* HIGHLIGHTS
--------------------------------------------------*/

.bannerHighlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:50px 0;
}

.highlightItem{
    padding:25px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    transition:.4s;
}

.highlightItem:hover{
    transform:translateY(-10px);
    background:#C7A56A;
}

.highlightIcon{
    font-size:24px;
    margin-bottom:15px;
}

.highlightLabel{
    font-size:12px;
    letter-spacing:2px;
    opacity:.8;
}

.highlightLine{
    width:50px;
    height:2px;
    background:#fff;
    margin:12px 0;
}

.highlightValue{
    font-weight:600;
}

/* ABOUT
--------------------------------------------------*/

.about img{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.contentArea{
    margin:30px 0;
}

.couterBox{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.couterBox div{
    flex:1;
    padding:30px;
    border-radius:20px;
    background:#fafafa;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.couterBox h5{
    color:#C7A56A;
}

/* PROPERTY SECTION
--------------------------------------------------*/

.estate-project-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:120px;
}

.estate-project-card--reverse .estate-project-image{
    order:2;
}

.estate-project-card--reverse .estate-project-content{
    order:1;
}

.estate-project-image{
    overflow:hidden;
    border-radius:30px;
}

.estate-project-image img{
    transition:.6s;
}

.estate-project-image:hover img{
    transform:scale(1.08);
}

.estate-project-title{
    font-size:42px;
    margin-bottom:20px;
}

.estate-project-meta{
    display:flex;
    align-items:center;
    gap:20px;
    margin:30px 0;
}

.estate-meta-divider{
    width:1px;
    height:40px;
    background:#ddd;
}

.estate-meta-item{
    display:flex;
    gap:10px;
    align-items:center;
}

.estate-meta-item i{
    color:#C7A56A;
    font-size:20px;
}

.estate-project-description{
    color:#666;
    line-height:1.9;
}

.estate-project-actions{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

/* KEY HIGHLIGHTS
--------------------------------------------------*/

.key-height-grid{
    display:grid;
    grid-template-columns:1fr 500px 1fr;
    gap:40px;
    align-items:center;
}

.key-height-center-img img{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.key-height-list .item{
    padding:20px;
    margin-bottom:20px;
    border-left:4px solid #C7A56A;
    background:#fafafa;
    border-radius:10px;
    transition:.4s;
}

.key-height-list .item:hover{
    transform:translateX(10px);
}

/* AMENITIES
--------------------------------------------------*/

.keyMilestonesSection{
    background:#fafafa;
}

.academy-working-process-single-box{
    display:flex;
    gap:20px;
    align-items:center;
    padding:25px;
    background:#fff;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* GALLERY
--------------------------------------------------*/

.gallery-img{
    overflow:hidden;
    border-radius:25px;
}

.gallery-img img{
    transition:.6s;
}

.gallery-img:hover img{
    transform:scale(1.1);
}

/* PRICING
--------------------------------------------------*/

.tableContainer{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

table{
    width:100%;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    background:#fff;
}

thead{
    background:#C7A56A;
    color:#fff;
}

th,td{
    padding:20px;
    text-align:left;
}

tbody tr:nth-child(even){
    background:#fafafa;
}

/* FAQ
--------------------------------------------------*/

.accordion{
    padding:25px;
    margin-bottom:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    background:#fff;
}

.accordion .heading{
    font-size:20px;
    font-weight:600;
    cursor:pointer;
}