/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

/* ==========================================
   HEADER
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 70px;

    background:rgba(0,0,0,.25);
    backdrop-filter:blur(12px);

    z-index:1000;

    transition:.35s;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#b87333;
}

/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

    z-index:-1;
}

.hero-content{

    max-width:1100px;

    text-align:center;

    color:white;

    padding:0 25px;
}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;
}

.hero p{

    font-size:28px;

    margin-bottom:45px;

    font-weight:300;
}

/* ==========================================
   BUTTON
========================================== */

.button{

    display:inline-block;

    background:#b87333;

    color:white;

    text-decoration:none;

    padding:18px 42px;

    border-radius:8px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;
}

.button:hover{

    background:#95571e;

    transform:translateY(-3px);
}

/* ==========================================
   STANDARD-SEKTIONEN
========================================== */

section:not(.hero){

    padding:110px 70px;
}

h2{

    font-size:46px;

    margin-bottom:25px;
}

p{

    font-size:18px;

    line-height:1.8;
}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#1f1f1f;

    color:white;

    text-align:center;

    padding:40px 20px;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

header{

    padding:20px 30px;
}

nav{

    gap:20px;
}

.hero h1{

    font-size:52px;
}

.hero p{

    font-size:22px;
}

}

/* ==========================================
   HANDY
========================================== */

@media(max-width:768px){

header{

    flex-direction:column;

    gap:15px;

    padding:20px;
}

nav{

    flex-wrap:wrap;

    justify-content:center;
}

.hero h1{

    font-size:38px;
}

.hero p{

    font-size:20px;
}

.button{

    padding:16px 28px;
}

section:not(.hero){

    padding:80px 25px;
}

}<div class="coming-soon">
    <span>🚧</span>
    <h3>Website befindet sich aktuell im Aufbau</h3>
    <p>
        Ich arbeite derzeit an meiner neuen Website.
        Termine, Besichtigungen und Anfragen nehme ich selbstverständlich
        bereits entgegen.
    </p>
</div>