:root {
  --color-bg: #faf6ef;
  --color-surface: #ffffff;
  --color-ink: #22303a;
  --color-ink-soft: #5a6a72;
  --color-sea: #1b4b5a;
  --color-sea-dark: #123540;
  --color-sea-light: #2e6b7a;
  --color-clay: #b9552e;
  --color-clay-dark: #984627;
  --color-sand: #e4d9c3;
  --color-border: #e4ded2;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", Arial, sans-serif;
  --section-padding: 6rem 0;
  --radius: 6px;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-bg);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
}

.title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--color-sea-dark);
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.title::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 56px;
  height: 3px;
  background-color: var(--color-clay);
}

.title-inverse {
  color: var(--color-bg);
}

.title-inverse::after {
  background-color: var(--color-sand);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: 0.75rem;
}

.eyebrow-inverse {
  color: var(--color-sand);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-heading .title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtext {
  color: var(--color-ink-soft);
  margin: 0;
}

p {
  color: var(--color-ink-soft);
}

.btn.book-now,
.btn.book-now:hover {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--color-bg);
  background-color: var(--color-clay);
  border: 1px solid var(--color-clay);
  border-radius: var(--radius);
  padding: 0.75rem 2rem;
}

.navbar {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-ink);
  padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-clay);
}

.dropdown-menu {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.logo {
  width: 130px;
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
  color: white;
}

.carousel-inner,
.carousel-inner img {
  height: 85vh;
  width: 100%;
  object-fit: cover;
}

.carousel-inner img {
  filter: brightness(0.6);
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 45px !important;
  height: 45px !important;
  background-color: #984627;
  background-size: 50% 50%;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: #123540;
}

.hero-title {
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.85rem;
}

.hero-title::after {
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-sand);
}

.hero-paragraph {
  font-size: 1.05rem;
  color: var(--color-bg);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.section {
  padding: 100px 0;
}

.rooms-section {
  background-color: var(--color-surface);
  padding: 100px 0;
}

.room-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.room-image {
  position: relative;
}

.room-image img {
  width: 100%;
  object-fit: cover;
}

.room-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--color-sea-dark);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
}

.room-price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-sand);
}

.room-body {
  padding: 1.75rem;
}

.room-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-sea-dark);
  margin: 0 0 0.5rem;
}

.room-body p {
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  row-gap: 1rem;
  column-gap: 1rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  row-gap: 0.4rem;
  column-gap: 0.4rem;
}

.room-features i {
  color: var(--color-clay);
}

.banner {
  position: relative;
  padding: 7rem 0;
  background-size: initial;
  background-position: center;
  background-attachment: initial;
  background: url('../image/image3.png');
  background-color: rgba(0, 0, 0, 0.59);
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  height: 50vh;
  width: 100%;
  background-image: url("https://api.intermedia-web.com/getSavedAsset/moonapartment/moon-apartament.al/moon-apartament.al_2026-08-18_14-20-46-192/img/20260818_121552_869906705.jpg");
  background-position-x: center;
  background-position-y: center;
  background-origin: initial;
  background-clip: initial;
  background-size:cover;
}

.banner-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.banner-text {
  color: var(--color-sand);
  margin-bottom: 2rem;
}

.facility-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
}

.facility-icon {
  font-size: 2.25rem;
  color: var(--color-clay);
  margin-bottom: 1rem;
}

.facility-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-sea-dark);
  margin: 0 0 0.5rem;
}

.facility-card p {
  margin: 0;
  font-size: 0.95rem;
}

.testimonials-section {
  background-color: var(--color-sand);
}

.testimonial-card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: var(--color-clay);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  row-gap: 0.85rem;
  column-gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-sea-dark);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

.footer {
  background-color: var(--color-sea-dark);
  color: var(--color-sand);
  padding-top: 4.5rem;
}

.logoo {
  width: 120px;
  display: inline-block;
}

.footer-logo img {
  max-height: 40px;
  margin-bottom: 1.25rem;
}

