@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  background-color: #FFFFFF;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background-color: #FFFFFF;
  border-right: 1px solid #D1D5DB;
  z-index: 1000;
  overflow-y: auto;
}
.sidebar .sidebar-inner {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.sidebar .logo {
  margin-bottom: 40px;
  text-align: center;
}
.sidebar .logo img {
  max-width: 100%;
  height: auto;
}
.sidebar .sidebar-nav {
  flex: 0 0 auto;
}
.sidebar .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .sidebar-nav ul li {
  margin-bottom: 2px;
}
.sidebar .sidebar-nav ul li a.nav-link {
  display: block;
  padding: 8px 10px;
  color: #8A2A27;
  text-decoration: none;
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.sidebar .sidebar-nav ul li a.nav-link:hover, .sidebar .sidebar-nav ul li a.nav-link.active {
  background-color: #F0F5FA;
  color: #046bd2;
}
.sidebar .btn-book {
  display: block;
  background-color: #8A2A27;
  color: #FFFFFF;
  text-align: center;
  padding: 14px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Noto Serif", Sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
.sidebar .btn-book:hover {
  background-color: rgb(98.2372881356, 29.8983050847, 27.7627118644);
}

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: #FFFFFF;
  border: 2px solid #D1D5DB;
  border-radius: 5px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu-toggle .hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background: #1e293b;
  position: relative;
}
.mobile-menu-toggle .hamburger::before, .mobile-menu-toggle .hamburger::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #1e293b;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.mobile-menu-toggle .hamburger::before {
  top: -8px;
}
.mobile-menu-toggle .hamburger::after {
  top: 8px;
}
.mobile-menu-toggle:hover {
  border-color: #046bd2;
}

#content {
  margin-left: 200px;
  min-height: 100vh;
}
#content main {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-water-bg {
  position: absolute;
  top: -8%;
  left: -8%;
  width: 116%;
  height: 116%;
  background-image: url("/assets/images/Empty_Water_Surface_original_1236028-scaled.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: url(#water-ripple);
  animation: kenBurns 30s ease-in-out infinite;
}
@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(-1%, 1%);
  }
  50% {
    transform: scale(1.05) translate(1%, -0.5%);
  }
  75% {
    transform: scale(1.1) translate(-0.5%, -1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.hero-section .hero-doorway {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/doorway.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  animation: fadeInContent 1.5s ease-out 7s forwards;
}
.hero-section .hero-content h1 {
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: 80px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 4.7px;
  word-spacing: 6px;
  text-shadow: 0px 0px 0px rgba(150, 169, 199, 0);
  color: #8A2A27;
  margin-bottom: 20px;
}
.hero-section .hero-content p {
  text-align: center;
  font-family: "Noto Sans", Sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 1.7px;
  text-shadow: 0px 0px 0px rgba(84, 0, 0, 0);
  color: #779ACE;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-section .hero-content .btn-hero {
  display: inline-block;
  background-color: #779ACE;
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Noto Serif Bengali", Sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.hero-section .hero-content .btn-hero:hover {
  background-color: #8A2A27;
}
@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 3em 0;
}
section:first-of-type {
  padding-top: 3em;
}
section h2 {
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 1.7px;
  color: #8A2A27;
  margin-bottom: 0;
  text-align: center;
}
section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}
section p {
  font-size: 16px;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 20px;
}

#about {
  text-align: left;
}
#about .about-content {
  margin: 0 auto;
  padding: 0 30px;
}

#rooms .rooms-content {
  margin: 0 auto 30px auto;
  padding: 0 30px;
  text-align: left;
}
#rooms .rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}
#rooms .rooms-grid .room-card {
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
#rooms .rooms-grid .room-card:hover {
  transform: translateY(-5px);
}
#rooms .rooms-grid .room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
#rooms .rooms-grid .room-card .room-info {
  padding: 25px;
}
#rooms .rooms-grid .room-card .room-info h3 {
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: #8A2A27;
  margin-bottom: 15px;
  text-align: left;
}
#rooms .rooms-grid .room-card .room-info p {
  font-size: 15px;
  color: #334155;
  margin-bottom: 20px;
  text-align: left;
}
#rooms .rooms-grid .room-card .room-info .btn-view-room {
  display: inline-block;
  background-color: #8A2A27;
  color: #FFFFFF;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}
