:root {
  --background-color: #FEFAF4;
  --hover-color: #e8e0d2;
  --hover-color-dark: #271511;
  --accent-color: #F3EDE3;
  --text-color: #4B2F28;
  --text-color-light: #75554D;
  --border-color: #dfd3d0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  text-decoration: none;
}

body {
  background-color: var(--background-color);
}

/* --- Layout Components --- */
.container {
  max-width: 1380px;
  margin: auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  color: var(--text-color);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h1 {
  font-family: Cardo, serif;
  font-size: 32px;
}

h2 {
  font-family: Cardo, serif;
  font-size: 32px;
  margin-bottom: 16px;
}

h3 {
  font-family: Inter, sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
}

h4 {
  font-family: Inter, sans-serif;
  font-size: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}

p {
  color: var(--text-color-light);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
}
p:empty {
  display: none;
}

/* --- Buttons --- */
.book-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--text-color);
  text-decoration: none;
  font-family: Cardo, serif;
  font-size: 18px;
  padding: 16px 28px;
  color: var(--background-color);
  transition: all 0.3s ease;
  outline: none !important;
}
.book-button:hover {
  background-color: var(--hover-color-dark);
}

.book-button2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Cardo, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
}
.book-button2 img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

/* --- Header & Navigation --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 240px;
}

.desktop-navbar {
  width: 100%;
  display: none;
  background-color: var(--background-color);
}
.desktop-navbar .desktop-navbar-container {
  margin: auto;
  display: flex;
  align-items: center;
  padding: 24px 20px;
  justify-content: space-between;
  max-width: 1380px;
  width: 100%;
  gap: 32px;
}
.desktop-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-navbar .nav-links ul {
  list-style: none;
  display: flex;
  gap: 2px;
}
.desktop-navbar .nav-links ul li {
  display: flex;
  align-items: center;
  color: var(--text-color);
}
.desktop-navbar .nav-links ul li a {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 500;
  font-family: Cardo, serif;
  padding: 16px 28px;
}
.desktop-navbar .nav-links ul li:hover {
  background-color: var(--hover-color);
  border-radius: 100px;
}

.mobile-navbar {
  background: var(--background-color);
  z-index: 1000;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  position: sticky;
}
.mobile-navbar .mobile-navbar-container {
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: space-between;
  width: 100%;
}

/* --- Menu Toggle & Offcanvas --- */
.menu-toggle {
  display: none;
}
.menu-toggle:checked ~ .mobile-navbar-container .hamburger span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.menu-toggle:checked ~ .mobile-navbar-container .hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked ~ .mobile-navbar-container .hamburger span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
.menu-toggle:checked ~ .offcanvas-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.menu-toggle:checked ~ .offcanvas-menu {
  right: 0;
}

.hamburger {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 6px;
}
.hamburger span:nth-child(2) {
  top: 15px;
}
.hamburger span:nth-child(3) {
  top: 24px;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: var(--background-color);
  transition: right 0.3s;
  z-index: 1050;
}
.offcanvas-menu .menu-items {
  margin: 80px 20px 36px 20px;
}
.offcanvas-menu .menu-items ul {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
}
.offcanvas-menu .menu-items ul li {
  width: 100%;
  padding: 18px;
}
.offcanvas-menu .menu-items ul li a {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 500;
  font-family: Cardo, serif;
  padding: 18px;
}
.offcanvas-menu .menu-items .book-button {
  display: flex;
  margin: 28px auto 0;
  max-width: 90%;
}

.offcanvas-backdrop {
  display: none;
  position: fixed;
  z-index: 1049;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 24, 10, 0.32);
  transition: opacity 0.3s;
  cursor: pointer;
}

.studio-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  margin-bottom: 24px;
  justify-content: center;
}
.studio-amenities .amenity-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--border-color);
  padding: 2px 8px;
  border-radius: 100px;
}
.studio-amenities .amenity-item img {
  width: 20px;
  height: 20px;
}
.studio-amenities .amenity-item span {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 500;
}

.banner {
  height: 450px;
  overflow: hidden;
  position: relative;
}
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}

.intro {
  background-color: var(--accent-color);
  padding: 70px 0 20px 0;
}
.intro .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 750px;
  margin: auto;
}
.intro img {
  max-width: 312px;
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.intro h1,
.intro p {
  text-align: center;
}

.studio-listings {
  background-color: var(--accent-color);
  padding: 50px 0;
}
.studio-listings .list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.studio-listings .list .studio {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.studio-listings .list .studio .studio-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.studio-listings .list .studio .studio-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 20px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 12px 12px;
  height: 100%;
  text-align: center;
}
.studio-listings .list .studio .studio-content h2 {
  margin-bottom: 6px !important;
}
.studio-listings .list .studio .studio-content p {
  color: var(--text-color);
}

.split-section {
  padding: 50px 0;
}
.split-section .inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.split-section .inner .text {
  text-align: center;
}
.split-section img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}

footer {
  background-color: var(--text-color);
  margin: auto;
  width: 100%;
  padding: 40px 0;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
footer .footer-container .footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-direction: column;
  list-style: none;
}
footer .footer-container .footer-links a {
  color: var(--accent-color);
  font-family: Cardo, serif;
  font-size: 20px;
}
footer .footer-container .instagram {
  color: var(--accent-color);
  font-family: Cardo, serif;
  font-size: 18px;
}
footer .footer-container .instagram:hover {
  color: var(--background-color);
}
footer .footer-container .copyright {
  margin: 16px 20px 0 20px;
}
footer .footer-container .copyright p {
  color: var(--accent-color);
  font-size: 12px;
  text-align: center;
  font-family: Cardo, serif;
}

/* --- Media Queries --- */
@media (min-width: 900px) {
  .studio-amenities {
    justify-content: flex-start;
  }
  .banner {
    height: 600px;
  }
  footer .footer-container .footer-links {
    flex-direction: row;
    gap: 72px;
  }
  footer .footer-container .footer-links a {
    color: var(--accent-color);
    font-family: Cardo, serif;
    font-size: 20px;
  }
  .studio-listings .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .studio-listings .list .studio {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .studio-listings .list .studio .studio-content {
    text-align: left;
  }
  .split-section {
    padding: 80px 0;
  }
  .split-section .inner .text {
    text-align: left;
  }
  .split-section.stargazers-paradise {
    direction: rtl;
    background-color: var(--accent-color);
  }
  .split-section.stargazers-paradise .text {
    margin-right: 20px;
  }
  .split-section.stunning-views .text {
    margin-left: 20px;
  }
  .split-section .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .mobile-navbar {
    display: none;
  }
  .desktop-navbar {
    display: flex;
  }
}/*# sourceMappingURL=styles.css.map */