:root {
  --accent-color: #ff6600;
  --bg-dark: #111;
  --bg-light: #f4f4f4;
  --text-light: #fff;
  --text-dark: #222;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}

h1 {
  padding: 1.0rem;
  font-size: 2rem;
}

header {
  padding: 1.0rem;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 5rem;
  flex: 1 0 auto;
}

.hotel-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 1.2rem;
  position: relative;
}

.hotel-title {
  
  margin: 0 0 14px 0 ;
  
}


.hotel-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  color: white;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none; /* Entfernt die Standard-Unterstreichung */
}


.hotel-logo {
  position: absolute;
  top: 20px;
  right: 12px;
  width: 80px;
  height: auto;
  z-index: 1; /* sorgt dafür, dass das Logo immer oben bleibt */
}


.language-links {
  display: flex;
  gap: 10px;
}

.language-links a img {
  width: 48px;
  height: 32px;
  object-fit: cover;
  display: block;
}

footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

footer a {
   color: rgb(236, 75, 0);
}


.logo {
  background: url('_/js/vendor/switch/logo_diginetmedia.png') no-repeat center;
  background-size: contain;
  width: 200px;
  height: 50px;
  margin: 10px auto;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem;
}

.header-logo {
  width: 100px;
  height: auto;
  margin-bottom: 0.5rem;
}

.header-text {
  text-align: center;
  color: var(--text-light);
}

.header-text h1 {
  font-size: 1.8rem;
  margin: 0;
}

.header-text .subtitle {
  font-size: 1rem;
  margin-top: 0.3rem;
}




@media only screen and (max-width: 768px) {

  main {
    padding: 2rem;
    flex: 1 0 auto;
  }

.hotel-tile {
  height: 300px;
}



  .hotel-logo {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 70px;
  height: auto;
  z-index: 0; /* sorgt dafür, dass das Logo immer oben bleibt */
  }


  .header-text h1 {
    font-size: 1.3rem;
    margin: 0;
  }

  .header-text .subtitle {
    font-size: 1rem;
    margin-top: 0rem;
  }

}