#rooms .rooms-grid .room-card .room-info .btn-view-room:hover {
  background-color: rgb(98.2372881356, 29.8983050847, 27.7627118644);
}
#rooms .rooms-grid .room-card .coming-soon-text {
  display: inline-block;
  color: #334155;
  font-weight: 600;
}

#duna-cafe .cafe-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
}
#duna-cafe .cafe-content img {
  flex: 1;
  max-width: 400px;
  border-radius: 10px;
}
#duna-cafe .cafe-content .cafe-text {
  flex: 1;
}
#duna-cafe .cafe-content .cafe-text h2 {
  text-align: left;
  margin-bottom: 15px;
}
#duna-cafe .cafe-content .cafe-text p {
  margin: 0 0 1em 0;
}
#duna-cafe .cafe-content .cafe-text .btn-cafe {
  display: inline-block;
  background-color: #8A2A27;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
#duna-cafe .cafe-content .cafe-text .btn-cafe:hover {
  background-color: rgb(98.2372881356, 29.8983050847, 27.7627118644);
}
#duna-cafe .cafe-content .cafe-text .btn-coming-soon {
  display: inline-block;
  background-color: #8A2A27;
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Noto Serif Bengali", Sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
#duna-cafe .cafe-content .cafe-text .btn-coming-soon:hover {
  background-color: #779ACE;
}

#matosinhos-section .flip-cards-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
}
#matosinhos-section .flip-card {
  perspective: 1000px;
  cursor: pointer;
  aspect-ratio: 2/3;
}
#matosinhos-section .flip-card:first-child {
  transform: rotate(-2deg);
}
#matosinhos-section .flip-card:last-child {
  transform: rotate(1.5deg);
}
#matosinhos-section .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
#matosinhos-section .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#matosinhos-section .flip-card .flip-card-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  box-sizing: border-box;
  transform: rotateY(0deg);
  background-color: #FFFEF8;
  border: 12px solid #FFFEF8;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(0, 0, 0, 0.03);
}
#matosinhos-section .flip-card .flip-card-front h3 {
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: clamp(42px, 6vw, 50px);
  font-weight: 500;
  color: #8A2A27;
  text-align: center;
  line-height: 1.1em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  padding: 10px 20px;
  background: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#matosinhos-section .flip-card .flip-card-front h3 .cursive-subtitle {
  display: block;
  font-family: "Allura", cursive;
  font-size: clamp(65px, 10vw, 70px);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 1px;
  margin-top: -5px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
#matosinhos-section .flip-card .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-color: #FFFEF8;
  transform: rotateY(180deg);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 110px 30px 30px 30px;
  box-sizing: border-box;
  background-attachment: local;
  border: 12px solid #FFFEF8;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(0, 0, 0, 0.03);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E"), linear-gradient(#D4C5A9 1px, transparent 1px);
  background-size: cover, 100% 26px;
  background-position: center, 0 110px;
  background-blend-mode: overlay, normal;
}
#matosinhos-section .flip-card .flip-card-back::before {
  content: "PORTO";
  position: absolute;
  top: 15px;
  right: 90px;
  width: 70px;
  height: 70px;
  border: 3px solid rgba(180, 60, 60, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: rgba(180, 60, 60, 0.5);
  letter-spacing: 2px;
  transform: rotate(-15deg);
}
#matosinhos-section .flip-card .flip-card-back::after {
  content: "POSTAGE";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 70px;
  border: 2px dashed #D4C5A9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #D4C5A9;
  letter-spacing: 1px;
}
#matosinhos-section .flip-card .flip-card-back .flip-card-content {
  font-size: 14px;
  line-height: 26px;
  color: #5A4A3A;
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 1;
}
#matosinhos-section .flip-card:first-child .flip-card-front {
  background-image: url("/assets/images/matosinhos-bg.webp");
  filter: brightness(120%) contrast(105%) saturate(110%);
}
#matosinhos-section .flip-card:last-child .flip-card-front {
  background-image: url("/assets/images/what-to-do-bg.webp");
  filter: brightness(120%) contrast(105%) saturate(110%);
}

