/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
}

/*Animations*/
.fadeinleft {
  opacity: 0;
  transform: translateX(200px);
  transition: all 1.3s ease-out;
}

.fadeinright {
  opacity: 0;
  transform: translateX(-200px);
  transition: all 0.8s ease-out;
}

.fadeindown {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-out;
}

.fade-in {
  opacity: 0;
  transition: all 1.3s ease-in;
}

.active-left,
.active,
.active-right,
.active-down {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
}

.fadein {
  opacity: 0;
}

/* End Animations*/

/* Top contact bar */
.top-bar {
  background-color: #eaeaea;
  font-size: 14px;
  color: #666;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
}

.contact-info .contact-item:hover {
  color: #d4a574;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  color: #666;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #d4a574;
}

.booking-btn {
  background-color: #d4a574;
  color: white;
  padding: 5px 20px;
  border: none;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.booking-btn:hover {
  background-color: #c19660;
  color: white;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

.language-selector:hover {
  color: #d4a574;
}

/* Main header */
.navbar {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  filter: none !important;
  outline: none !important;
  height: 50px;
}

.navbar-content {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 1% 3%;
  width: 100%;
}

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1020;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar.hide {
  transform: translateY(-100%);
  display: none;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  font-style: italic;
}

.logo:hover {
  color: #d4a574;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #d4a574;
}

.nav-link.active {
  color: #d4a574;
}

.flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  margin-right: 5px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Footer */

.footer-widgets {
  padding: 60px 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widgets .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-widget h3 {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.footer-widget h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #d4a574;
  margin-top: 8px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-widget p {
  margin: 30px 0 20px;
  color: #404040;
  line-height: 1.7;
}

.latest-posts,
.useful-links,
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-posts li,
.useful-links li,
.contact-details li {
  margin-bottom: 12px;
}

.latest-posts a,
.useful-links a,
.contact-details a {
  color: #404040;
  text-decoration: none;
  transition: 0.3s;
}

.latest-posts a:hover,
.useful-links a:hover,
.contact-details a:hover {
  color: #d4a574;
}

.contact-details i {
  margin-right: 10px;
  color: #d4a574;
  width: 12px;
  text-align: center;
}

.subfooter {
  background: #111;
  padding: 10px 5%;
}

.subfooter .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyrights {
  font-size: 13px;
  color: #acacac;
  text-align: center;
}

.copyrights a {
  color: #d4a574;
  text-decoration: none;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .navbar {
    height: 80px;
  }

  .navbar-collapse {
    background-color: white;
    padding: 1% 3%;
  }

  .carousel-item {
    height: 40vh;
  }

  .carousel-item h5 {
    font-size: 35px;
  }
  .carousel-item p {
    margin-bottom: 20px;
  }
  .hotel-room-section {
    margin-top: 70px;
  }

  .custom-contact-info {
    margin-left: 10px;
    width: 95%;
    margin-right: 20px;
  }

  .read-more-btn {
    margin-bottom: 20px;
  }

  .about-us {
    width: 95%;
  }

  .section-header {
    width: 95%;
  }
  .about-us {
    width: 95%;
  }
  .about-us p {
    margin-left: 25px;
  }
  .about-us h3 {
    margin-left: 25px;
  }
}

/* Mobile devices (screen widths of 576px and below) */
@media (max-width: 576px) {
  .top-bar {
    display: none;
  }

  .navbar {
    height: 80px;
  }

  .navbar-collapse {
    background-color: white;
    padding: 1% 3%;
  }

  .carousel-item {
    height: 40vh;
  }

  .carousel-item h5 {
    font-size: 35px;
  }
  .carousel-item p {
    margin-bottom: 20px;
  }

  .hotel-room-section {
    margin-top: 70px;
  }

  .custom-contact-info {
    margin-left: 10px;
    width: 95%;
    margin-right: 20px;
  }

  .read-more-btn {
    margin-bottom: 20px;
  }

  .about-us {
    width: 95%;
  }
  .about-us p {
    margin-left: 25px;
  }
  .about-us h3 {
    margin-left: 25px;
  }

  .section-header {
    width: 95%;
  }

  .room-card {
    margin: 5px 0;
  }
  .room-title {
    font-size: 1.1em;
  }
  .room-description {
    font-size: 0.85em;
  }
  .room-img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 996px) {
  .navbar-collapse {
    background-color: white;
    padding: 1% 3%;
  }
}

/* For large desktops (widths of 1200px and above) */
@media (min-width: 1200px) {
  .room-card {
    max-width: 1200px;
    margin: 20px auto;
  }
}
