*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
}

/* NAVBAR */

header{
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(15,61,46,.96);
    backdrop-filter:blur(10px);
}

.logo{
    color:white;
    font-size:28px;
    font-weight:700;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#d4af37;
}

/* HERO */

.apartments-hero{
    height:55vh;
    position:relative;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.hero-content{
    position:relative;
    z-index:2;
    padding:20px;
}

.hero-content h1{
    font-size:55px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;
    line-height:1.7;
}

/* APARTMENTS */

.apartments{
    padding:90px 8%;
}

.apartments > h2{
    text-align:center;
    color:#0f3d2e;
    font-size:40px;
    margin-bottom:30px;
}

.apartments-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,380px));
    justify-content:center;
    gap:35px;
}

/* CARD */

.apartment-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    transition:.35s ease;
}

.apartment-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.16);
}

.apartment-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.card-content{
    padding:25px;
}

.rating{
    color:#b08a16;
    font-weight:600;
}

.card-content h3{
    color:#0f3d2e;
    font-size:26px;
    margin:12px 0 20px;
}

.features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-bottom:22px;
}

.features p{
    color:#666;
    font-size:14px;
}

.price{
    color:#0f7b46;
    font-size:21px;
    font-weight:700;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    padding:13px 28px;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s ease;
}

.btn:hover{
    transform:translateY(-3px);
    background:#c79b1d;
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:35px;
    }

    .navbar ul{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .apartments{
        padding:60px 5%;
    }

    .apartments > h2{
        font-size:32px;
    }

}
/* PINE VIEW DETAILS */

.property-details{
    max-width:1200px;
    margin:70px auto;
    padding:0 30px;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:50px;
    align-items:center;
}

