:root {
  --primary-color: #e9f2f5;
  --secondary-color: #1d1f22;
  --accent-color: #004aad;
  --bg-secondary: #b2b2b2;
  --gradient-color: linear-gradient(
    to right top,
    #c2ddf2,
    #cde3f4,
    #d8e9f5,
    #e4eff7,
    #eff5f9
  );
}
@font-face {
  font-family: "Anton";
  src: url(../fonts/subset-Anton-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/subset-Poppins-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Corinthia";
  src: url(../fonts/subset-Corinthia-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: "Poppins";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-image: var(--gradient-color);
}
.accent-color {
  color: var(--accent-color);
}
.accent-font {
  font-family: "Anton";
}
.accent-font-2 {
  font-family: "Corinthia";
}
.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 {
  padding: 0.7rem 0.5rem;
  min-width: 12rem;
  transition: all 0.3s ease-in-out;
  border-radius: 999px;
  background-color: var(--secondary-color);
  color: white;
}
.action-btn:hover,
.action-btn:focus {
  color: white;
  background-color: var(--accent-color);
}
:is(a, button, .btn):focus-visible {
  outline-offset: 3px;
  outline: 3px solid #000000;
  box-shadow: none;
  text-decoration: none;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.decor-divider {
  width: 20rem;
  height: auto;
  display: block;
}
/* --header-- */
.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: var(--gradient-color);
}
.nav-item > .nav-link {
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  color: black;
}

.navbar-toggler > img {
  width: 2rem;
  height: auto;
}
/* ---hero----  */
.container-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-content {
  background-image: var(--gradient-color);
}

/* ---announcement---- */
.container-announcement {
  background: url(../images/stock-02.avif) center center / auto repeat;
}
.announcement-content {
  position: relative;
  z-index: 8;
}
.bg-announcement-content {
  background-color: var(--secondary-color);
}
.announcement-content::before {
  content: "";
  position: absolute;
  display: block;
  z-index: -44;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background: url(../images/stock-03.avif) center center / cover no-repeat;
}
.announcement-content::after {
  content: "";
  position: absolute;
  display: block;
  z-index: -55;
  bottom: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background-color: #cdcdcd;
}
/* -------contact----- */
.container-contact {
  background-image: var(--gradient-color);
}
.contact-decor img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
.busihours-left,
.busihours-right {
  border-bottom: 1px solid black;
  margin-bottom: 0;
  padding: 0.8rem;
}
.contact-column {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
/* ------service--------- */
.container-service {
  position: relative;
  z-index: 8;
  overflow: visible;
  background: url(../images/stock-02.avif) center center / auto repeat;
}
.service-content {
  background-color: #ffffff;
}
.cate-name {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 40rem;
}
.cate-name::before {
  content: "";
  position: absolute;
  display: block;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background: url(../images/stock-03.avif) center center / cover no-repeat;
  z-index: -2;
  border-radius: 88rem;
}
.cate-name::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--gradient-color);
  z-index: -1;
  border-radius: 88rem;
}
.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: url(../images/stock-02.avif) center center / auto repeat;
}
.intro-decor {
  position: relative;
  z-index: 4;
}
.intro-decor::before {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background: url(../images/stock-03.avif) center center / cover no-repeat;
}
.intro-decor::after {
  content: "";
  position: absolute;
  display: block;
  z-index: -3;
  bottom: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background-color: var(--secondary-color);
}
/* --gallery---------- */
.container-gallery {
  background: #d0d0d0;
}
/* ----egift----- */
.container-egift {
  position: relative;
  z-index: 1;
}
.egift-content {
  background: url(../images/stock-05.avif) center 90% / cover no-repeat;
  min-height: 26rem;
  width: 100%;
  color: black;
  position: relative;
  z-index: 3;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 25px 20px -20px;
}
.egift-decor {
  position: relative;
  z-index: 2;
  margin-left: -4rem;
}
.egift-decor > img {
  min-height: 20rem;
  width: 100%;
  object-fit: cover;
  object-position: right center;
}
/* ----------footer------ */
.container-footer dl dt {
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .padding-bottom {
    padding-bottom: 5rem;
  }
  .padding-top {
    padding-top: 5rem;
  }
  .container-hero {
    min-height: 24rem;
    background: url(../images/bg-hero-mobile.avif) center center / cover
      no-repeat;
  }
  .service-line {
    border-bottom: none;
  }
  .intro-decor::before,
  .announcement-content::before {
    top: -0.5rem;
    right: -0.5rem;
  }
  .intro-decor::after,
  .announcement-content::after {
    left: -0.5rem;
    bottom: -0.5rem;
  }
}
@media (min-width: 576px) {
  .container-hero {
    background: url(../images/bg-hero.avif) center top / cover no-repeat;
    min-height: 40rem;
  }
  .service-line {
    border-bottom: 1px dashed var(--bg-secondary);
  }
}
@media (max-width: 767.98px) {
  .egift-decor {
    margin-left: 0rem;
    margin-top: 1rem;
  }
  .hero-slider-items {
    display: none;
  }
}
@media (min-width: 768px) {
  .hero-slider-items {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 30rem;
    height: auto;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row: auto;
    gap: 1rem;
  }
  .slider-img:is(:nth-child(1), :nth-child(3)) {
    margin-top: -4rem;
  }
  .slider-img {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
      rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1199.98px) {
  .container-header {
    display: block;
    justify-content: unset;
    align-items: unset;
  }
}
