/* =========================================
   GLOBAL SETTINGS
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#333;

    line-height:1.6;

}


html{

    scroll-behavior:smooth;

}



img{

    max-width:100%;

    display:block;

}



/* =========================================
   HEADER / FLOATING CENTER NAVIGATION
========================================= */


header{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    padding:35px 20px;

    z-index:1000;

    text-align:center;

}



.logo img{

    width:220px;

    margin:auto;

    transition:.3s ease;

}



.logo img:hover{

    transform:scale(1.05);

}



/* Navigation */

nav{

    margin-top:30px;

}



nav ul{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    list-style:none;

    flex-wrap:wrap;

}



nav a{

    color:white;

    text-decoration:none;

    text-transform:uppercase;

    font-size:14px;

    letter-spacing:1.5px;

    font-weight:500;

    transition:.3s ease;

}



nav a:hover{

    color:#c7a35a;

}



/* =========================================
   HERO SECTION
========================================= */


.hero{

    height:100vh;

    min-height:650px;

    background:

    linear-gradient(

    rgba(0,0,0,.45),

    rgba(0,0,0,.45)

    ),

    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}



.hero-content{

    max-width:900px;

    padding:20px;

}



.hero h1{

    font-size:70px;

    font-weight:600;

    margin-bottom:20px;

}



.hero p{

    font-size:24px;

    margin-bottom:40px;

}



/* =========================================
   BUTTONS
========================================= */


.button{

    display:inline-block;

    background:#c7a35a;

    color:white;

    padding:15px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:500;

    transition:.3s ease;

}



.button:hover{

    background:#a9853d;

    transform:translateY(-3px);

}




button{

    background:#c7a35a;

    color:white;

    border:none;

    padding:15px 35px;

    border-radius:30px;

    cursor:pointer;

    font-size:16px;

}



/* =========================================
   HOME INTRO
========================================= */


.intro{

    padding:100px 15%;

    text-align:center;

}



.intro h2{

    font-size:42px;

    margin-bottom:25px;

}



.intro p{

    font-size:18px;

}



/* =========================================
   INTERNAL PAGES
========================================= */


.page{

    padding:

    220px 10% 100px;

    text-align:center;

}



.page h1{

    font-size:55px;

    margin-bottom:40px;

}



/* =========================================
   CARDS
========================================= */


.cards{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

}



.card{

    background:white;

    padding:30px;

    width:330px;

    border-radius:15px;

    box-shadow:

    0 15px 40px rgba(0,0,0,.12);

    transition:.3s ease;

}



.card:hover{

    transform:translateY(-10px);

}



.card img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:10px;

}



.card h2{

    margin:20px 0 10px;

}




/* =========================================
   PROPERTY IMAGES
========================================= */


.property-image{

    width:600px;

    margin:40px auto;

    border-radius:15px;

}



/* =========================================
   CONTACT FORM
========================================= */


form{

    max-width:600px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}



input,

textarea{

    padding:18px;

    border:

    1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    font-family:inherit;

}



textarea{

    resize:none;

    height:180px;

}



/* =========================================
   FOOTER
========================================= */


footer{

    background:#111;

    color:white;

    text-align:center;

    padding:40px;

}



/* =========================================
   MOBILE DESIGN
========================================= */


@media(max-width:900px){


header{

    padding-top:20px;

}


.logo img{

    width:170px;

}



nav ul{

    gap:20px;

}



nav a{

    font-size:12px;

}



.hero h1{

    font-size:42px;

}



.hero p{

    font-size:18px;

}



.page h1{

    font-size:38px;

}



}



@media(max-width:600px){


nav ul{

    flex-direction:column;

    gap:15px;

}



.hero{

    height:850px;

}



.intro{

    padding:60px 25px;

}



.card{

    width:100%;

}



}