    /* Reset and basics */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body, html { height: 100%; font-family: Arial, sans-serif; }

    /* Splash screen */
    #splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }
    #logo-button {
      width: 150px;
      height: 150px;
      background: url('logo.png') no-repeat center center/contain;
      border-radius: 50%;
      cursor: pointer;
      animation: popIn 0.6s ease-out;
      z-index:99;
    }
    @keyframes popIn {
      0% { transform: scale(0); }
      80% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }
    @keyframes flipOut {
      0% { transform: perspective(600px) rotateY(0deg); opacity: 1; }
      100% { transform: perspective(600px) rotateY(90deg); opacity: 0; }
    }

    /* Main content hidden initially */
    #main-content { display: none; padding: 20px; }
    header { text-align: center; margin-bottom: 20px; }
    .listing { margin-bottom: 40px; }
    .listing img { width: 100%; height: auto; border-radius: 8px; }
    .listing h2 { margin: 10px 0; }
    .listing p { color: #555; }

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

.background {

  position: absolute;
  height: 100vh;
  width: 100vw;
  background: url('background.jpg') no-repeat center center/cover;
  display: inline;
  align-items: center;
  justify-content: center;
}

.splash-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 100;
    transform: translateY(30px);
  }
  to {
    opacity: 0;
    transform: translateY(0);
  }
}

.content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.content p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.logo {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 2;
}

.logo img {
  max-height: 50px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 1;
}

div.hostaway-container {
  color: #000000;
}
