:root {
  --main-color: #fcf4f8;
  --accent-color: #a31449;
  --accent-color-2: #ff8a00;
  --text-color: #590d26;
  --gradient-color: linear-gradient(#e52e71, #ff8a00);
  --radius-corner: 7rem;
}
@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: "Imperial Script";
  src: url(../fonts/ImperialScript-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Castoro";
  src: url(../fonts/Castoro-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: "Castoro";
  background-color: var(--main-color);
  color: var(--text-color);
}
.container-fluid {
  max-width: 2600px;
}
.accent-color {
  color: var(--accent-color);
}
.accent-font {
  font-family: "Jost";
}
.secondary-font {
  font-family: "Imperial Script";
}
h2.secondary-font {
  font-size: 3.5rem;
}
.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;
}
:is(a, button):hover {
  text-decoration: none;
}
.btn {
  text-decoration: 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 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 0.5rem;
  min-width: 16rem;
  height: 4rem;
  transition: all 0.3s ease-in-out;
  border-radius: 999px;
  text-transform: uppercase;
  font-family: "Jost";
  font-weight: bold;
  letter-spacing: 2px;
}
.action-btn:hover,
.action-btn:focus {
  transform: scale(0.95);
}
.light-btn {
  background-color: var(--main-color);
  color: black;
}
.light-btn:hover,
.light-btn:focus {
  color: black;
}
.dark-btn {
  background-color: black;
  color: var(--accent-color-2);
}
.dark-btn:hover,
.dark-btn:focus {
  color: var(--accent-color-2);
}

:is(a, button, .btn):focus-visible {
  outline-offset: 3px;
  outline: 3px solid #000000;
  box-shadow: none;
  text-decoration: none;
}
:is(a, button, .btn, .focus-style-over-light):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.focus-style-over-light:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #ffffff;
  box-shadow: none;
  text-decoration: none;
}
.decor-title {
  width: 3rem;
  height: auto;
  opacity: 0.3;
}
/* ------header----- */
.container-header .h1 {
  letter-spacing: 1px;
}
.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #590d26;
  color: white;
}
.nav-item > .nav-link {
  background-color: transparent;
  border: none;
  color: white;
  text-transform: uppercase;
}
/* ------------nav------- */
.nav-btn {
  color: white;
}
.nav-btn:focus,
.nav-btn:hover {
  box-shadow: none;
  transition: all 0.2s linear;
  color: #000000;
}
/* ------hero------- */
.container-hero {
  overflow: hidden;
  background-color: var(--accent-color);
  border-bottom-right-radius: 8rem;
}
.hero-decor {
  position: absolute;
  height: auto;
  opacity: 0.2;
}

/* -----announcement--- */
.announcement-content {
  position: relative;
  z-index: 33;
  background: url(../images/stock-04.avif) right center / cover no-repeat;
  border: 1px solid #e5e5e5;
  border-radius: 0.3rem var(--radius-corner) 0.3rem 0.3rem;
}
.announcement-decor img {
  position: relative;
  z-index: 5;
}
.announcement-decor::after {
  content: "";
  position: absolute;
  width: 105%;
  height: 115%;
  top: -2rem;
  right: 0;
  background: url(../images/dot-bg.svg) no-repeat center center;
  background-size: cover;
  display: block;
  z-index: 1;
  opacity: 0.5;
  border-radius: var(--radius-corner) 0.3rem 0.3rem 0.3rem;
}
.divider {
  width: 100%;
  max-width: 50rem;
  height: auto;
}
/* ---------info------- */
.contact-decor {
  position: relative;
  z-index: 0;
}
.contact-decor::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1rem;
  right: 0;
  background: url(../images/dot-bg.svg) no-repeat center center;
  background-size: cover;
  display: block;
  z-index: -1;
  opacity: 0.3;
  border-radius: var(--radius-corner) 0.3rem var(--radius-corner) 0.3rem;
}
/* -----service----- */
.container-service {
  background-color: var(--accent-color);
}
.cate-name {
  background-color: var(--main-color);
}
.service-row {
  display: flex;
  flex-wrap: nowrap;
  font-size: 20px;
}
.service-line {
  flex: 1 1 auto;
  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: linear-gradient(
      63deg,
      rgba(255, 138, 0, 0.5),
      rgba(229, 46, 113, 0.4)
    ),
    url(../images/bg-intro-02.avif) no-repeat center center;
  background-size: cover;
}
.intro-dercor {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 0;
}
.intro-img > img {
  border-radius: 0.3rem 0.3rem var(--radius-corner) 0.3rem;
}
/* ----------gallery---------- */
.gallery-item > img {
  margin-bottom: 2rem;
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: center center;
}
.gallery-item:nth-of-type(odd) img {
  border-radius: 0.3rem 0.3rem 5rem 0.3rem;
}
.gallery-item:nth-of-type(even) img {
  border-radius: 5rem 0.3rem 0.3rem 0.3rem;
}
/* ---egift----- */
.container-egift {
  overflow: hidden;
  background: url(../images/bg-gift.avif) left center / cover no-repeat;
}

/* -------footer-------------- */
.container-footer {
  background-color: var(--accent-color);
  border-radius: 0 var(--radius-corner) 0 0;
}
.footer-border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.footer-border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
/* =================================== */
@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .padding-bottom {
    padding-bottom: 5rem;
  }
  .padding-top {
    padding-top: 5rem;
  }
  .container-header .h1 {
    font-size: 2.5rem;
  }
  .gallery-item > img {
    margin-bottom: 1rem;
  }
  .announcement-w {
    max-width: 14rem;
  }
  .hero-bg-decor {
    background: url(../images/bg-hero-mobile.avif) center center / cover
      no-repeat;
    width: 100%;
    height: 20rem;
  }
}
@media (min-width: 576px) {
  .container-header .h1 {
    font-size: 3.2rem;
  }
  .hero-bg-decor {
    background: url(../images/bg-hero.avif) center center / cover no-repeat;
    width: 100%;
    height: 48rem;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .announcement-w {
    max-width: 20rem;
  }
}
@media (max-width: 767.98px) {
  .service-line {
    border-bottom: none;
  }
  .announcement-decor img {
    border-radius: 0.3rem 0.3rem var(--radius-corner) 0.3rem;
  }
}
@media (min-width: 768px) {
  .service-line {
    border-bottom: 1px dashed #999999;
  }
  .announcement-decor img {
    border-radius: 0.3rem 0.3rem 0.3rem var(--radius-corner);
  }
}

@media (max-width: 991.98px) {
  .footer-border-right {
    border-right: none;
  }
  .hero-decor {
    bottom: -9rem;
    right: -3rem;
    width: 18rem;
  }
}
@media (min-width: 992px) {
  .announcement-w {
    max-width: 30rem;
  }
  .hero-decor {
    bottom: -8rem;
    left: -5rem;
    width: 22rem;
  }
}
@media (max-width: 1199.98px) {
  .container-header {
    display: block;
  }
  .header-border-left {
    border-left: none;
  }
}
@media (min-width: 1200px) {
  .header-border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
}
