/* =========================
   GLOBAL CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F5EBDD;
    color:#262626;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:999;
}

.nav-wrapper{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:22px;
    padding:18px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.logo img{
    height:58px;
}

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    color:#262626;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#FF6F00;
}

.visit-btn{
    background:#FF6F00;
    color:#fff;
    padding:14px 26px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(255,111,0,0.3);
}

.visit-btn:hover{
    transform:translateY(-4px);
    background:#1f493d;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    min-height:100vh;
    background:
    linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.45)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-content{
    max-width:760px;
    color:#fff;
}

.hero-subtitle{
    color:#FF6F00;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:18px;
    font-weight:500;
}

.hero h1{
    font-size:74px;
    line-height:1.1;
    margin-bottom:25px;
    font-family:'Outfit',sans-serif;
    font-weight:700;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.85);
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#FF6F00;
    color:#fff;
    padding:18px 34px;
    border-radius:16px;
    font-weight:600;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(255,111,0,0.35);
}

.primary-btn:hover{
    transform:translateY(-5px);
    background:#1f493d;
}

.secondary-btn{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:18px 34px;
    border-radius:16px;
    transition:0.4s ease;
}

.secondary-btn:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.18);
}

/* =========================
   COUNTDOWN CARD
========================= */

.countdown-card{
    margin-top:45px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    backdrop-filter:blur(10px);
    padding:28px;
    border-radius:24px;
    width:280px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.countdown-card h3{
    font-size:18px;
    margin-bottom:15px;
    color:#fff;
}

#timer{
    font-size:58px;
    color:#FF6F00;
    font-weight:700;
    font-family:'Outfit',sans-serif;
}

/* =========================
   STATS SECTION
========================= */

.stats{
    margin-top:-90px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.stat-card{
    background:#fff;
    padding:40px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 15px 50px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h2{
    font-size:52px;
    color:#1f493d;
    margin-bottom:10px;
    font-family:'Outfit',sans-serif;
}

.stat-card p{
    color:#666;
    font-size:16px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#FF6F00;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:52px;
    margin-top:15px;
    color:#1f493d;
    font-family:'Outfit',sans-serif;
}

/* =========================
   PROPERTIES
========================= */

.properties{
    padding:120px 0;
}

.property-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.property-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.property-card:hover{
    transform:translateY(-10px);
}

.property-image{
    height:280px;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.property-card:hover img{
    transform:scale(1.08);
}

.property-content{
    padding:30px;
}

.property-content h3{
    font-size:28px;
    margin-bottom:12px;
    color:#1f493d;
    font-family:'Outfit',sans-serif;
}

.property-content p{
    color:#666;
    margin-bottom:20px;
}

.property-price{
    color:#FF6F00;
    font-size:24px;
    font-weight:700;
}

/* =========================
   ABOUT SECTION
========================= */

.about{
    padding:120px 0;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.about-content span{
    color:#FF6F00;
    font-weight:600;
    letter-spacing:2px;
}

.about-content h2{
    font-size:56px;
    margin:20px 0;
    color:#1f493d;
    font-family:'Outfit',sans-serif;
}

.about-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#1f493d;
    color:#fff;
    padding-top:90px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-logo{
    height:70px;
    margin-bottom:20px;
}

.footer-about p{
    color:rgba(255,255,255,0.7);
    line-height:1.8;
}

.footer-links h4,
.footer-contact h4{
    margin-bottom:25px;
    font-size:20px;
}

.footer-links a{
    display:block;
    color:rgba(255,255,255,0.75);
    margin-bottom:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#FF6F00;
}

.footer-contact p{
    color:rgba(255,255,255,0.75);
    margin-bottom:12px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:22px;
    color:rgba(255,255,255,0.7);
}

/* =========================
   INNER PAGES
========================= */

.inner-hero{
    padding:220px 0 120px;
    text-align:center;
    background:#1f493d;
    color:#fff;
}

.inner-hero h1{
    font-size:64px;
    font-family:'Outfit',sans-serif;
    margin-bottom:15px;
}

.page-content{
    padding:100px 0;
}

.page-content p{
    line-height:1.9;
    margin-bottom:25px;
    color:#555;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .hero h1{
        font-size:58px;
    }

    .property-grid{
        grid-template-columns:1fr 1fr;
    }

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .nav-wrapper{
        padding:15px 20px;
    }

    .nav-menu{
        display:none;
    }

    .visit-btn{
        padding:12px 18px;
        font-size:13px;
    }

    .hero{
        padding:140px 0 80px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-btns{
        flex-direction:column;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .property-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-content h2{
        font-size:40px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .inner-hero h1{
        font-size:42px;
    }

}

@media(max-width:500px){

    .hero h1{
        font-size:34px;
    }

    .countdown-card{
        width:100%;
    }

    #timer{
        font-size:44px;
    }

}