* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

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);
    top: 0;
    left: 0;
}

/* Navigation */
.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:92px;

    padding:0 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(0,0,0,0.35);
    z-index:1000;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    display:flex;
    align-items:center;
    color:white;
    text-decoration:none;
    font-size:16px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

/* 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: 8%;
    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;
}

.menu-toggle{
    display:none;
}

@media (max-width:768px){

    .hero{
        height:100vh;
        min-height:100vh;
        background-position:center;
        position:relative;
        overflow:hidden;
    }

    .hero::before{
        height:100%;
        background:rgba(0,0,0,0.35);
        pointer-events:none;
    }

    .navbar{
        height:80px;
        padding:0 20px;

        display:flex;
        justify-content:space-between;
        align-items:center;

        background:rgba(0,0,0,0.35);
        backdrop-filter:blur(6px);
    }

    .logo img{
        height:55px;
    }

    .menu-toggle{
        display:block;
        font-size:32px;
        color:white;
        cursor:pointer;
        z-index:10001;
    }

    .nav-links{
        display:none;

        position:fixed;
        top:0;
        left:0;

        width:100%;
        height:100vh;

        background:rgba(0,0,0,0.95);

        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:25px;

        z-index:9999;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        font-size:20px;
    }

    .content{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);

        width:90%;
        max-width:500px;

        text-align:center;
        z-index:2;
    }

    .content h1{
        font-size:34px;
        line-height:1.2;
    }

    .content p{
        font-size:20px;
    }

    .footer{
        position:absolute;
        bottom:0;
        left:0;

        width:100%;
        padding:16px 20px;

        font-size:13px;
        line-height:1.5;

        background:rgba(0,0,0,0.35);
        backdrop-filter:blur(6px);

        z-index:10;
    }

    .hide-content{
        display:none;
    }
}