@charset "utf-8";

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

.villa-hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    overflow:hidden;

}

.one-bedroom-page .villa-hero{
    background:
    url('../images/one-bedroom-pool-villa-hero.webp')
    center center/cover no-repeat;
}

.two-bedroom-page .villa-hero{
    background:
    url('../images/two-bedroom-pool-villa-hero.webp')
    center center/cover no-repeat;
}

/* ==========================
   OVERLAY
========================== */

.villa-hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(15,20,15,0.65) 0%,
   rgba(15,20,15,0.52) 35%,
rgba(15,20,15,0.22) 70%,
rgba(15,20,15,0.02) 100%
    );
}

/* ==========================
   CONTENT
========================== */

.villa-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
	padding-top:120px;
}

.hero-label{
    display:inline-block;

    font-size:12px;
    letter-spacing:4px;
    opacity:.85;

    text-transform:uppercase;

    margin-bottom:30px;

    opacity:.85;
}

.villa-hero h1{
    font-size:58px;
    line-height:1.05;
    max-width:650px;
	font-family: 'Cormorant Garamond',serif;
	text-shadow:
        0 3px 12px rgba(0,0,0,.18);
	margin-bottom:30px;
}

.villa-hero p{
    max-width:580px;

    font-size:18px;

    line-height:1.9;
	text-shadow:
        0 2px 8px rgba(0,0,0,.12);

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

    margin-bottom:10px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:25px;
	margin-top:35px;
}

.hero-facts{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    align-items:center;

    margin-top:10px;

    color:
    rgba(203, 233, 136, 0.88);
    font-size:16px;

    letter-spacing:.5px;
}

.hero-fact{
    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(8px);

    border:
    1px solid rgba(255,255,255,.10);

    border-radius:15px;

    padding:10px;

    text-align:center;
}

.hero-fact strong{
    display:block;
    margin-bottom:5px;
    font-size:16px;
    color:#fff;
}

.hero-fact{
    font-size:14px;

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

/* ===============================
   HERO TRUST
================================= */

.hero-trust{
    margin-top:22px;
}

.hero-rating{
    display:inline-block;
    margin-bottom:2px;
    font-size:14px;
    font-weight:500;
    letter-spacing:.5px;
    color:#f2e3b2; /* soft gold */
}

.hero-benefits{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:0;
	margin-bottom:30px;
}

.hero-benefits span{
    position:relative;
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,.88);
}

/* separator */

.hero-benefits span:not(:last-child)::after{
    content:"•";
    margin:0 14px;
    color:rgba(255,255,255,.45);
}

@media(max-width:768px){

.villa-hero{
        min-height:85svh;
        padding:120px 0 140px;
    }

.villa-hero-content{
    text-align:center;
	padding-top:10px;
}

.villa-hero h1{
font-size:38px;
    line-height:1.15;
}

.villa-hero p{
    font-size:16px;
    line-height:1.8;
}
	
.hero-label{
    display:none;
}

.hero-buttons{
    display:none;
}

.hero-facts{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:20px;
	color: #fff;
}

.hero-facts span:nth-child(even){
    display:none;
}
	
	.hero-trust{
        margin-top:28px;
    }

    .hero-rating{
        font-size:14px;
        margin-bottom:12px;
    }

    .hero-benefits{
        display:block;
    }

    .hero-benefits span{
        display:block;
        margin-bottom:6px;
        font-size:14px;
    }

    .hero-benefits span::before{
        content:"✓ ";
        color:#d9c27c;
    }

    .hero-benefits span::after{
        display:none;
    }
}

/* =====================================
   VILLA INTRO
===================================== */

.villa-intro{
    padding:120px 0;
	background: #fff;
}

.villa-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.villa-intro-image{
    border-radius:35px;
    overflow:hidden;
}

.villa-intro-image img{
    width:100%;
    display:block;
    border-radius:35px;
}

.villa-intro-content{
    max-width:660px;
}

.villa-intro-content h2{
    margin:10px 0 20px;
	font-family: 'Cormorant Garamond',serif;
	font-size: 48px;
	line-height: 1.3;
}

.intro-lead{
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
    color:var(--heading-color);
}

.villa-intro-content p{
    margin-bottom:15px;
    line-height:1.9;
}

.intro-highlights{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:45px;
}

.highlight-item{
    padding:18px 20px;
    border:1px solid #ececec;
    border-radius:16px;
    background:#fff;
    font-size:15px;
}

@media(max-width:992px){

    .villa-intro{
        padding:90px 0;
    }

    .villa-intro-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .villa-intro-content{
        max-width:100%;
    }
	
	.villa-intro-content h2{
	font-size: 38px;
	line-height:1.2;
}

    .intro-highlights{
        grid-template-columns:1fr;
    }

}

/* WHY STAY SECTION */

.villa-why{
    padding:100px 0;
    background:#faf9f7;
}

.villa-why .container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.villa-why h2{
    margin-top:15px;
    margin-bottom:25px;
	font-family: 'Cormorant Garamond',serif;
	font-size: 48px;
}

.why-lead{
    font-size:1.15rem;
    line-height:1.8;
    color:#333;
    max-width:760px;
    margin:0 auto 20px;
}

.why-text{
    color:#666;
    line-height:1.9;
    max-width:760px;
    margin:0 auto 50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.why-item{
    background:#fff;
    padding:22px 24px;
    border-radius:14px;
    text-align:left;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    transition:.3s;
    line-height:1.7;
}

.why-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

@media(max-width:992px){

    .villa-why h2{
	font-size: 38px;
	line-height:1.2;
}
	.why-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:20px;
}
}

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

