:root {
  --main-color: #141415;
  --secondary-color: #54595f;
  --accent-color: #ca8fc7;
  --accent-color-2: #813772;
}
@font-face {
  font-family: "Figtree";
  src: url(../fonts/Figtree-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Figtree";
  color: black;
}
.padding-section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
.padding-bottom {
  padding-bottom: 6.5rem;
}
.padding-top {
  padding-top: 6.5rem;
}
.accent-font {
  font-family: "Playfair Display";
}
.accent-color {
  color: var(--accent-color);
}
.accent-color-2 {
  color: var(--accent-color-2);
}
a,
button {
  text-decoration: underline;
}
.btn {
  text-decoration: none;
}
:is(a, button):hover {
  text-decoration: none;
}
:is(a, button, .btn):focus-visible {
  outline-offset: 3px;
  outline: 3px solid #ffffff;
  box-shadow: none;
  text-decoration: none;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.skip-link {
  position: absolute;
  top: -5rem;
  left: 0;
  background: #ffffff;
  color: #040303;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}
.action-btn {
  width: 13rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  padding: 0;
  overflow: hidden;
  background-color: white;
  transition: all 0.2s ease-out;
  border-radius: 444px;
}
.action-text {
  width: 78%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  padding-right: 5px;
  font-family: "Playfair Display";
}
.action-icon {
  width: 22%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 100%;
}
.action-icon > img {
  width: 30px;
  height: auto;
}
.action-btn:hover {
  background-color: var(--accent-color-2);
}
.action-btn > .action-text:hover {
  color: white;
}
/* --------header-------- */
.container-header {
  background-color: var(--main-color);
}
.brand-name {
  font-style: italic;
  display: flex;
}
.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--------- */
.hero-content {
  background-color: var(--accent-color);
}
/* -----------announcement------ */
.container-announcement {
  background: url(../images/bg-announcement.avif) no-repeat left center;
  background-size: cover;
}
.announcement-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  background-color: var(--main-color);
}
/* -----------info------- */
.container-info {
  background: url(../images/bg-info.avif) no-repeat right center;
  background-size: cover;
}
.info-column-area {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/bg-info-column.avif) no-repeat center bottom;
  background-size: cover;
}
.info-content {
  background-color: var(--main-color);
}
/* -----------services------- */
.service-border {
  position: relative;
  border: 2px solid var(--accent-color-2);
}
.service-border::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% + 16px);
  border-radius: 0.3rem;
  border: 2px solid var(--accent-color-2);
}
.service-row {
  display: flex;
  font-size: 1rem;
  flex-wrap: nowrap;
  font-weight: bolder;
}
.service-name {
  width: auto;
}
.service-line {
  flex: 1 1 auto;
  height: 1rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.service-price {
  width: auto;
  text-align: right;
  white-space: nowrap;
}
.service-desc {
  margin-left: 0.8rem;
}
/* ---intro--- */
.container-intro {
  background-color: var(--accent-color);
}
/* ------egift------- */
.container-gift {
  background: url(../images/bg-gift.avif) no-repeat center bottom;
  background-size: cover;
}
.gift-column-area {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/bg-gift-column.avif) no-repeat right center;
  background-size: cover;
}
.gift-content {
  background-color: rgba(0, 0, 0, 0.88);
}
/* -------footer------- */
.container-footer {
  background-color: var(--main-color);
  color: white;
}
/* =================================== */
@media (max-width: 575.98px) {
  .container-hero {
    background: url(../images/bg-hero-mobile.avif) center center / cover
      no-repeat;
    min-height: 25rem;
  }
  .service-line {
    border-bottom: none;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .container-hero {
    background: url(../images/bg-hero-tablet.avif) center bottom / cover
      no-repeat;
    min-height: 35rem;
  }
  .service-line {
    border-bottom: 1px dashed #9f9f9f;
  }
}

@media (max-width: 767.98px) {
  .call-top,
  .brand-name {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .call-top {
    justify-content: end;
  }
  .brand-name {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .container-hero {
    background: url(../images/bg-hero.avif) right bottom / cover no-repeat;
    min-height: 45rem;
  }
  .service-line {
    border-bottom: 1px dashed #9f9f9f;
  }
}
@media (min-width: 1200px) {
  .brand-name {
    justify-content: center;
  }
  .call-top {
    justify-content: start;
  }
}
