*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:Arial,Helvetica,sans-serif;
    background:#f4f6fa;
    color:#222;

}


.container{

    width:95%;
    max-width:1400px;
    margin:auto;

}


/* HEADER */

header{

    height:90px;
    position:absolute;
    top:0;
    width:100%;
    z-index:100;

    background:rgba(13,78,165,.85);

}


.header-container{

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

}


.logo img{

    height:55px;

}


/* HAMBURGER */

nav{

    position:relative;

}


.menu-toggle{

    background:none;
    border:none;
    cursor:pointer;

    display:flex;
    flex-direction:column;
    gap:7px;

    padding:10px;

}


.menu-toggle span{

    width:32px;
    height:3px;

    background:white;

    border-radius:5px;

}



/* OPEN MENU */

.menu-panel{

    display:none;

    position:absolute;

    top:60px;
    right:0;

    width:280px;

    padding:25px;


    background:rgba(13,78,165,.20);

    backdrop-filter:blur(8px);


    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}


.menu-panel a{

    display:block;

    color:white;

    text-decoration:none;

    font-size:18px;

    font-weight:bold;

    padding:15px 5px;

    border-bottom:1px solid rgba(255,255,255,.25);

}


.menu-panel a:last-child{

    border-bottom:none;

}



/* HERO */

.hero{

    height:650px;

    background:url("../images/hero/grensfoto.png");

    background-size:cover;

    background-position:center;

}


.overlay{

    background:rgba(0,0,0,.45);

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

}


.hero-content{

    text-align:center;

    color:white;

}


.hero-content h1{

    font-size:58px;

    margin-bottom:25px;

}


.hero-content p{

    font-size:24px;

    margin-bottom:35px;

}



/* ZOEKBOX */

.search-box{

    display:flex;

    width:700px;

    max-width:95%;

    margin:auto;

    background:rgba(255,255,255,.25);

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);

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

    border-radius:60px;

    overflow:hidden;

}

.search-box input{

    flex:1;

    padding:22px;

    font-size:20px;

    color:white;

    background:transparent;

    border:none;

    outline:none;

}

.search-box input::placeholder{

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

}

.search-box button{

    width:180px;

    border:none;

    background:#FF7300;

    color:white;

    font-size:20px;

    cursor:pointer;

}



/* WONINGEN */

.section-title{

    font-size:40px;

    margin:70px 0 40px;

    color:#0D4EA5;

}


.property-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-bottom:70px;

}


.property-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

}


.property-image{
    height:320px;
    overflow:hidden;
}

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

.property-info{

    padding:30px;

}


.price{

    font-size:38px;
    font-weight:bold;
    color:#FF7300;
    margin-bottom:15px;

}

.price-period{

    font-size:18px;
    color:#0D4EA5;
    font-weight:600;

}

.property-info h3{

    font-size:30px;

    margin-bottom:10px;

    color:#0D4EA5;

}


.property-info a{

    display:inline-block;

    margin-top:25px;

    background:#0D4EA5;

    color:white;

    padding:14px 28px;

    border-radius:12px;

    text-decoration:none;

}



/* FOOTER */

footer{

    background:#0D4EA5;

    padding:35px;

    text-align:center;

    color:white;

}



/* MOBIEL */

@media(max-width:768px){


    header{

        height:75px;

    }


    .header-container{

        height:75px;

    }


    .logo img{

        height:40px;

    }


    .menu-panel{

        top:50px;

        right:0;

        width:260px;

    }


    .hero{

        height:550px;

    }


    .hero-content{

        padding:20px;

    }


    .hero-content h1{

        font-size:34px;

        line-height:1.2;

    }


    .hero-content p{

        font-size:18px;

    }


    .search-box{

    width:90%;
    max-width:360px;
    margin:auto;

    flex-direction:column;

    border-radius:20px;

}


    .search-box input{

        padding:18px;

        font-size:16px;

    }


    .search-box button{

        width:100%;

        padding:18px;

    }


    .section-title{

        font-size:30px;

        margin:40px 0 25px;

    }


    .property-grid{

        grid-template-columns:1fr;

        gap:25px;

    }


    .property-image{

        height:220px;

    }


    .property-info{

        padding:20px;

    }


}