/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:hsl(0, 0%, 100%);
  color:#222;
  overflow-x:hidden;
}

/* NAVBAR */
.navbar{
  position:absolute;
  top:0px;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 30px;
  z-index:1000;

  background:rgba(77, 43, 11, 0.911);
  backdrop-filter:blur(10px);
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:100px;
  height:100px;
  object-fit:contain;
}

.logo span{
  font-family:'Playfair Display', serif;
  font-size:28px;
  font-weight:700;
  color:white;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}

.nav-links li{
  position:relative;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  opacity:0.8;
}

/* DROPDOWN */
.dropdown-menu{
  position:absolute;
  top:40px;
  left:0;
  background:white;
  width:220px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);

  opacity:0;
  visibility:hidden;

  transition:0.3s;

  padding:10px 0;
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu a{
  display:block;
  padding:12px 20px;
  color:#222;
}

.dropdown-menu a:hover{
  background:#f8f9fa;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
}

/* BUTTON */
.book-btn{
  background:white;
  color:#c8a97e !important;
  padding:12px 24px;
  border-radius:30px;
  font-weight:600;
}

/* STICKY NAVBAR */
.navbar.scrolled{
  position:fixed;
  top:0;
  left:0;
}

.book-btn:hover{
  background:#f1d3b1;
}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  font-size:30px;
  color:white;
  cursor:pointer;
}

/* HERO SECTION */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  width: 100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* SLIDES */
.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}

.slide.active{
  opacity:1;
}

/* OVERLAY */
.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.35);
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
  color:white;
}

.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:75px;
  margin-bottom:20px;
  max-width:900px;
}

.hero-content p{
  font-size:20px;
  max-width:700px;
  margin-bottom:35px;
  line-height:1.6;
}