#alaya .alaya-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
}
#alaya .alaya-content img {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
}
#alaya .alaya-content .alaya-text {
  flex: 1;
}
#alaya .alaya-content .alaya-text p {
  margin: 0;
  padding: 10px 0px;
}
#alaya .alaya-content .alaya-text .btn-visit-site {
  display: inline-block;
  background-color: #8A2A27;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Noto Serif Bengali", Sans-serif;
  font-weight: 500;
  letter-spacing: 1.6px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}
#alaya .alaya-content .alaya-text .btn-visit-site:hover {
  background-color: #779ACE;
}

#gallery {
  background-color: #FFFFFF;
}
#gallery h2 {
  font-family: "Manrope", Sans-serif;
  font-weight: 600;
  color: rgb(119, 154, 206);
  font-size: 16px;
  letter-spacing: 8px;
}
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
#gallery .gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
#gallery .gallery-grid img:hover {
  transform: scale(1.05);
}

#contact h2 {
  font-family: "Manrope", Sans-serif;
  font-weight: 600;
  color: rgb(119, 154, 206);
  font-size: 16px;
  letter-spacing: 8px;
}
#contact .contact-content {
  display: flex;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}
#contact .contact-content .contact-form-column {
  flex: 1;
  padding: 30px;
  border-radius: 0px;
}
#contact .contact-content .contact-form-column h3 {
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #8A2A27;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
}
#contact .contact-content .contact-form-column form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#contact .contact-content .contact-form-column form .form-row {
  display: flex;
  gap: 15px;
}
#contact .contact-content .contact-form-column form .form-row input {
  flex: 1;
}
#contact .contact-content .contact-form-column form input,
#contact .contact-content .contact-form-column form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #334155;
}
#contact .contact-content .contact-form-column form input::placeholder,
#contact .contact-content .contact-form-column form textarea::placeholder {
  color: #94a3b8;
}
#contact .contact-content .contact-form-column form input:focus,
#contact .contact-content .contact-form-column form textarea:focus {
  outline: none;
  border-color: #046bd2;
}
#contact .contact-content .contact-form-column form textarea {
  min-height: 120px;
  resize: vertical;
}
#contact .contact-content .contact-form-column form button {
  background-color: rgb(119, 154, 206);
  color: #FFFFFF;
  padding: 12px 30px;
  border: none;
  border-radius: 40px;
  font-family: "Noto Serif Bengali", Sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}
#contact .contact-content .contact-form-column form button:hover {
  background-color: #8A2A27;
}
#contact .contact-content .contact-info-column {
  flex: 1;
  padding: 30px;
  border-radius: 0px;
  text-align: left;
}
#contact .contact-content .contact-info-column .contact-info {
  margin-bottom: 20px;
}
#contact .contact-content .contact-info-column .contact-info p {
  font-size: 16px;
  margin: 15px 0;
  color: #8A2A27;
}
#contact .contact-content .contact-info-column .contact-info p strong {
  color: #8A2A27;
  display: block;
  margin-bottom: 5px;
}
#contact .contact-content .contact-info-column .contact-info p a {
  color: #8A2A27;
  text-decoration: none;
}
#contact .contact-content .contact-info-column .contact-info p a:hover {
  text-decoration: underline;
}
#contact .contact-content .contact-info-column .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
#contact .contact-content .contact-info-column .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #8A2A27;
  color: #FFFFFF;
  font-size: 20px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
#contact .contact-content .contact-info-column .social-links a:hover {
  background-color: rgb(119, 154, 206);
}
#contact .contact-content .contact-info-column .social-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

#map {
  padding: 0;
  margin: 0;
  background-color: #FFFFFF;
}
#map .map-container {
  width: 100%;
  height: 450px;
}
#map .map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer {
  background-color: rgb(119, 154, 206);
  color: #FFFFFF;
  padding: 40px 20px;
  text-align: center;
  margin-left: 0;
}
.site-footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.site-footer .footer-nav a:hover {
  opacity: 0.7;
}
.site-footer .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.site-footer a {
  color: #FFFFFF;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #046bd2;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
}
#scroll-top.show {
  opacity: 1;
}
#scroll-top:hover {
  background-color: #045cb4;
}

