@import url('https://fonts.googleapis.com/css2?family=Brygada+1918:ital,wght@1,400;1,500;1,700&family=Inter:wght@400;500;700&family=Noto+Serif+Display:ital,wght@1,400;1,500;1,700&family=Poppins:ital,wght@0,500;1,300;1,400;1,600&family=Rubik:wght@400;500;600;700&display=swap');


/* 
--- 01TYPOGRAPHY
font size
10, 12, 14, 16, 18, 20, 24, 30, 36, 44, 52, 62, 74, 86, 98.
*/


/*
Spacing system  (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 /80 / 96 / 128.

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow: hidden; */
    scroll-behavior: smooth;
}

:root {
    font-size: 62.5%;
    /* font-size: 10px; */
    /* --background-color: #999; */
    --primary: #fff;
    --color: #ffd700;
    --bold: 600;
}

body {
    font-family: 'Poppins' sans-serif;
    /* overflow: hidden; */
    background-color: #f1f3f5;
}

/* ******************** */
/* General useable */
/* ******************** */
.container {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 3.8rem;
}

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

.grid-colomn-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-colomn-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-colomn-5 {
    grid-template-columns: repeat(5, 1fr);
}

.primary-name {
    font-size: 2.2rem;
    font-weight: var(--bold);
    text-align: center;
    color: #495057;
    /* text-transform: uppercase; */
}

.btn {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    transition: all 2s ease;
    background-color: #c9af1c;
}

/* STICKY */

.sticky .header {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 10rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(255, 255, 255, 0.537);
}

.sticky .hero-section {
    margin-top: 9.6rem;
}




/* *********************** */
/* HEADER SECTION */
/* *********************** */

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

    padding: 4rem;
    position: relative;

}

/* .head {
    display: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 0;
    padding-bottom: 0;

    background-color: rgba(235, 212, 81, 0.693);
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(255, 255, 255, 0.537);
} */

.header-img {
    height: 4rem;
    /* border-radius: 10px; */
}



.apart-name-1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.apartment-name {
    font-size: 2.4rem;
    text-transform: uppercase;
    background: conic-gradient(gold, green, orange, yellow);
    background-clip: text;
    color: transparent;
    background-size: 20rem 20rem;
    animation: rgb 4s infinite linear;

}

@keyframes rgb {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 0 100%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.nav-link-list {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    /* justify-content: space-around; */
    list-style: none;
}

.nav-link:link,
.nav-link:visited {
    display: inline-block;
    font-size: 1.8rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    transition: all 3s ease;

}

.nav-link:active,
.nav-link:hover {
    color: #c9af1c;
    /* border-bottom: 4px solid #ffd700;
    color: #ffffffa2; */
}

.link2 {
    background-color: #c9af1c;
    padding: 1.2rem 2.4rem;
    border-radius: 10px;
}

.link2:hover {
    background-color: #ffd700;
    color: #000;
}

/* **************** */
/* MOBILE */
/* **************** */

.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}

.icon-mobile-nav {
    width: 4.4rem;
    height: 4.4rem;
    color: #333;

}

.icon-mobile-nav[name="close-outline"] {
    display: none;

}


/* **************** */
/* HERO-SECTION */
/* **************** */