.property-image{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.property-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.property-image:hover img{
    transform:scale(1.04);
}

.property-info{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.property-info .rating{
    color:#b08a16;
    font-weight:600;
}

.property-info h1{
    color:#0f3d2e;
    font-size:45px;
    margin:15px 0 5px;
}

.location{
    color:#777;
    margin-bottom:25px;
}

.description{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.property-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:35px;
}

.property-features div{
    background:#f5f7f5;
    padding:18px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:8px;
}

.property-features strong{
    color:#0f3d2e;
}

.property-features span{
    color:#666;
}

.property-bottom{
    border-top:1px solid #eee;
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.price-label{
    display:block;
    color:#888;
    font-size:13px;
}

.detail-price{
    color:#0f7b46;
    font-size:24px;
    font-weight:700;
}

.detail-price small{
    font-size:14px;
    color:#777;
    font-weight:400;
}

.property-bottom .btn{
    white-space:nowrap;
}

@media(max-width:768px){

    .property-details{
        grid-template-columns:1fr;
        margin:40px auto;
        padding:0 18px;
    }

    .property-image img{
        height:350px;
    }

    .property-info{
        padding:28px;
    }

    .property-info h1{
        font-size:35px;
    }

    .property-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}
/* PINE VIEW GALLERY */

.gallery-section{
    max-width:1200px;
    margin:80px auto;
    padding:0 30px;
}

.gallery-section h2{
    text-align:center;
    color:#0f3d2e;
    font-size:40px;
    margin-bottom:12px;
}

.gallery-subtitle{
    text-align:center;
    color:#777;
    max-width:650px;
    margin:0 auto 40px;
    line-height:1.7;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    grid-template-rows:250px 250px;
    gap:18px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.gallery-item.large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.06);
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .gallery-item.large{
        grid-row:auto;
    }

    .gallery-item{
        height:250px;
    }

    .gallery-section h2{
        font-size:32px;
    }

}
/* AMENITIES */

.amenities-section{
    background:#eef6f1;
    padding:90px 8%;
    margin-top:80px;
}

.amenities-section h2{
    text-align:center;
    color:#0f3d2e;
    font-size:40px;
    margin-bottom:12px;
}

.amenities-subtitle{
    text-align:center;
    color:#777;
    margin-bottom:45px;
}

.amenities-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.amenity{
    background:white;
    padding:30px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s ease;
}

.amenity:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}

.amenity span{
    font-size:38px;
    display:block;
    margin-bottom:15px;
}

.amenity h3{
    color:#0f3d2e;
    margin-bottom:10px;
}

.amenity p{
    color:#666;
    line-height:1.6;
}

@media(max-width:768px){

    .amenities-grid{
        grid-template-columns:1fr;
    }

    .amenities-section h2{
        font-size:32px;
    }

}
/* BOOKING SECTION */

.booking-section{
    background:#0f3d2e;
    color:white;
    padding:90px 8%;
    margin-top:80px;
}

.booking-content{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.booking-label{
    color:#d4af37;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.booking-content h2{
    font-size:42px;
    line-height:1.2;
    margin:15px 0 20px;
}

.booking-content p{
    color:#d8e1dd;
    max-width:600px;
    line-height:1.8;
}

.booking-location{
    margin-top:22px;
    color:#fff;
}

.booking-card{
    background:white;
    color:#333;
    padding:30px;
    border-radius:20px;
    min-width:300px;
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.booking-card > span{
    color:#777;
    font-size:14px;
}

.booking-card h3{
    color:#0f7b46;
    font-size:25px;
    margin:10px 0 22px;
}

.booking-card h3 small{
    color:#777;
    font-size:14px;
    font-weight:400;
}

.booking-card .btn{
    width:100%;
    text-align:center;
}

@media(max-width:768px){

    .booking-content{
        flex-direction:column;
        align-items:stretch;
    }

    .booking-content h2{
        font-size:34px;
    }

    .booking-card{
        min-width:0;
    }

}
.back-apartments{
    text-align:center;
    padding:35px 20px;
    background:#f5f5f5;
}

.back-apartments a{
    color:#0f3d2e;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.back-apartments a:hover{
    color:#b08a16;
}
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 8% 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #bbb;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: #bbb;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 45px;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 8% 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #bbb;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
}

.footer-contact p {
    color: #bbb;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 45px;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}
header {
    background: #0e2f26;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: white;
    font-size: 26px;
}

header nav {
    display: flex;
    gap: 28px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

header nav a:hover {
    color: #d4af37;
}
.gallery-item img {
    cursor: pointer;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.close-image {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 45px;
    cursor: pointer;
}
/* =========================================
   NESTORIA HILLS — BLACK THEME
   Detail Pages
   ========================================= */

body {
    background: #f5f5f5;
    color: #222;
}


/* MAIN PROPERTY AREA */

.property-details {
    background: #111;
}

.property-hero {
    background: #111;
}


/* PROPERTY CARD */

.property-info {
    background: #fff;
    color: #222;
}

.property-info h1 {
    color: #111;
}

.location {
    color: #666;
}

.description {
    color: #555;
}


/* RATING */

.rating {
    color: #111;
}


/* FEATURES */

.property-features > div {
    background: #f5f5f5;
    color: #222;
}

.property-features span {
    color: #666;
}


/* PRICE */

.price-label {
    color: #666;
}

.detail-price {
    color: #111;
}

.detail-price small {
    color: #666;
}


/* ALL BUTTONS */

.btn {
    background: #111;
    color: #fff;
}

.btn:hover {
    background: #333;
    color: #fff;
}


/* GALLERY */

.gallery-section {
    background: #fff;
    color: #222;
}

.gallery-section h2 {
    color: #111;
}

.gallery-subtitle {
    color: #666;
}


/* AMENITIES */

.amenities-section {
    background: #f5f5f5;
    color: #222;
}

.amenities-section h2 {
    color: #111;
}

.amenities-subtitle {
    color: #666;
}

.amenity {
    background: #fff;
    color: #222;
}

.amenity h3 {
    color: #111;
}

.amenity p {
    color: #666;
}


/* BOOKING */

.booking-section {
    background: #111;
    color: #fff;
}

.booking-section h2 {
    color: #fff;
}

.booking-section p {
    color: #ccc;
}

.booking-label {
    color: #d4af37;
}

.booking-location {
    color: #ccc;
}

.booking-card {
    background: #fff;
    color: #222;
}

.booking-card span {
    color: #666;
}

.booking-card h3 {
    color: #111;
}

.booking-card small {
    color: #666;
}


/* BACK TO APARTMENTS */

.back-apartments {
    background: #f5f5f5;
}

.back-apartments a {
    color: #111;
}

.back-apartments a:hover {
    color: #d4af37;
}


/* FOOTER */

.site-footer {
    background: #111;
    color: #fff;
}

.site-footer h2,
.site-footer h3 {
    color: #fff;
}

.site-footer p {
    color: #bbb;
}

.site-footer a {
    color: #bbb;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top-color: #333;
    color: #888;
}