@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;0,800;1,200&display=swap");
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

:root {
  --navLink: #7A4E37;
  --primaryColor: #D6885D;
  --primaryTitleColor: #3D3A3B;
  --primaryBodyTextColor: #707070;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--primaryBodyTextColor);
}

.hide-desktop {
  display: block;
}

.hide-mobile {
  display: none;
}

.hide-tablet {
  display: none;
}

.header {
  width: 100vw;
  margin: 2rem auto;
}
.header .nav-list {
  display: none;
  flex-direction: column;
}
.header .nav-list.show-mobile {
  display: flex;
  width: 100%;
  position: fixed;
  top: -1rem;
  background-color: #ffffff;
  padding-left: 0;
  z-index: 10;
}
.header .nav-list.show-mobile li {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
  list-style-type: none;
}
.header .nav-list.show-mobile li img {
  cursor: pointer;
  background-color: #707070;
}
.header .nav-list.show-mobile li a {
  text-decoration: none;
  color: var(--navLink);
}
.header .nav-list.show-mobile #exit-btn {
  text-align: end;
  padding: 1rem 3rem;
}
.header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin: auto;
}
.header nav .logo img {
  height: 2.1rem;
  padding-right: 0.7rem;
}
.header nav .logo .logo-text {
  line-height: 95%;
  color: #474746;
  font-size: 1.2rem;
}
.header nav .logo span {
  color: #621B1B;
  font-weight: 600;
}
.header nav .menu-toggle {
  cursor: pointer;
  margin: auto;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primaryTitleColor);
  margin-bottom: 1rem;
}
.hero p {
  color: var(--primaryBodyTextColor);
  font-style: italic;
  font-weight: 600;
}
.hero .author {
  color: #999;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.narrative-text {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}
.narrative-text img {
  width: 50%;
  border-radius: 8px;
}
.narrative-text .text-content {
  flex: 1;
  font-size: 0.95rem;
}
.narrative-text p {
  margin-bottom: 1rem;
}

.locations {
  justify-content: center;
  background-color: #F6F6F6;
  padding: 4rem;
}
.locations h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.locations .location-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.locations .location-grid .location-card {
  width: 100%;
}
.locations .location-grid .location-card img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.locations .location-grid .location-card h3 {
  margin-bottom: 0.5rem;
}
.locations .location-grid .location-card p {
  color: #666;
  font-size: 0.9rem;
}

.addresses {
  margin-bottom: -1rem;
  padding: 2rem 1rem;
  background-color: var(--primaryTitleColor);
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
}
.addresses .address .name {
  font-size: 1.2rem;
  font-weight: 700;
}
.addresses .address .address-body span {
  font-size: 1.1rem;
  font-weight: 600;
}
.addresses .right-footer div, .addresses .right-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  text-decoration: none;
  color: white;
}
.addresses .right-footer .legal-content {
  flex-direction: column;
  padding-bottom: 1.5rem;
}
.addresses img {
  width: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 1rem 0 0;
}

@media only screen and (min-width: 800px) {
  .hide-mobile {
    display: block;
  }
  .hide-desktop {
    display: none;
  }
  .header {
    display: flex;
    align-items: center;
    padding: 1rem 4rem;
    width: 100%;
    background: white;
  }
  .header .nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
  }
  .header .nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: auto;
  }
  .header .nav .logo img {
    height: 2.1rem;
    padding-right: 0.7rem;
  }
  .header .nav .logo .logo-text {
    line-height: 95%;
    color: #474746;
    font-size: 1.2rem;
  }
  .header .nav .logo span {
    color: #621B1B;
    font-weight: 600;
  }
  .header .nav .menu-toggle {
    display: none;
  }
  .header .nav .nav-list {
    display: flex;
    flex-direction: row;
    margin: auto;
  }
  .header .nav .nav-list li {
    list-style-type: none;
    border-bottom: none;
    padding: 0.8rem;
  }
  .header .nav .nav-list li a {
    text-decoration: none;
    color: var(--navLink);
    font-size: 0.9rem;
  }
  .header .nav .nav-list li a:hover {
    font-weight: 600;
  }
  .header .nav .nav-list .hide-desktop {
    display: none;
  }
  nav ul li a.active {
    position: relative;
  }
  nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--navLink);
    border-radius: 6px;
  }
  .narrative-text img {
    -o-object-fit: contain;
       object-fit: contain;
    width: auto;
    max-height: 650px;
    justify-content: space-between;
    margin-left: -3rem;
  }
  .narrative-text .text-content {
    font-size: 0.9rem;
  }
  .locations .location-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .locations .location-grid .location-card {
    width: 30%;
  }
  .addresses {
    margin-bottom: -1rem;
    padding: 1rem 1rem;
    background-color: var(--primaryTitleColor);
  }
  .addresses .address-content {
    display: flex;
    flex-direction: row;
    width: 85vw;
    max-width: 1500px;
    margin: auto;
    justify-content: space-between;
    padding: 1rem;
  }
  .addresses .address {
    text-align: left;
  }
  .addresses .right-footer div, .addresses .right-footer a {
    justify-content: left;
    margin: 0;
    padding: 0.5 rem;
  }
  .addresses .right-footer .legal-content {
    flex-direction: row;
    gap: 2rem;
    padding-bottom: 0.5rem;
  }
  .addresses img {
    width: 2.4rem;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 0 1rem 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .hide-tablet {
    display: block;
  }
  .header .nav .nav-list li {
    padding: 1rem;
  }
  .header .nav .nav-list li a {
    font-size: 1rem;
  }
  .header .nav .hide-desktop {
    display: none;
  }
  .narrative-text {
    justify-content: center;
  }
  .narrative-text img {
    margin-left: 0;
  }
  .narrative-text .text-content {
    max-width: 40%;
    font-size: 1rem;
  }
  .locations .location-grid {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    margin: auto;
  }
}
@media only screen and (min-width: 1440px) {
  header nav .logo {
    margin-left: 10vw;
  }
  .header .nav .nav-list li {
    padding: 1.2rem;
  }
  .header .nav .nav-list li a {
    font-size: 1.2rem;
  }
  .header .nav .hide-desktop {
    display: none;
  }
  .addresses .address-content {
    width: 80vw;
  }
}
@media only screen and (min-width: 1900px) {
  .header .nav .logo img {
    height: 3rem;
  }
  .header .nav .logo .logo-text {
    font-size: 1.5rem;
  }
  .header .nav .nav-list li {
    padding: 1.5rem;
  }
  .header .nav .nav-list li a {
    font-size: 1.5rem;
  }
  .header .nav .hide-desktop {
    display: none;
  }
  .narrative-text .text-content {
    max-width: 30%;
  }
}/*# sourceMappingURL=chai.css.map */