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

/* ==================================================
   01. ROOMS HERO
================================================== */

.rooms-hero{

    position:relative;

    min-height:96vh;

    display:flex;

    align-items:center;

    text-align:left;

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

    overflow:hidden;
}

.rooms-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%
    );
}

.rooms-hero .container{

    position:relative;

    z-index:5;

    display:flex;

    align-items:center;

    min-height:85vh;
}

.rooms-hero-content{

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

.rooms-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;
}

.rooms-hero p{

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

    max-width:520px;

    margin:0 0 35px;

    font-size:1.05rem;

    line-height:1.6;
}

.rooms-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){

.rooms-hero{

    min-height:80vh;

    background-position:center center;

    align-items:flex-end;

    padding:
    120px
    0
    0;

    background-position:72% center;
}

.rooms-hero::before{

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

.rooms-hero .container{

    min-height:auto;

    display:block;
}

.rooms-hero-content{

    margin:0;

    padding:0 20px 30px;

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

    font-size:1.8rem;

    line-height:1.15;

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

    letter-spacing:3px;

    font-size:.75rem;

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

    width:50px;

    margin-bottom:15px;
}
	.rooms-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;
}

}

.room-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;
    }
}

/* ==================================================
   03. DELUXE ROOM PREVIEW
================================================== */

.room-preview{
    padding:100px 0;
}

.room-preview-grid{

    display:grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap:70px;

    align-items:center;
}

.room-preview-image img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:16px;

    box-shadow:var(--shadow);
}

.room-preview-content{

    max-width:520px;
}

.room-preview-content h2{

    margin-bottom:20px;
}

.room-preview-meta{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;
}

.room-preview-meta span{

    background:var(--bg);

    padding:8px 14px;

    border-radius:30px;

    font-size:.85rem;

    color:var(--primary);

    font-weight:600;
}

.room-preview-content p{

    margin-bottom:25px;

    line-height:1.9;
}

.room-highlights{

    list-style:none;

    margin-bottom:30px;
}

.room-highlights li{

    margin-bottom:12px;

    padding-left:24px;

    position:relative;
}

.room-highlights li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:700;
}

.alternate .room-preview-grid{

    grid-template-columns:
        .9fr
        1.1fr;
}

.room-positioning{

    display:inline-block;

    margin:18px 0 12px;

    padding:8px 16px;

    background:#f4efe8;

    color:var(--primary);

    font-size:.8rem;

    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;

    border-radius:50px;
}

@media(max-width:768px){

    .room-preview{

        padding:80px 0;
    }

    .room-preview-grid{

        display:flex;

    flex-direction:column;

    gap:25px;
    }

    .room-preview-image img{

        height:260px;
    }

    .room-preview-content{

        max-width:100%;
    }
	
	.alternate .room-preview-grid{

        grid-template-columns:1fr;
    }
	

.alternate .room-preview-image{
    order:-1;
}
}

}


/* ==================================================
   07. INCLUDED IN EVERY ROOM
================================================== */

.room-amenities{

    padding:120px 0;
}

.amenities-grid{

    display:grid;

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

    gap:25px;
}

.amenity-item{

    background:#fff;

    padding:25px;

    border-radius:12px;

    text-align:center;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);

    font-weight:500;

    transition:.3s ease;
}

.amenity-item:hover{

    transform:translateY(-5px);
}

.amenity-item span{

    display:block;

    color:var(--primary);

    font-size:1.5rem;

    margin-bottom:10px;

    font-weight:700;
}

.amenities-note{

    text-align:center;

    margin-top:35px;

    color:#777;

    font-size:.95rem;
}

@media(max-width:768px){

    .room-amenities{

        padding:80px 0;
    }

    .amenities-grid{

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

        gap:15px;
    }

    .amenity-item{

        padding:18px;

        font-size:.9rem;
    }

}

/* ==================================================
   08. FAQ
================================================== */

.room-faq{

    padding:120px 0;

    background:var(--bg);
}

.faq-list{

    max-width:900px;

    margin:auto;
}

.faq-item{

    background:#fff;

    border-radius:12px;

    margin-bottom:15px;

    overflow:hidden;

    box-shadow:
    0 5px 20px rgba(0,0,0,.04);
}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:24px 30px;

    text-align:left;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:1rem;

    font-weight:600;

    color:#222;
}

.faq-question span{

    color:var(--primary);

    font-size:1.3rem;

    transition:.3s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;
}

.faq-answer p{

    padding:
        0
        30px
        25px;

    color:#666;

    line-height:1.8;
}

.faq-item.active .faq-answer{

    max-height:200px;
}

.faq-item.active .faq-question span{

    transform:rotate(45deg);
}

/* ==================================================
   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 rgba(255,255,255,.8);

    color:#fff;

    padding:14px 28px;

    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%;
    }

}