.section-header{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.section-header .section-label{
    display:block;
    margin-bottom:18px;
}

.section-header h2{
    max-width:700px;
    margin:0 auto 25px;

    font-size:48px;
    line-height:1.2;
    font-family:'Cormorant Garamond', serif;
}

.section-header p{
    max-width:650px;
    margin:0 auto;
    line-height:1.8;
    color:#666;
}

.villa-gallery{
    padding:120px 0;
}

.villa-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

/* CARD */

.gallery-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:28px;
    aspect-ratio:1.25;
}

/* IMAGE */

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:
    transform .8s ease,
    filter .8s ease;
}

/* OVERLAY */

.gallery-card::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.05) 45%,
        transparent
    );

    opacity:.85;
    transition:.4s;
}

/* HOVER */

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

.gallery-card:hover::after{
    opacity:1;
}

/* CAPTION */

.gallery-caption{
    position:absolute;
    left:28px;
    bottom:24px;

    z-index:2;

    display:flex;
    align-items:center;
    gap:14px;

    color:#fff;
}

.gallery-number{
    font-size:44px;
    font-family:'Cormorant Garamond',serif;
    line-height:1;
}

.gallery-title{
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* BUTTON */

.gallery-button{
    text-align:center;
    margin-top:60px;
}

@media(max-width:992px){

    .villa-gallery-grid{
        grid-template-columns:1fr 1fr;
        gap:18px;
    }
	
	.section-header h2{
    font-size:38px;
    line-height:1.2;
}

}

@media(max-width:576px){

    .villa-gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        aspect-ratio:1.3;
    }

    .gallery-number{
        font-size:34px;
    }

}

/* =====================================
   FEATURES
===================================== */

.villa-features{
    padding:120px 0;
	background: #fff;
}

.features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.features-card{
    background:#fff;
    border:1px solid #ece8e1;
    border-radius:30px;
    padding:50px;
}

.features-card h3{
    margin-bottom:35px;
}

.features-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.features-card li{
    padding:14px 0;
    border-bottom:1px solid #f1f1f1;
    font-size:16px;
    color:var(--text-color);
}

.features-card li:last-child{
    border-bottom:none;
}

@media(max-width:992px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .features-card{
        padding:35px;
    }

}

/* =====================================
   BOOKING CTA
===================================== */

.villa-booking{
    padding:120px 0;
    background:#faf8f4;
}

.booking-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.booking-content{
    max-width:550px;
}

.booking-content h2{
    margin:20px 0 30px;
	font-family: 'Cormorant Garamond',serif;
	font-size: 38px;
    line-height:1.2;
}

.booking-content p{
    margin-bottom:40px;
}

.booking-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.booking-benefits{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.benefit-item{
    background:#fff;
    border:1px solid #ece8e1;
    border-radius:20px;
    padding:25px;
    font-size:15px;
    line-height:1.7;
    transition:.3s;
}

.benefit-item:hover{
    transform:translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

@media(max-width:992px){

    .booking-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .booking-content{
        max-width:100%;
        text-align:center;
		
    }

    .booking-buttons{
        justify-content:center;
    }

    .booking-benefits{
        grid-template-columns:1fr;
    }

}

/* ======================================
   FAQ
====================================== */

.villa-faq{
    padding:120px 0;
	background: #fff;
}

.faq-grid{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border-bottom:1px solid #ece8e1;
}

.faq-question{
    width:100%;
    background:none;
    border:none;

    padding:30px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    text-align:left;

    font-size:20px;
    font-weight:500;

    cursor:pointer;

    color:var(--heading-color);
}

.faq-question span{
    font-size:32px;
    font-weight:300;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding-bottom:30px;
    color:var(--text-light);
    line-height:1.9;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .villa-faq{
        padding:90px 0;
    }

    .faq-question{
        font-size:18px;
        line-height:1.5;
    }

}

/* ======================================
   OTHER VILLAS
====================================== */

.other-villas{
    padding:120px 0;
    background:#faf8f4;
}

.other-villas-grid{
    max-width:950px;
    margin:auto;
}

.other-villa-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

    background:#fff;
    border-radius:35px;
    overflow:hidden;

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

.other-villa-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.other-villa-content{
    padding:60px;
}

.card-label{
    display:block;

    font-size:12px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:var(--primary-dark);

    margin-bottom:20px;
}

.other-villa-content h3{
    margin-bottom:25px;
}

.other-villa-content p{
    margin-bottom:30px;
}

.villa-info{
    margin-bottom:35px;

    color:#777;

    font-size:14px;
}

@media(max-width:992px){

    .other-villa-card{
        grid-template-columns:1fr;
        gap:0;
    }

    .other-villa-content{
        padding:40px 30px;
    }

}

/* ======================================
   FINAL CTA
====================================== */

.final-cta{
    position:relative;

    padding:140px 0;

    overflow:hidden;

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

.final-cta-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(15,20,15,.58) 0%,
        rgba(15,20,15,.45) 35%,
        rgba(15,20,15,.20) 70%,
        rgba(15,20,15,.05) 100%
    );
}

.final-cta-content{
    position:relative;
    z-index:2;

    max-width:700px;

    margin:auto;

    text-align:center;

    color:#fff;
}

.final-cta-content h2{
    color:#fff;
	font-size: 58px;
    font-family: 'Cormorant Garamond',serif;
    margin:
    20px 0
    30px;
}

.final-cta-content p{
    max-width:620px;

    margin:
    0 auto
    45px;

    line-height:1.9;

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

.final-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@media(max-width:768px){

    .final-cta{
        padding:100px 0;
    }

    .final-cta-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:16px;
    }

    .final-cta-buttons a{
        width:min(100%,320px);
        margin:0 auto;
    }
	
	.final-cta-content h2{
    color:#fff;
	font-size: 38px;
	line-height: 50px;
}

}


