:root {
  --primary-color: #e4c9b9;
  --secondary-color: #100d08;
  --accent-color: #651d1a;
  --border: 1px solid #d0d0d0;
}
@font-face {
  font-family: "Abel";
  src: url(../fonts/subset-Abel-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url(../fonts/subset-DMSerifDisplay-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url(../fonts/subset-Lato-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Abel";
}
.accent-font {
  font-family: "Lato";
}
.accent-color {
  color: var(--accent-color);
}
.padding-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.padding-bottom {
  padding-bottom: 120px;
}
a,
button {
  text-decoration: underline;
  color: #000;
}
:is(a, button):hover {
  color: #000;
  text-decoration: none;
}
.btn {
  text-decoration: none;
}
:is(a, button, .btn):focus-visible {
  outline: 3px solid #1706ff;
  box-shadow: none;
  outline-offset: 3px;
}
.focus-style-over-dark:focus-visible {
  outline: 3px solid #ffffff;
  box-shadow: none;
  outline-offset: 3px;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.busi-hours dt {
  font-weight: 400;
}
.skip-link {
  position: absolute;
  left: 0;
  top: -100px;
  background-color: #060606;
  color: #f4f4f4;
  z-index: 333;
  padding: 0.5rem;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}
.action-btn {
  width: 14rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-family: "Lato";
}
.action-text {
  width: 75%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--accent-color);
}
.action-icon {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #561316;
}
.action-icon > img {
  width: 24px;
  height: auto;
}
/* -header-- */
.container-header {
  background-color: var(--primary-color);
}
.brand-name {
  font-style: italic;
  display: flex;
  font-family: "DM Serif Display";
}
.navbar {
  background-color: var(--secondary-color);
}
.nav-item .nav-link {
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  box-shadow: none;
  border: none;
  letter-spacing: 1px;
}
/* ------hero------ */
.container-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 40rem;
}
/* announcement */
.container-announcement {
  background-color: #e4c9b9;
  padding: 80px 0 0 0;
}
/* -contact  */
.info-grid-gallery {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 280px;
  grid-gap: 10px;
  grid-auto-flow: dense;
}
.info-grid-gallery .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: var(--border);
  border-radius: 0.5rem;
}
.info-grid-gallery .grid-item:nth-child(1) {
  grid-row: span 2;
}
/* -----service------ */
.container-service {
  background: url(../images/bg-service.avif) repeat-y center center;
  background-size: contain;
}
.service-row {
  flex-wrap: nowrap;
  display: flex;
  font-size: 1.2rem;
}
.service-line {
  flex: 1 1 auto;
  border-bottom: 1px dashed #131313;
  height: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.service-price {
  width: auto;
  white-space: nowrap;
  text-align: right;
  font-weight: bold;
}
/* intro */
.container-intro {
  background: url(../images/bg-service.avif) repeat-y center center;
  background-size: contain;
}
.intro-content {
  background-color: white;
  margin-top: -5rem;
  border: 0.3rem solid var(--primary-color);
}
.intro-img {
  max-width: 40rem;
}
.intro-img > img {
  border: var(--border);
}
.bg-intro {
  background: url(../images/bg-intro.avif) no-repeat center 70%;
  background-size: cover;
  width: 100%;
}
/* ----------gallery---------- */
.container-gallery {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
    url(../images/bg-gallery.avif);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.gallery-item > img {
  margin-bottom: 2rem;
  border-radius: 0.3rem;
}
/* ---gift--- */
.egift-banner {
  background-color: var(--primary-color);
}
.egift-banner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #1a1a1a;
  border-radius: 0.3rem;
}

/* ------footer----------- */
.container-footer {
  color: white;
  background-color: var(--secondary-color);
}

@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .padding-bottom {
    padding-bottom: 120px;
  }
  .info-grid-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-item > img {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .call-top,
  .brand-name {
    justify-content: center;
  }
  .bg-intro {
    height: 20rem;
  }
  .container-hero {
    background: url(../images/bg-hero-mobile.avif) no-repeat center center;
    background-size: cover;
    min-height: 32rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .call-top {
    justify-content: end;
  }
  .brand-name {
    justify-content: start;
  }
  .bg-intro {
    height: 30rem;
  }
}

@media (min-width: 768px) {
  .container-hero {
    background: url(../images/bg-hero.avif) no-repeat center center;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  .brand-name {
    justify-content: center;
  }
  .call-top {
    justify-content: start;
  }
  .bg-intro {
    height: 40rem;
  }
}
