@charset "utf-8";
/* CSS Document */

/* ==================================================
   01. FACILITY HERO
================================================== */

.gallery-hero{

    position:relative;

    min-height:96vh;

    display:flex;

    align-items:center;

    text-align:left;

    background:
    url("../images/gallery-hero.webp")
    center center / cover no-repeat;

    overflow:hidden;
}

.gallery-hero::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(25,18,10,.78) 0%,
        rgba(25,18,10,.58) 35%,
        rgba(0,0,0,.18) 70%,
        rgba(0,0,0,.02) 100%
    );
}

.gallery-hero .container{

    position:relative;

    z-index:5;

    display:flex;

    align-items:center;

    min-height:85vh;
}

.gallery-hero-content{

    max-width:750px;
	margin-top:60px;
	margin-left:40px;
}

.gallery-hero h1{

    color:#fff;

    font-size:clamp(2.4rem,3.4vw,3.4rem);

    line-height:1;

    max-width:700px;

    margin-bottom:15px;
}

.hero-line{

    width:70px;

    height:2px;

    background:var(--primary);

    margin:0 0 15px;
}

.gallery-hero p{

    color:rgba(255,255,255,.92);

    max-width:520px;

    margin:0 0 35px;

    font-size:1.05rem;

    line-height:1.6;
}

.gallery-hero .section-label{

    display:block;

    margin-top:20px;
	
	margin-bottom:15px;

    letter-spacing:5px;

    font-size:.8rem;

    color: rgb(199, 154, 74);
}

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:var(--primary);

    color:#fff;

    padding:18px 36px;

    text-decoration:none;

    letter-spacing:1px;

    font-weight:600;
	
	margin-bottom:60px;
}

.hero-btn::after{

    content:"→";
}

.hero-features{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    background:rgba(10,8,6,.55);

    backdrop-filter:blur(18px);

    padding:18px 0;

    z-index:3;
	
	display:flex;

    justify-content:center;
}

.hero-features-inner{

    width:min(1050px,90%);

    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:50px;
}

.hero-features-inner > div{

    position:relative;

    display:flex;

    align-items:center;

    gap:15px;
}

.hero-features div{

    color:#c79a4a;
}

.hero-features strong{

    display:block;

	font-size:0.9rem;

    font-weight:600;
	
	margin-bottom: -8px;
}

.hero-features span{

    opacity:.85;
	
	font-size:.7rem;

    color:rgba(255,255,255,.75);
}

.hero-features-inner > div{

    position:relative;
}

.hero-features-inner > div:not(:last-child)::after{

    content:'';

    position:absolute;

    right:-20px;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:45px;

    background:rgba(255,255,255,.15);
}

.feature-icon{

    width:42px;

    height:42px;

    flex-shrink:0;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;
}

.feature-icon svg{

    width:32px;

    height:32px;
}

/* ==================================================
   MOBILE HERO
================================================== */

@media(max-width:768px){

.gallery-hero{

    min-height:80vh;

    background-position:center center;

    align-items:flex-end;

    padding:
    120px
    0
    0;

    background-position:72% center;
}

.gallery-hero::before{

    background:
    linear-gradient(
        180deg,
        rgba(25,18,10,.78) 0%,
        rgba(25,18,10,.55) 45%,
        rgba(25,18,10,.80) 100%
    );
}

.gallery-hero .container{

    min-height:auto;

    display:block;
}

.gallery-hero-content{

    margin:0;

    padding:0 20px 30px;

    max-width:100%;
}
	
	.gallery-hero h1{

    font-size:1.8rem;

    line-height:1.15;


    margin-bottom:15px;
}
	
	.gallery-hero .section-label{

    letter-spacing:3px;

    font-size:.75rem;

    margin-bottom:12px;
}
	.hero-line{

    width:50px;

    margin-bottom:15px;
}
	.gallery-hero p{

    font-size:.95rem;

    line-height:1.7;

    margin-bottom:25px;

    max-width:100%;
}
	.hero-btn{

    width:100%;

    justify-content:center;

    padding:16px;

    margin-bottom:25px;
}
  .hero-features{
    display:none;
}

}

.gallery-difference-strip{
    padding:100px 0;
    background:#faf9f7;
}

.difference-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:50px;
}

.difference-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:30px;
}

.difference-card.current{
    border-color:var(--primary);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.difference-tag{
    display:inline-block;
    margin-bottom:14px;
    font-size:.75rem;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--primary);
    font-weight:700;
}

.difference-card h3{
    margin-bottom:12px;
}

.difference-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
}

.difference-card ul{
    margin:0 0 24px 18px;
    color:#444;
}

@media(max-width:991px){
    .difference-grid{
        grid-template-columns:1fr;
    }
}

/* ==================================================
   GALLERY
================================================== */

.gallery-collections{

    padding:100px 0;
}

.collections-grid{

    display:grid;
    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:60px;
}

.collection-card{

    display:block;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    text-decoration:none;

    color:inherit;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.35s;
}

.collection-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.collection-image{

    position:relative;

    overflow:hidden;
}

.collection-image img{

    width:100%;
    height:240px;

    object-fit:cover;

    display:block;

    transition:.5s;
}

.collection-card:hover img{

    transform:scale(1.06);
}

.photo-count{

    position:absolute;

    top:20px;
    right:20px;

    background:
    rgba(0,0,0,.65);

    backdrop-filter:blur(8px);

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    font-size:.9rem;

    font-weight:600;
}

.collection-content{

    padding:28px;
}

.collection-content h3{

    margin-bottom:12px;
}

.collection-content p{

    margin:0;

    color:#666;
}

.hidden-gallery{
    display:none;
}

@media(max-width:991px){

    .collections-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:768px){

    .gallery-collections{

        padding:80px 0;
    }

    .collections-grid{

        grid-template-columns:1fr;

        gap:25px;
    }

    .collection-image img{

        height:220px;
    }

}

/* ==================================================
   09. FINAL CTA
================================================== */

.rooms-cta{

    position:relative;

    padding:140px 0;

    text-align:center;

    background:
    url("../images/rooms-cta.webp")
    center center / cover no-repeat;

    overflow:hidden;
}

.cta-overlay{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(20,15,10,.65),
        rgba(20,15,10,.65)
    );
}

.rooms-cta .container{

    position:relative;

    z-index:2;
}

.rooms-cta-content{

    max-width:800px;

    margin:auto;
}

.rooms-cta .section-label{

    color:#fff;
}

.rooms-cta h2{

    color:#fff;

    margin-bottom:25px;
}

.rooms-cta p{

    color:rgba(255,255,255,.9);

    max-width:650px;

    margin:0 auto 40px;

    line-height:1.9;
}

.rooms-cta-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}
.btn-outline-light{

    border: 1px solid rgb(199, 154, 74);
  color: #c79a4a;
  padding: 20px 30px;

    border-radius:4px;

    text-decoration:none;

    transition:.3s;
}

.btn-outline-light:hover{

    background:#fff;

    color:#222;
}

@media(max-width:768px){

    .rooms-cta{

        padding:90px 0;
    }

    .rooms-cta-buttons{

        flex-direction:column;
    }

    .rooms-cta-buttons a{

        width:100%;
    }

}