
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

.slideshow {
    flex: 2;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease, transform 2s ease;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.content {
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    width: 120px;
    margin-bottom: 1rem;
}

.email {
    color: #f79b9b;
    text-decoration: none;
}

.email:hover {
    color: #e07a8d;
}

.book-button {
  display: inline-block;
  background-color: #f79b9b;
  color: white;
  font-size: 1rem;
  padding: 0.6rem 1.6rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-button:hover {
  background-color: #e07a8d;
}

.airbnb-rating {
  font-size: 1rem;
  color: #f79b9b;
  font-weight: 500;
}

.airbnb-rating a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.airbnb-rating a:hover {
  color: #f79b9b;
}
/*
.airbnb-widget {
    margin-top: 2rem;
    width: 100%;
    max-width: 300px;
}
*/
/* Responsive styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .slideshow {
        width: 100%;
    }
    .content {
        padding: 1rem;
    }
}
