/* ==========================
   PROJECT HERO
========================== */

.luxury-hero{
    position:relative;
    width:100%;
    height:70vh;
    min-height:550px;
    background:url('/images/hotel-projects-hero-banner.png')
    center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.45)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:4.2rem;
    line-height:1.1;
    margin-bottom:20px;
    color:#fff;
}

.hero-content p{
    font-size:1.25rem;
    max-width:700px;
    margin:0 auto 35px;
    color:#f1f1f1;
}

/* ==========================
   FEATURED PROJECTS
========================== */

.featured-projects{
    padding:40px 20px 80px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.project-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:transform .6s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:28px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.35),
        transparent
    );

    color:#fff;
}

.project-type{
    display:inline-block;
    background:#C8A96A;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:6px 12px;
    border-radius:20px;
    margin-bottom:12px;
}

.project-overlay h3{
    color:#fff;
    margin-bottom:8px;
}

.project-overlay p{
    color:#e5e5e5;
}

/* ==========================
   PROJECT STATS
========================== */

.project-stats{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s ease;
}

.stat-box:hover{
    transform:translateY(-5px);
}

.stat-number{
    display:block;
    font-size:42px;
    font-weight:700;
    color:#C8A96A;
    margin-bottom:10px;
}

.stat-box h3{
    margin-bottom:10px;
}

.stat-box p{
    color:#666;
    line-height:1.7;
}

/* ==========================
   VIDEO SHOWCASE
========================== */

.video-showcase{
    max-width:1200px;
    margin:100px auto;
    padding:0 20px;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.video-card:hover{
    transform:translateY(-5px);
}

.video-card video{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
}

.video-content{
    padding:25px;
}

.video-content h3{
    margin-bottom:10px;
}

.video-content p{
    color:#666;
    line-height:1.7;
}

/* ==========================
   FOOTER CTA
========================== */

.footer-cta{
    background:linear-gradient(
        135deg,
        #1a1a1a,
        #2b2b2b
    );

    color:#fff;
    text-align:center;

    padding:80px 20px;
    border-radius:20px;
    margin-top:100px;
}

.footer-cta h2{
    color:#fff;
    font-size:2.5rem;
    margin-bottom:20px;
}

.footer-cta p{
    max-width:700px;
    margin:0 auto 30px;
    color:#ddd;
}

.footer-cta a{
    display:inline-block;
    background:#C8A96A;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.footer-cta a:hover{
    background:#b39256;
    transform:translateY(-3px);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .project-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .video-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .project-grid,
    .project-stats,
    .video-grid{
        grid-template-columns:1fr;
    }

    .project-card img{
        height:340px;
    }

    .footer-cta{
        padding:60px 20px;
    }

    .footer-cta h2{
        font-size:2rem;
    }

}