.hero-section {
    background: url(img/phases/LA-56.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    /* padding: 0 2rem 0 2rem; */


    max-width: 140rem;
    width: 100%;
    margin: 0 auto;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;

    display: flex;
    align-items: center;


    filter: grayscale(60%);

}

.hero-main {
    padding-left: 3rem;
}

.hero-name {
    font-size: 3.4rem;
    font-weight: var(--bold);
    text-transform: uppercase;
    color: #000;

    line-height: 1.3;


    background: conic-gradient(gold, green, orange, yellow);
    background-clip: text;
    color: transparent;
    background-size: 20rem 20rem;
    animation: rgb 4s infinite linear;

}


.hero-btn {
    margin-top: 3rem;
    font-size: 1.8rem;
    padding: 0.9rem 1.4rem;
    background-color: #ffd700;
    border-radius: 10px;
    color: #000;
}

.hero-btn:hover,
.hero-btn:active {
    background-color: #a48b00;
    color: #fff;

}

/* ***************** */
/* ARTICLE-SECTION */
/* ***************** */

.article {
    padding: 4rem 0 3rem 0;
}

.article-main {
    display: flex;
    align-items: center;
    /* gap: 1.2rem; */
    justify-content: space-between;
}

.article-list {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border: 2px solid #f8d50c73;
    font-size: 1rem;
}

/* .article-list {} */

/* .article-name {} */



/* ************** */
/* ABOUT SECTION */
/* ************** */
.about-section {
    padding: 3.2rem 0 3.2rem 0;

}

.about-main-sub {
    display: flex;
    justify-content: center;
    gap: 8.6rem;
    max-width: 120rem;
    background-color: #ced4da;
    border-radius: 20px;
    padding-left: 86px;
    margin: 0 auto;
    padding: 20px;

}

/* .about-main {

    max-width: 700px;

} */

.img-about {
    height: 300px;
    border-radius: 10px;
    transform: scaleY(1.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    filter: grayscale(60%);
}

.about-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}



.about-sub {
    font-size: 3rem;
    font-weight: var(--bold);
    color: #343a40;
}

.about-text-list {
    margin-top: 1.4rem;
    padding-right: 2.4rem;

}

.about-text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    color: #343a40;

}

.about-text::first-letter {
    text-transform: uppercase;
}

.about-btn:link,
.about-btn:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 1.6rem;
    margin-top: 1rem;
    color: #000;
    border-radius: 20px;
    padding: 1.2rem 2rem;
    background-color: #c9af1c;
}

.about-btn:hover,
.about-btn:active {
    color: #fff;
    background-color: #ffd700;
    /* border-bottom: 2px solid #000; */
}


/* ******************* */
/* BENEFIT SECTION */
/* ******************* */

.benefit-section {
    padding: 6.4rem 0 3rem 0;
    /* background-color: #ffd700; */
}



.benefit-content {
    padding: 1.2rem 0 2rem 0;


    margin-top: 3.2rem;
}

.benefit-main-list {
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.075);

    overflow: hidden;
    transition: all 3s;
}

.benefit-main-list:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.075);
}

.benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    padding: 1.4rem;
    background-color: #ffd700;
    border-radius: 50%;
}


.benefit-main-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;


}

.benefit-text {
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.5px;

}


/* ********************* */
/* APARTMENT SECTION */
/* ********************* */

.apartment-section {
    padding: 3rem 0 4.8rem 0;
}

.apartments {
    flex: 1 0 8;
}



.apartment-text {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
}

.apartment-phase-name {
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 600;
}

.apartment-phase {
    margin-top: 1rem;
    border-radius: 10px;

    /* background-color: #ffd700; */

}

.apartment {
    padding: 1.4rem 1rem;
    box-shadow: 1.4rem 1.4rem 2rem rgba(0, 0, 0, 0.075);
    /* box-shadow: 0 24px 2rem rgba(0, 0, 0, 0.075); */
    text-align: center;

    transition: all 2s ease;

}

.apartment:hover {
    transform: translateY(-10px);
}

.apartment-img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    transition: all 2s ease;
    overflow: hidden;
    object-fit: cover;

}




.apart-rp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.apartment-sub1 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-align: end;
}

.apartment-icon {
    font-size: 2rem;
    padding: 1rem;
    background-color: gold;
    border-radius: 50%;
}

.apartment-sub2 {
    font-size: 1.4rem;
    text-align: start;
    text-transform: uppercase;
}



