/*
Font
 */
@font-face {
  font-family: "Annabel";
  src: url("../font/AnnabelScript.ttf") format("opentype"),
  url("../font/AnnabelScript.ttf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Poor Richard";
  src: url("../font/PoorRichard.ttf") format("opentype"),
  url("../font/PoorRichard.ttf") format("opentype");
  font-display: swap;
}

/*
Header - pleine largeur, logo et menu sur une seule ligne
 */
.bg-brown {
  background-color: #403646;
  color: white;
}
.header-logo {
  border-bottom: 1px solid white;
  width: 100%;
}
.header-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.header-logo-wrap {
  flex-shrink: 0;
}
.header-nav {
  flex: 0 1 auto;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.img-header-logo {
  height: 150px;
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 640px) {
  .img-header-logo {
    max-width: 200px;
    height: 90px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1200px) {
  .img-header-logo {
    max-width: 320px;
    height: 120px;
  }
}
@media screen and (min-width: 1201px) {
  .img-header-logo {
    max-width: 500px;
  }
}

/*
Menu
 */
.menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-item {
  flex-shrink: 0;
  font-size: 1.5em;
}
.menu li {
  padding: 10px 14px;
  font-family: "Annabel", sans-serif;
  color: white;
  text-decoration: none;
}
.menu li a {
  padding: 0;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
.menu:hover {
  color: white;
}
.menu li a:hover,
.menu-item:hover,
.menu-item:hover a {
  background-color: #fff;
  color: #403646 !important;
}
@media screen and (max-width: 992px) {
  .menu li {
    padding: 10px 10px;
  }
  .menu-item {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 768px) {
  .menu li {
    padding: 8px 6px;
  }
  .menu-item {
    font-size: 1.15em;
  }
}

/*
Footer
 */
.footer {
  background-color: #403646;
  color: white;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.footer-nav {
  margin-bottom: 1.5rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu-item {
  font-family: "Annabel", sans-serif;
  font-size: 1.25em;
}

.footer-menu-item a {
  display: block;
  padding: 0.35rem 0.75rem;
  color: white;
  text-decoration: none;
}

.footer-menu-item a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 4px;
}

.footer-contact {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-contact p {
  margin: 0.25rem 0;
}

.footer-name {
  font-family: "Poor Richard", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem !important;
}

.footer-link {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 640px) {
  .footer-menu-item {
    font-size: 1.1em;
  }

  .footer-menu-item a {
    padding: 0.3rem 0.5rem;
  }
}

/*
Home
 */
.landing-home{
  background: url("../img/home/landing-home.webp") center top;
  border-bottom:50px solid #403646;
  /*background-color: #403646;*/
  background-size: cover;
  height:700px;
}
.landing-home video {
  height: 100%;
  margin: auto;
}
.titre-home {
  padding: 30px;
  font-family:"Poor Richard", sans-serif;
  font-size:2.5em;
}
.titre-home-opening {
  color: red;
  font-family:"Poor Richard", sans-serif;
  font-size:1.8em;
}
.home-link{
  color:black;
  text-decoration: none;
}
.home-link:hover{
  color:#7E57C2;
  text-decoration: none;
}

.tiles-home{
  padding:20px;
}
.tiles-home img{
  width:100%;
  border-radius: 5px;
}
.tiles-home-title{
  font-family:"Poor Richard", sans-serif;
  font-size:1.4em;
}

.tiles-room {
  padding:20px;
}
.tiles-room img{
  width:100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}
.tiles-room-title{
  font-family:"Poor Richard", sans-serif;
  font-size:1.7em;
}

p{
  margin:0 auto;
}

li:not(.menu-item) {
  padding-bottom: 10px;
}
