:root {
  --primary-color: #281818;
  --secondary-color: #1c0c0e;
  --accent-color: #fc8669;
  --accent-color-2: #fb552a;
  --text-color: #fff8f8;
  --button-color: #e9cdc4;
  --hover-light: #f8e9e0;
  --hover-dark: #221113;
}
@font-face {
  font-family: "Outfit";
  src: url(../fonts/Outfit-Thin.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/subset-PlayfairDisplay-Bold.woff2) format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url(../fonts/subset-ArchivoBlack-Regular.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quentin";
  src: url(../fonts/subset-Quentin.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: "Outfit";
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 700;
}
.accent-font {
  font-family: "Playfair Display";
}
.accent-font-2 {
  font-family: "Archivo";
}
.accent-font-3 {
  font-family: "Quentin";
}
.padding-section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
.padding-bottom {
  padding-bottom: 6.5rem;
}
a,
button {
  text-decoration: underline;
  color: black;
}
:is(a, button):hover {
  text-decoration: none;
  color: black;
}
:is(a, button, .btn):focus-visible {
  outline: 3px solid #0ffb8d;
  text-decoration: none;
  outline-offset: 3px;
  box-shadow: none;
}
.focus-style-over-light:focus-visible {
  outline: 3px solid #0c00b3;
  text-decoration: none;
  outline-offset: 3px;
  box-shadow: none;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 0;
  background: #ffffff;
  color: #000000;
  z-index: 111;
  padding: 0.5rem;
  font-weight: 700;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}
.action-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 11rem;
  height: 3.5rem;
  font-weight: bold;
  font-family: "Playfair Display";
  font-style: italic;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.light-btn {
  background-color: var(--button-color);
  color: var(--primary-color);
}
.light-btn:hover,
.light-btn:focus {
  background-color: var(--hover-light);
  color: black;
}
.light-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  z-index: 1;
  border-radius: 0.1rem;
  border: 2px solid rgba(34, 17, 19, 1);
  background: transparent;
}
.dark-btn {
  background-color: var(--primary-color);
  color: white;
}

.dark-btn:hover,
.dark-btn:focus {
  color: white;
}
.dark-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  z-index: 1;
  border-radius: 0.1rem;
  border: 2px solid rgb(255, 255, 255);
  background: transparent;
  transition: all 0.5s ease;
}
.dark-btn:hover::before,
.dark-btn:focus::before {
  border: 2px solid var(--accent-color);
}
.divider-decor::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.6rem;
  background: url(../images/stock-03.avif);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.divider-decor::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.6rem;
  background: url(../images/stock-03.avif);
  background-repeat: repeat-x;
  background-size: auto 100%;
  transform: scaleY(-1);
}
/* ---header---  */
.nav-main {
  display: flex;
  align-items: center;
}
.nav-item .nav-link {
  text-transform: uppercase;
  background-color: transparent;
  box-shadow: none;
  border: none;
  text-align: center;
  color: var(--accent-color);
  font-weight: 700;
}

/* ------hero------ */
.container-hero {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.hero-content {
  color: black;
  background-color: rgba(255, 255, 255, 0.95);
}

/* -------announcement----------- */
.container-announcement {
  background-color: var(--secondary-color);
}

/* ------------info----------- */
.container-info {
  background: linear-gradient(rgba(40, 24, 24, 0.7), rgba(40, 24, 24, 0.7)),
    url(../images/bg-info.avif) no-repeat center center;
  background-size: cover;
}
.contact-column {
  background: url(../images/bg-contact-decor.avif) no-repeat center center;
  background-size: cover;
}
/* ---service----  */
.highlight-img-box {
  box-shadow: 10px -10px 0px #e0b296;
  border-radius: 0.3rem;
}
.highlight-img {
  position: relative;
  transition: all 1s ease;
}
.highlight-text {
  position: absolute;
  bottom: 0.5em;
  left: 0.5em;
  z-index: 3;
}
.highlight-text > div {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw + 1rem, 1.875rem);
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 20px 333px 333px 20px;
}
.service-divider {
  border-bottom: 1px dashed #5f5f5f;
}
/* ------------intro---------- */
.container-intro {
  background-color: var(--secondary-color);
}
.intro-img {
  border-radius: 333px;
  box-shadow: 10px 1px 0px #e0b296;
  max-width: 400px;
}
/* ----------gallery-------- */
.gallery-item {
  margin-bottom: 2rem;
}
.gallery-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 4rem;
  color: var(--accent-color);
  margin: 0 auto;
  text-transform: capitalize;
}
/* ---egift---  */
.container-egift {
  background: url(../images/bg-egift.avif) no-repeat 20% center;
  background-size: cover;
}
/* ----footer----  */
.container-footer {
  background-color: var(--secondary-color);
}
/* =================================== */
@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
    line-height: 51px;
  }
  .padding-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .container-hero {
    background: url(../images/bg-hero-mobile.avif) center center / cover
      no-repeat;
    min-height: 27rem;
  }
  .gallery-item {
    margin-bottom: 1rem;
  }
}
@media (min-width: 576px) {
  .container-hero {
    background: url(../images/bg-hero.avif) right center / cover no-repeat;
    min-height: 40rem;
  }
}
@media (max-width: 767.98px) {
  .gallery-title {
    writing-mode: horizontal-tb;
    font-size: 3rem;
  }
}
@media (max-width: 1199.98px) {
  .nav-main {
    display: block;
  }
}