.room-page .room-hero {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.room-page .room-hero .room-hero-overlay {
  width: 100%;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.room-page .room-hero .room-hero-overlay h1 {
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}
.room-page .room-details {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.room-page .room-details .back-link {
  display: inline-block;
  color: #8A2A27;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
}
.room-page .room-details .back-link:hover {
  text-decoration: underline;
}
.room-page .room-details .room-content .room-description {
  margin-bottom: 30px;
}
.room-page .room-details .room-content .room-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
}
.room-page .room-details .room-content .room-features {
  margin-bottom: 30px;
}
.room-page .room-details .room-content .room-features h3 {
  font-family: "Noto Serif Bengali", Sans-serif;
  font-size: 24px;
  color: #8A2A27;
  margin-bottom: 15px;
}
.room-page .room-details .room-content .room-features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.room-page .room-details .room-content .room-features ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #334155;
}
.room-page .room-details .room-content .room-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8A2A27;
  font-weight: bold;
}
.room-page .room-details .room-content .btn-book-room {
  display: inline-block;
  background-color: #8A2A27;
  color: #FFFFFF;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}
.room-page .room-details .room-content .btn-book-room:hover {
  background-color: rgb(98.2372881356, 29.8983050847, 27.7627118644);
}

@media (max-width: 1100px) {
  #matosinhos-section .flip-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 450px;
  }
  #matosinhos-section .flip-cards-grid .flip-card {
    transform: none;
  }
  #matosinhos-section .flip-cards-grid .flip-card:first-child {
    transform: rotate(-1deg);
  }
  #matosinhos-section .flip-cards-grid .flip-card:last-child {
    transform: rotate(1deg);
  }
  #matosinhos-section .flip-cards-grid > div:nth-child(2) {
    display: none;
  }
}
@media (max-width: 920px) {
  .hero-section .hero-water-bg {
    filter: none;
    animation: kenBurnsMobile 40s ease-in-out infinite;
  }
  @keyframes kenBurnsMobile {
    0%, 100% {
      transform: scale(1) translate(0, 0);
    }
    50% {
      transform: scale(1.06) translate(-0.5%, 0.5%);
    }
  }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  .mobile-menu-toggle {
    display: block;
  }
  #content,
  .site-footer {
    margin-left: 0;
  }
  .room-page .room-hero {
    height: 40vh;
    min-height: 300px;
  }
  .room-page .room-hero .room-hero-overlay h1 {
    font-size: 32px;
  }
  .room-page .room-details .room-content .room-features ul {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 20px;
  }
  section {
    padding: 2em 0;
  }
  #duna-cafe .cafe-content,
  #alaya .alaya-content {
    flex-direction: column;
  }
  #duna-cafe .cafe-content img,
  #alaya .alaya-content img {
    max-width: 100%;
  }
  #contact .contact-content {
    flex-direction: column;
  }
  #contact .contact-content .contact-form-column form .form-row {
    flex-direction: column;
  }
  #rooms .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  }
  #matosinhos-section .flip-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 95%;
  }
  #matosinhos-section .flip-cards-grid .flip-card {
    width: 100%;
    aspect-ratio: 2/3;
    transform: none;
  }
  #matosinhos-section .flip-cards-grid .flip-card .flip-card-back {
    padding: 110px 30px 30px 30px;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
    background-attachment: local;
  }
  #matosinhos-section .flip-cards-grid .flip-card .flip-card-back .flip-card-content {
    width: 100%;
    font-size: 14px;
    padding-bottom: 20px;
  }
  #matosinhos-section .flip-cards-grid > div:nth-child(2) {
    display: none;
  }
}
@media (max-width: 544px) {
  section {
    padding: 1.5em 0;
  }
  section h2 {
    font-size: 28px;
  }
  .rooms-grid {
    grid-template-columns: 1fr !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 420px) {
  #matosinhos-section .flip-card .flip-card-front h3 {
    font-size: 28px;
  }
  #matosinhos-section .flip-card .flip-card-front h3 .cursive-subtitle {
    font-size: 48px;
  }
}
@media (max-height: 600px) {
  .sidebar .sidebar-inner {
    justify-content: flex-start;
    padding-top: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-water-bg {
    animation: none;
    transform: scale(1.04);
  }
}
#content {
  position: relative;
  background-image: url("/assets/images/cl-bg2.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat-y;
  background-attachment: scroll;
}

/*# sourceMappingURL=main.css.map */