html {
    color-scheme: light;
}

/* material-symbols-outlined-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/material-symbols-outlined-v230-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Navbar fixed at top */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.308);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.navbar-item {
    text-transform: lowercase;
}

/* Hero section with background image */
.hero {
    background: url('/images/hero/background.jpg') center/cover no-repeat;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content towards the top */
    align-items: center;
    padding-top: 10vh;
    /* Adjust this value to place text in the upper third */
    height: 50vh;
    /* Limits the height so content stays in the top third */
}

.hero-blur-box {
    position: relative;
    z-index: 2;
}

.hero .title,
.hero .subtitle {
    text-shadow: 3px 3px 10px rgba(254, 254, 254, 0.6);
}

.hero-blur-box {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    /* for Safari */
    background-color: rgba(255, 255, 255, 0.2);
    /* translucent background */
    border-radius: 12px;
    padding: 2rem;
    display: inline-block;
    margin: auto;
}

.section .title {
    text-transform: lowercase;
}

.airbnb-paragraph {
    line-height: 1;
    margin: 0;
}

.airbnb-logo {
    display: inline-block;
    vertical-align: baseline;
    height: 1em;
    width: auto;
    fill: currentColor;
}

.airbnb-text {
    margin-left: 0.3em;
}

/*
.swiper-container {
    width: 100%;
    height: 256px;
  }
  
.swiper-slide img {
    max-width: 384px;
    max-height: 256px;
    object-fit: cover;
}
*/