.footer p {
  color: rgba(228, 217, 195, 0.75);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  row-gap: 0.75rem;
  column-gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(228, 217, 195, 0.35);
  border-radius: 50%;
  color: var(--color-sand);
}

.footer-social a:hover {
  background-color: var(--color-clay);
  border-color: var(--color-clay);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-bg);
  margin-bottom: 1.25rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(228, 217, 195, 0.75);
}

.footer-links a:hover {
  color: var(--color-sand);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  row-gap: 0.5rem;
  column-gap: 0.5rem;
}

.footer-contact i {
  color: var(--color-clay);
  margin-top: 0.2rem;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(228, 217, 195, 0.6);
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.maps {
  width: 100%;
}

.hero-about {
  background-color: rgba(0, 0, 0, 0.59);
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background-image: url("../img/20260818_115655_869906705.webp");
  background-origin: initial;
  background-clip: initial;
  background-position-x: center;
  background-position-y: center;
}

.hero-contact {
  background: url('../img/20260818_115704_869906974.webp');
  background-color: rgba(0, 0, 0, 0.589);
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}

.hero-rooms {
  background-image: url(https://api.intermedia-web.com/getSavedAsset/moonapartment/moon-apartament.al/moon-apartament.al_2026-08-18_14-20-46-192/img/20260818_141520_869906705.jpg);
  background-color: rgba(0, 0, 0, 0.59);
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background-position-x: center;
  background-position-y: center;
}

.breadcrumb-item a,
.breadcrumb-item.active {
  color: white !important;
  font-family: var(--font-display);
  font-size: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: white;
}

.contact-name {
  width: 100%;
  height: 500px;
}

.btn.book-now {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--color-bg);
  background-color: var(--color-clay);
  padding-top: 0.75rem;
  padding-right: 2rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
}

.btn.book-now:hover {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--color-bg);
  background-color: var(--color-clay);
  padding-top: 0.75rem;
  padding-right: 2rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
}

.nav-link:hover {
  color: var(--color-clay);
}

.nav-link:focus {
  color: var(--color-clay);
}

.carousel-inner,
.carousel-inner img {
  height: 85vh;
  width: 100%;
  object-fit: cover;
}

.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next {
  opacity: 1;
}

.carousel-control-prev-icon {
  background-color: rgb(152, 70, 39);
  background-size: 50% 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  backdrop-filter: blur(4px);
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  width: 45px !important;
  height: 45px !important;
}

.carousel-control-next-icon {
  background-color: rgb(152, 70, 39);
  background-size: 50% 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  backdrop-filter: blur(4px);
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  width: 45px !important;
  height: 45px !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgb(18, 53, 64);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(228, 217, 195, 0.75);
}

.breadcrumb-item.active,
.breadcrumb-item a {
  font-family: var(--font-display);
  font-size: 16px;
  color: white !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: white;
}

.c6151 {
  color: rgb(250, 246, 239);
  font-family: Fraunces, Georgia, serif;
}

.c6249 {
  color: rgb(250, 246, 239);
  font-family: Fraunces, Georgia, serif;
}

.cropped-image {
  object-fit: cover !important;
  object-position: center !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
}

.cropped-image-parent,
*:has(.cropped-image) {
  overflow: hidden !important;
  position: relative !important;
}

.cropped-image-parent,
:has(.cropped-image) {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  position: relative !important;
}

.carousel-inner, .carousel-inner img {
  height: 85vh;
  width: 100%;
  object-fit: cover;
}

.carousel-control-prev:hover .carousel-control-prev-icon, .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgb(18, 53, 64);
}

.footer-links li, .footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(228, 217, 195, 0.75);
}

.breadcrumb-item.active, .breadcrumb-item a {
  font-family: var(--font-display);
  font-size: 16px;
  color: white !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.cropped-image-parent, :has(.cropped-image) {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  position: relative !important;
}

@media (max-width:425px) {
  .hero-title {
    font-size: 3rem;
  }
  .banner {
    height: auto;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 45px !important;
  }
  .carousel-control-prev-icon {
    width: 45px !important;
  }
  .carousel-control-next-icon {
    width: 45px !important;
  }
}