/* HERO BUTTON */
.hero-btn{
  background:#c8a97e;
  color:white;
  padding:15px 35px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.hero-btn:hover{
  background:#b18d63;
  transform:translateY(-2px);
}
/* SECTION GENERAL */
section{
  padding:100px 8%;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-tag{
  color:#c8a97e;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:14px;
}

.section-header h2{
  font-size:42px;
  margin-top:15px;
  font-family:'Playfair Display', serif;
}

/* WELCOME SECTION */
.welcome{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.welcome-image img{
  width:100%;
  border-radius:20px;
}

.welcome-content h2{
  font-size:48px;
  margin:20px 0;
  font-family:'Playfair Display', serif;
}

.welcome-content p{
  line-height:1.8;
  color:#666;
  margin-bottom:30px;
}

.section-btn{
  background:#c8a97e;
  color:white;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
}

/* ROOMS */
.rooms-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.room-card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

.room-card:hover{
  transform:translateY(-10px);
}

.room-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.room-info{
  padding:25px;
}

.room-info h3{
  margin-bottom:10px;
}

.room-info p{
  color:#666;
  margin-bottom:20px;
}

.room-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ROOM DETAILS LINK */
.room-bottom a{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background:#c8a97e;
  color:white;

  padding:11px 20px;

  border-radius:30px;

  text-decoration:none;
  font-size:14px;
  font-weight:500;

  transition:all 0.3s ease;

  box-shadow:0 4px 12px rgba(200,169,126,0.25);
}

/* HOVER EFFECT */
.room-bottom a:hover{
  background:#b18d63;
  color:white;

  transform:translateY(-3px);

  box-shadow:0 7px 18px rgba(177,141,99,0.35);
}

/* ARROW ICON */
.room-bottom a i{
  font-size:12px;
  transition:transform 0.3s ease;
}

/* MOVE ARROW ON HOVER */
.room-bottom a:hover i{
  transform:translateX(4px);
}

/* FACILITIES */
.facilities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.facility-card{
  background:#f8f9fa;
  padding:50px 30px;
  text-align:center;
  border-radius:20px;
  transition:0.3s;
}

.facility-card:hover{
  transform:translateY(-10px);
}

.facility-card i{
  font-size:40px;
  color:#c8a97e;
  margin-bottom:20px;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-grid img{
  width:100%;
  border-radius:15px;
  height:250px;
  object-fit:cover;
}

/* TESTIMONIAL */
.testimonial-section{
  background:#f8f9fa;
}

.testimonial-card{
  max-width:800px;
  margin:auto;
  text-align:center;
  font-size:22px;
  line-height:1.8;
}

/* LOCATION */
.map-container{
  border-radius:20px;
  overflow:hidden;
}

/* FOOTER */
.footer{
  background:#111;
  color:white;
  padding:80px 8% 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer h3{
  margin-bottom:20px;
}

.footer ul{
  list-style:none;
}

.footer ul li{
  margin-bottom:10px;
}

.footer ul a{
  color:#ccc;
  text-decoration:none;
}

.footer-bottom{
  text-align:center;
  margin-top:50px;
  color:#888;
}
/* STICKY NAVBAR */
.navbar.scrolled{
  position:fixed;
  top:0;
  left:0;
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  padding:18px 60px;
}

/* CHANGE NAV TEXT ON SCROLL */
.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle{
  color:#222;
}
html{
  scroll-behavior:smooth;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
  position:fixed;
  bottom:25px;
  right:25px;
  width:65px;
  height:65px;
  background:#25D366;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  font-size:32px;
  z-index:1000;
  text-decoration:none;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
/* LIGHTBOX */
.lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

.close-lightbox{
  position:absolute;
  top:30px;
  right:40px;
  color:white;
  font-size:40px;
  cursor:pointer;
}
/* BOOKING HERO */
.booking-hero{
  position:relative;
  height:50vh;
  background:url('../images/hero/room1.jpg')
  center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
}

.booking-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:white;
}

.booking-hero-content h1{
  font-size:60px;
  font-family:'Playfair Display', serif;
}

.booking-section{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:50px;
  padding:100px 8%;
}

/* FORM */
.booking-form-container{
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.booking-form-container h2{
  margin-bottom:30px;
}

.form-group{
  margin-bottom:25px;
}

.form-group label{
  display:block;
  margin-bottom:10px;
  font-weight:500;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:16px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:16px;
  outline:none;
}

.date-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

/* BUTTON */
.booking-btn{
  width:100%;
  background:#c8a97e;
  color:white;
  padding:18px;
  border:none;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.booking-btn:hover{
  background:#b18d63;
}

/* SUMMARY */
.booking-summary{
  position:sticky;
  top:120px;
  height:fit-content;
}

.summary-card{
  background:#f8f9fa;
  padding:35px;
  border-radius:20px;
}

.summary-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
  font-size:18px;
}

/* SUCCESS MODAL */
.success-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.success-content{
  background:white;
  padding:50px;
  border-radius:20px;
  text-align:center;
  max-width:400px;
}

.success-content i{
  font-size:70px;
  color:#28a745;
  margin-bottom:20px;
}

.success-content h2{
  margin-bottom:15px;
}

.success-content button{
  margin-top:20px;
  background:#c8a97e;
  color:white;
  border:none;
  padding:12px 25px;
  border-radius:8px;
  cursor:pointer;
}
/* ROOM HERO */
.room-hero{
  position:relative;
  height:60vh;
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
}

.room-hero-content{
  position:relative;
  z-index:2;
  color:white;
  text-align:center;
}

.room-hero-content h1{
  font-size:70px;
  font-family:'Playfair Display', serif;
}

.room-details{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:50px;
  padding:100px 8%;
}

/* GALLERY */
.room-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-bottom:50px;
}

.room-gallery img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:15px;
}

/* DESCRIPTION */
.room-description{
  margin-bottom:50px;
}

.room-description h2{
  margin-bottom:20px;
  font-size:36px;
  font-family:'Playfair Display', serif;
}

.room-description p{
  line-height:1.9;
  color:#666;
}

/* AMENITIES */
.room-amenities h2{
  margin-bottom:30px;
  font-size:36px;
  font-family:'Playfair Display', serif;
}

.amenities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.amenities-grid div{
  background:#f8f9fa;
  padding:20px;
  border-radius:12px;
}

.amenities-grid i{
  color:#c8a97e;
  margin-right:10px;
}

/* SIDEBAR */
.room-sidebar{
  position:sticky;
  top:120px;
  height:fit-content;
}

.booking-card{
  background:#f8f9fa;
  padding:40px;
  border-radius:20px;
}

.booking-card h2{
  font-size:42px;
  color:#c8a97e;
}

.booking-card span{
  display:block;
  margin-bottom:30px;
}

.booking-card ul{
  list-style:none;
  margin-bottom:30px;
}

.booking-card ul li{
  margin-bottom:15px;
  color:#555;
}

.book-room-btn{
  display:block;
  text-align:center;
  background:#c8a97e;
  color:white;
  padding:16px;
  border-radius:10px;
  text-decoration:none;
}
/* CONTACT HERO */
.contact-hero{
  position:relative;
  height:50vh;
  background:url('../images/hero/hotel1.jpg')
  center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
}

.contact-hero-content{
  position:relative;
  z-index:2;
  color:white;
  text-align:center;
}

.contact-hero-content h1{
  font-size:65px;
  font-family:'Playfair Display', serif;
}

.contact-section{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:50px;
  padding:100px 8%;
}

/* CONTACT INFO */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.contact-card{
  background:#f8f9fa;
  padding:35px;
  border-radius:20px;
}

.contact-card i{
  font-size:40px;
  color:#c8a97e;
  margin-bottom:20px;
}

.contact-card h3{
  margin-bottom:10px;
}

/* SOCIAL */
.social-links{
  display:flex;
  gap:15px;
}

.social-links a{
  width:50px;
  height:50px;
  background:#c8a97e;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  text-decoration:none;
}

/* FORM */
.contact-form-container{
  background:white;
  padding:45px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-container h2{
  margin-bottom:30px;
}

.contact-btn{
  width:100%;
  background:#c8a97e;
  color:white;
  padding:18px;
  border:none;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
}

/* MAP */
.map-section{
  padding:0;
}

.map-section iframe{
  display:block;
}
/* BACK HOME BUTTON */
.back-home-btn{
  display:inline-block;
  margin-top:25px;
  background:white;
  color:#c8a97e;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.back-home-btn:hover{
  transform:translateY(-2px);
}
/* ROOM LIGHTBOX */
.room-lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.92);

  display:none;

  justify-content:center;
  align-items:center;

  z-index:5000;

  padding:20px;
}

/* IMAGE */
.room-lightbox img{
  max-width:95%;
  max-height:95%;
  border-radius:15px;

  animation:zoomIn 0.3s ease;
}

/* CLOSE BUTTON */
.close-room-lightbox{
  position:absolute;
  top:25px;
  right:40px;

  color:white;

  font-size:50px;

  cursor:pointer;

  z-index:5001;
}

/* GALLERY IMAGES */
.room-gallery img{
  cursor:pointer;
  transition:0.3s;
}

.room-gallery img:hover{
  transform:scale(1.03);
}

/* ZOOM ANIMATION */
@keyframes zoomIn{

  from{
    transform:scale(0.8);
    opacity:0;
  }

  to{
    transform:scale(1);
    opacity:1;
  }

}
/* ABOUT HERO */
.about-hero{
  position:relative;
  height:60vh;
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:white;
}

.about-hero-content h1{
  font-size:70px;
  font-family:'Playfair Display', serif;
  margin-bottom:20px;
}

/* ABOUT INTRO */
.about-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding:100px 8%;
}

.about-image img{
  width:100%;
  border-radius:20px;
}

.about-content h2{
  font-size:48px;
  margin:20px 0;
  font-family:'Playfair Display', serif;
}

.about-content p{
  line-height:1.9;
  color:#666;
  margin-bottom:20px;
}

/* VISION */
.vision-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  padding:0 8% 100px;
}

.vision-card{
  background:#f8f9fa;
  padding:50px;
  border-radius:20px;
  text-align:center;
}

.vision-card i{
  font-size:50px;
  color:#c8a97e;
  margin-bottom:20px;
}

/* WHY US */
.why-us-section{
  background:#fff;
}

.why-us-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.why-card{
  background:#f8f9fa;
  padding:40px;
  border-radius:20px;
  text-align:center;
}

.why-card i{
  font-size:45px;
  color:#c8a97e;
  margin-bottom:20px;
}

/* STATS */
.stats-section{
  background:#b08b57;
  color:white;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  text-align:center;
}

.stat-box h2{
  font-size:55px;
  margin-bottom:10px;
}

/* TEAM */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.team-card{
  text-align:center;
}

.team-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:20px;
}

