:root {
  --main-color: #100d08;
  --accent-color: #c79529;
  --hover-color: #ddb759;
  --gradient-color: linear-gradient(
    123deg,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  --gradient-color-2: linear-gradient(to right, #e4b453, #d9aa47, #ad6f17);
  --gradient-color-3: linear-gradient(to right bottom, #402300, #644111);
}
@font-face {
  font-family: "Ephesis";
  src: url(../fonts/subset-Ephesis-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/subset-Montserrat-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/subset-CormorantGaramond-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: "Montserrat";
  background-color: var(--main-color);
  color: white;
}
.accent-color {
  color: var(--accent-color);
}
.accent-font {
  font-family: "Ephesis";
}
a,
button {
  text-decoration: underline;
}
:is(a, button):hover {
  text-decoration: none;
}
.btn {
  text-decoration: none;
}
.action-btn {
  padding: 0.7rem 0.5rem;
  width: 100%;
  font-weight: bolder;
  transition: color 0.5s ease, background-color 0.5s ease;
  background-color: white;
}
.action-btn:hover,
.action-btn:focus {
  background-color: var(--hover-color);
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 0;
  background: #ffffff;
  color: #040303;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}
:is(a, button, .btn):focus-visible {
  outline-offset: 3px;
  outline: 3px solid #00ddff;
  box-shadow: none;
  text-decoration: none;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
  outline-offset: none;
}
.padding-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.padding-bottom {
  padding-bottom: 120px;
}
.decor-text {
  background-image: linear-gradient(
    to right,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  background-clip: text;
  color: transparent;
  letter-spacing: 8px;
}
/* header  */
.navbar {
  background-image: var(--gradient-color-3);
}
.nav-item > .nav-link {
  background-color: transparent;
  border: none;
  color: white;
}

/* hero  */
.container-hero {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 0;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
}
.container-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-call {
  color: #0d0d0d;
}
.hero-call:hover {
  color: #0d0d0d;
}
/* announcement */
.container-announcement {
  background: url(../images/stock02.avif) repeat center center;
  background-size: contain;
}
/* service */
.container-service {
  background-image: var(--gradient-color);
  color: black;
}
.service-row {
  display: flex;
  flex-wrap: nowrap;
  font-size: 1rem;
  font-weight: bold;
}
.service-item {
  position: relative;
  padding-left: 1.7rem;
}
.service-item::before {
  position: absolute;
  content: url(../icons/flower-svgrepo-com.svg);
  top: 0%;
  left: 0px;
  height: 20px;
  width: 20px;
}
.cat-name {
  background-image: linear-gradient(
    to left,
    rgba(228, 180, 83, 0.1),
    #ffe9d1,
    rgba(173, 111, 23, 0.1)
  );
}

.service-line {
  border-bottom: 1px dashed #999999;
  flex: 1 1 auto;
  height: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.service-price {
  width: auto;
  text-align: right;
  white-space: nowrap;
  color: black;
}
.service-desc {
  color: #212121;
  font-style: italic;
}
/* ---------intro---------- */
.container-intro {
  background-color: #121212;
}
/* gallery */
.container-gallery {
  background-color: #100d08;
}
/* egift   */
.container-egift::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13rem;
  background: url(../images/stock02.avif) repeat-x center center;
  background-size: contain;
  z-index: -1;
  opacity: 0.4;
}
.gift-content {
  background-image: var(--gradient-color-3);
  z-index: 3;
}
/* footer */
.container-footer {
  background-color: #121212;
}
@media (max-width: 575.98px) {
  .padding-bottom {
    padding-bottom: 80px;
  }
  .padding-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-decor {
    width: 9rem;
    height: auto;
  }
  .container-hero::before {
    background-image: linear-gradient(
      to right,
      transparent,
      rgba(191, 149, 63, 0.6)
    );
  }
  .container-hero {
    background-image: url(../images/bg-hero-phone.avif);
    text-align: start;
    min-height: 30rem;
  }
  .header-btn {
    width: 100%;
    min-width: auto;
  }
  .header-actions {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 576px) {
  .container-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
      url(../images/bg-hero-desktop.avif);
    min-height: 40rem;
    text-align: end;
  }
  .container-hero::before {
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(191, 149, 63, 0.96) 50%
    );
  }
  .header-btn {
    min-width: 13rem;
    width: auto;
  }
  .header-actions {
    width: auto;
  }
}
