*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

.maillink {
    color: black !important;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

body{
    background:#f5f5f5;
    color:#333;

    min-height:100vh;
    display:flex;
    flex-direction:column;
}

header{
    position:absolute;
    top:0;
    left:0;

    width:100%;

    padding: 0px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(0, 0, 0, 0.35);

    z-index:100;
}

/* Button oben rechts */
.book-btn {
    padding: 10px 18px;
    border: 1px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    background: white;
    color: black;
}


.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    gap:25px;
    align-items:center;
}

nav a{
    color:white;
    text-decoration:none;
}

.hero-small{
    height:350px;
    position:relative;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.35) 60%,
        rgba(245,245,245,1) 100%
    ),
    url('hotel.jpg') center/cover;

    display:flex;
    align-items:center;
    justify-content:center;
}



.overlay{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay h1{
    color:white;
    font-size:48px;
}

.content{
    max-width:1000px;
    margin:60px auto;
    padding:0 20px;
    line-height:1.8;
    font-size:18px;
    flex:1;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:auto;

}