/* CTA */
.about-cta{
  background:url('../images/hero/room2.jpg')
  center/cover no-repeat;

  position:relative;

  padding:120px 8%;

  text-align:center;
}

.about-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}

.cta-content{
  position:relative;
  z-index:2;
  color:white;
}

.cta-content h2{
  font-size:52px;
  margin-bottom:20px;
  font-family:'Playfair Display', serif;
}

.cta-content p{
  margin-bottom:35px;
  font-size:18px;
}
/* ABOUT CONTENT */
.about-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* LEAD TEXT */
.about-lead{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:35px;
}

/* INFO GRID */
.about-info-grid{
  display:grid;
  gap:25px;
}

/* INFO CARD */
.about-info-card{
  display:flex;
  align-items:flex-start;
  gap:20px;

  background:#f8f9fa;

  padding:22px;

  border-radius:16px;

  transition:0.3s;
}

.about-info-card:hover{
  transform:translateY(-4px);
}

/* ICON */
.about-info-card i{
  font-size:28px;
  color:#b08b57;
  margin-top:5px;
  min-width:30px;
}

/* TEXT */
.about-info-card h3{
  margin-bottom:8px;
  font-size:20px;
}

.about-info-card p{
  margin:0;
  line-height:1.8;
  color:#666;
}

