* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px){

    .hero{
        min-height:100vh;
        height:auto;
        background-position:center;
    }

    .hero::before{
        height:100%;
        background:rgba(0,0,0,0.35);
        pointer-events:none;
    }

    .navbar{
        position:relative;
        padding:10% 10%;
        flex-direction:column;
        gap:15px;
        background:rgba(0,0,0,0.35);
        backdrop-filter:blur(6px);
    }

    .logo img{
        height:55px;
    }

    .nav-links{
        flex-direction:column;
        gap:12px;
    }

    .nav-links a{
        font-size:15px;
    }

    .content{
        position:relative;
        top:auto;
        transform:none;

        margin:80px auto 160px;
        padding:0 25px;
        text-align:center;
    }

    .content h1{
        font-size:34px;
        line-height:1.2;
    }

    .content p{
        font-size:20px;
    }

    .footer{
        position:relative;
        font-size:13px;
        line-height:1.5;
        padding:16px 20px;
    }
}

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, html {
    height: 100%;
}

/* Hintergrundbild */
.hero {
    height: 100vh;
    background: url('hotel.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
}

/* dunkles Overlay */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 11%;
    background: rgba(0,0,0,0.35);
    top: 0;
    left: 0;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

/* 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;
}

/* Content */
.content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.content p {
    font-size: 22px;
    margin-bottom: 30px;
}

/* Button groß */
.main-btn {
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    background: white;
    color: black;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.main-btn:hover {
    background: #ddd;
}

/* Footer */
.footer{
    position:absolute;
    bottom:0;
    left:0;

    width:100%;

    padding:18px 30px;

    text-align:center;

    color:white;

    background:rgba(0,0,0,0.35);

    backdrop-filter:blur(6px);

    z-index:10;
}