/* =====================================
   HUFREBELL STYLE
===================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f1ea;
    color:#222;
    overflow-x:hidden;
}

/* =====================================
   HEADER
===================================== */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.container{
    max-width:1450px;
    margin:auto;
    padding:25px 70px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

/* =====================================
   LOGO
===================================== */

.logo img{
    width:260px;
    display:block;
}

/* =====================================
   NAVIGATION
===================================== */

nav{
    display:flex;
    gap:45px;
    margin-top:8px;
}

nav a{
    color:#ffffff;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#f3c7cf;
}

/* =====================================
   HERO DESKTOP
===================================== */

.hero{
    width:100%;
    height:100vh;

    background-image:url("images/pferd1.png");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

/* =====================================
   TABLET
===================================== */

@media (max-width:1000px){

.container{
    flex-direction:column;
    align-items:center;
    padding:20px;
}

.logo img{
    width:210px;
}

nav{
    gap:18px;
    margin-top:18px;
    flex-wrap:wrap;
    justify-content:center;
}

nav a{
    font-size:18px;
}

.hero{
    height:100vh;
    background-position:center center;
}

}

/* =====================================
   SMARTPHONE
===================================== */

@media (max-width:700px){

.container{
    padding:18px;
}

.logo img{
    width:170px;
}

nav{
    gap:18px;
    margin-top:12px;
    justify-content:center;
    flex-wrap:wrap;
}

nav a{
    font-size:15px;
}

.hero{

    width:100%;
    height:100vh;

    background-image:url("images/hero-mobile.jpg");
    background-repeat:no-repeat;

    /* Bild komplett anzeigen */
    background-size:100% auto;

    background-position:center top;

    background-color:#f8f1ea;

}

}