:root {
  --main-color: #060606;
  --secondary-color: #faf9f6;
  --gradient-color: linear-gradient(
    34deg,
    #575757 0%,
    #ffffff 34%,
    #999999 68%,
    #e6e5e5 100%
  );
  --border: #494239;
}
@font-face {
  font-family: "Jost";
  src: url(../fonts/Jost-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gloock";
  src: url(../fonts/Gloock-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: "Jost";
  background-color: var(--main-color);
  color: white;
}
.container-fluid {
  max-width: 1920px;
}
h1,
h2 {
  letter-spacing: 3px;
}
p {
  line-height: 26px;
}
.accent-font {
  font-family: "Gloock";
}
.accent-color {
  color: var(--accent-color);
}
.border-custom {
  border: 1px solid var(--border);
}
.padding-section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
.padding-bottom {
  padding-bottom: 6.5rem;
}
.padding-top {
  padding-top: 6.5rem;
}
a,
button {
  text-decoration: underline;
}
.btn {
  border-radius: 0.7rem;
  text-decoration: none;
}
:is(a, button):hover {
  text-decoration: none;
}
:is(a, button, .btn):focus-visible {
  outline-offset: 3px;
  outline: 3px solid #ff8606;
  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;
}
.shadow-custom {
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
}
.action-btn {
  position: relative;
  z-index: 6;
  min-width: 12rem;
  height: 3rem;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Gloock";
  font-style: italic;
  text-align: center;
  color: black;
  text-decoration: none;
  user-select: none;
  background-color: black;
  touch-action: manipulation;
  padding: 0.3rem;
  margin: 0.5rem auto;
  background-color: white;
}
.action-btn::before {
  display: inline-block;
  content: "";
  position: absolute;
  border: 1px solid #ffffff;
  height: calc(100% + 2 * 6px);
  width: calc(100% - 2 * 3px);
  left: calc(3px - 0px);
  top: -6px;
  transition: all 0.2s linear;
  z-index: -4;
  background-color: transparent;
}
.action-btn:hover::before {
  width: calc(100% - 2 * 1px);
  height: calc(100% + 2 * 0px);
  left: calc(1px - 0px);
  top: 0px;
}
.h-section {
  min-height: 20rem;
}
.decor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* header  */
.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main-color);
  color: white;
}
.nav-item > .nav-link {
  background-color: transparent;
  border: none;
  color: white;
  text-transform: uppercase;
}

.navbar-toggler > img {
  filter: invert(100%);
}
.header-contact-icon {
  width: 3rem;
  height: auto;
}
/* ----hero----- */
.container-hero {
  position: relative;
  width: 100%;
  min-height: 40rem;
}
.hero-content {
  position: relative;
  z-index: 22;
  background-color: rgba(0, 0, 0, 0.9);
  max-width: 800px;
}
.hero-content::before {
  content: "";
  position: absolute;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  top: 7px;
  left: 7px;
  border: 1px solid var(--border);
  z-index: 44;
}
.hero-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 900px;
  height: auto;
  z-index: 12;
}

/* announcement */
.info-icon {
  filter: invert(100%);
}
/* service*/
.service-row {
  display: flex;
  font-size: 1rem;
  flex-wrap: nowrap;
}
.service-name {
  font-weight: 600;
  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;
  font-weight: bold;
}
.service-desc {
  margin-left: 0.8rem;
}
/* -----intro--------- */
.intro-decor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
/* ---------gallery------ */
/* -----egift---- */
.egift-content {
  border: 1px solid var(--border);
}
/* ----footer------- */
@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .padding-bottom {
    padding-bottom: 5rem;
  }
  .padding-top {
    padding-top: 5rem;
  }
  .action-btn {
    min-width: 10rem;
  }
  .container-hero {
    background: url(../images/bg-hero-mobile.avif) left center / cover no-repeat;
    min-height: 25rem;
  }
  .service-line {
    border-bottom: none;
  }
}
@media (min-width: 576px) {
  .service-line {
    border-bottom: 1px dashed var(--border);
  }
  .container-hero {
    background: url(../images/bg-hero.avif) left center / cover no-repeat;
  }
}
@media (max-width: 1199.98px) {
  .container-header {
    display: block;
  }
}