/* ENDING */
.about-ending{
  margin-top:35px;
  line-height:1.9;
  color:#555;
  font-weight:500;
}
/* HIDDEN ABOUT CONTENT */
.more-about-content{
  display:none;
  margin-top:20px;
}

/* READ MORE BUTTON */
.read-more-btn{
  margin-top:25px;
  background:#b08b57;
  color:white;
  border:none;
  padding:14px 28px;
  border-radius:30px;
  cursor:pointer;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.read-more-btn:hover{
  transform:translateY(-2px);
}
.hotel-logo{
        text-align:center;
        line-height:1;
        letter-spacing:6px;
}

.hotel-logo p{
    margin:0;
    text-transform:uppercase;
}

.fiesto{
    color:#c40000;
    font-size:24px;
    font-weight:800;
    text-shadow:
        0 0 10px rgba(255,0,0,0.4),
        0 0 25px rgba(255,0,0,0.2);
}

.continental{
    color:#d4af37;
    font-size:12px;
    font-weight:500;
    margin-top:5px !important;
    text-shadow:
        0 0 8px rgba(212,175,55,0.4);
}

.hotel{
    color:#d4af37;
    font-size:12px;
    font-weight:500;
    margin-top:5px !important;
    text-shadow:
        0 0 8px rgba(212,175,55,0.4);
}

.enugu{
    color:#c40000;
    font-size:30px;
    font-weight:700;
    margin-top:5px !important;
    letter-spacing:8px;
}
/* POPUP AD */
.popup-ad{
  position:fixed;
  inset:0;

  display:none;

  justify-content:center;
  align-items:center;

  z-index:9999;
}

/* OVERLAY */
.popup-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(4px);
}

/* CONTENT */
/* POPUP CONTENT */
.popup-content{
  position:relative;
  z-index:2;

  width:90%;
  max-width:700px;

  max-height:90vh;

  display:flex;
  justify-content:center;
  align-items:center;

  animation:popupFade 0.4s ease;
}

/* IMAGE */
.popup-content img{
  width:100%;
  max-height:90vh;

  object-fit:contain;

  border-radius:20px;

  display:block;
}

/* CLOSE BUTTON */
.close-popup{
  position:absolute;
  top:-15px;
  right:-15px;

  width:45px;
  height:45px;

  background:white;
  color:#222;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:28px;

  cursor:pointer;

  box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* ANIMATION */
@keyframes popupFade{

  from{
    transform:scale(0.8);
    opacity:0;
  }

  to{
    transform:scale(1);
    opacity:1;
  }

}

/* RELATED ROOM LINKS */
.room-related{
  padding:80px 8%;
  background:linear-gradient(135deg,#fbf8f3 0%,#f3eadc 100%);
  text-align:center;
}

.room-related .section-header{
  max-width:720px;
  margin:0 auto 34px;
}

.room-related .section-header h2{
  margin-top:10px;
  color:#4d2b0b;
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,4vw,42px);
}

.related-room-links{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:14px;
  max-width:1100px;
  margin:0 auto;
}

.related-room-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:72px;
  padding:18px 20px;
  background:#fff;
  border:1px solid rgba(176,139,87,.25);
  border-radius:12px;
  box-shadow:0 8px 24px rgba(77,43,11,.08);
  color:#4d2b0b;
  font-weight:600;
  text-align:left;
  text-decoration:none;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
}

.related-room-links a::after{
  content:'→';
  color:#b08b57;
  font-size:22px;
  transition:transform .25s ease;
}

.related-room-links a:hover,
.related-room-links a:focus-visible{
  background:#4d2b0b;
  color:#fff;
  box-shadow:0 14px 30px rgba(77,43,11,.22);
  transform:translateY(-4px);
}

.related-room-links a:hover::after,
.related-room-links a:focus-visible::after{
  color:#f1cd89;
  transform:translateX(4px);
}

.related-room-links a:focus-visible{
  outline:3px solid #d5ae69;
  outline-offset:3px;
}