.phase-link:link,
.phase-link:visited {
    text-align: center;
    display: block;
    font-size: 1.6rem;
    text-decoration: none;
    color: #000;
    margin: 2rem 0 3rem 0;
    text-transform: uppercase;
    text-decoration: underline;
    /* background-color: #c9af1c; */

}

.phase-link:hover,
.phase-link:active {
    text-decoration: underline;
    color: gold;

}

.apart4 {
    filter: grayscale(70%);
}

.fagara {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
    margin-top: 1rem;
}




/* ************************ */
/* facility-section */
/* ************************ */
.facility-section {
    padding: 4.8rem 0 3rem 0;
    background-color: #e9ecef;
}

.facility-lists {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* align-items: center; */
}

.facility-name {
    font-size: 1.8rem;
    margin: 3rem 0 2rem 0;
    /* margin-bottom: 2rem; */
    font-weight: 600;
}

.facility-lists li {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

/* 
.facility-lists li[ion-icon] {
    color: #a48b00
} */

/* **************** */
/* SERVICE SECTION */
/* **************** */

.service-section {
    padding: 4.8rem 0 3rem 0;
}

.service {
    background: linear-gradient(to bottom left, #ffd8a8, #adb5bd 50%, #ffd700 75%, #e9d461a0 75%);

    padding: 3rem 0 6.2rem 0;

}

.service-all {
    text-align: center;

}

.service-name {
    font-size: 7.4rem;
    text-align: center;
}

.servive-feature-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem;
    align-items: center;
    text-align: center;
}

.service-icon {
    font-size: 6.2rem;
    margin-bottom: 2rem;
    color: #6e5f07;
}

.service-text {
    font-size: 1.8rem;
}



/* ************ */
/* MINI MARKET */
/* ************ */

.mini-market {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.6rem;
    align-items: center;
}

.mini-img {
    width: 100%;
    min-height: 400px;
}

.mini-p {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 0.9rem;
}

.mini-sub {
    font-size: 4.2rem;
    font-weight: 600;
}



/* ************ */
/* CTA SECTION */
/* ************ */
.cta-section {
    padding: 4.8rem 0 3rem 0;
}

.cta {
    padding: 0 4rem;
}

.cta-name {
    font-size: 4rem;
    text-align: center;
}

.cta-cta {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.6rem;
    /* align-items: center;
    justify-content: center; */
}

.cta-main {
    /* justify-self: center; */
    margin-top: 3.2rem;
    padding: 3rem 1.5rem;
    background-color: #ced4da;
}

.cta-main-name {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-sub {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 1.8rem;
    margin-bottom: 1rem;
}

.cta-icon {
    font-size: 2.8rem;
}

.cta-text {
    font-size: 1.4rem;
}


.map {
    /* display: flex;
    flex-wrap: wrap; */
    margin: 3.2rem 0 0 0;
    text-align: center;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.map-name {
    font-size: 3rem;
    margin-bottom: 2rem;
}


/*****************************/
/* FOOTER*/
/*****************************/
.footer {
    padding: 12rem 0;
    border-top: 2px solid gold;
}

.grid--5--colos {
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
}

.logo-col {
    display: flex;
    flex-direction: column;
}

.logo-col a {
    margin-bottom: 2.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #000;
}

.logo-col p {
    font-weight: 600;
    /* font-size: 1.6rem; */
    text-transform: uppercase;
}

.logo-col .logo {
    height: 3rem;
    border-radius: 50%;
}

.social-link {
    list-style: none;
    display: flex;
    gap: 2.4rem;
    /* margin-top: auto; */

}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.copyright {
    font-size: 1.6rem;
    /* margin-top: auto; */
    line-height: 1.8;
}

.address {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #676767;
    margin-bottom: 2rem;
}


.contact-list {
    font-size: 1.8rem;
    text-decoration: none;
    line-height: 2.1rem;
    color: #676767;

}

.footer-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-link:link,
.footer-link:visited,
.footer-icon:link,
.footer-icon:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #676767;
    font-weight: 500;
}


.author {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}