:root {
  --main-color: #f2c7b0;
  --accent-color: #552c2c;
}
@font-face {
  font-family: "Lato";
  src: url(../fonts/Lato-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playball";
  src: url(../fonts/Playball-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;
  color: black;
  font-family: "Lato";
}
.accent-font {
  font-family: "Playball";
}
.accent-color {
  color: var(--accent-color);
}
.padding-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.padding-bottom {
  padding-bottom: 100px;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 0;
  background: #070707;
  color: #fffdfd;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}
.action-btn {
  min-width: 10rem;
  padding: 0.7rem 0.5rem;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
a,
button {
  text-decoration: underline;
}
:is(a, button):hover {
  text-decoration: none;
}
.btn {
  text-decoration: none;
}
:is(a, button, .btn):focus-visible {
  outline: 3px solid #2e06f9;
  outline-offset: 3px;
  box-shadow: none;
  text-decoration: none;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
dt {
  font-weight: 300;
}
/* -----------nav----------- */
.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-item > .nav-link {
  background-color: transparent;
  border: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
}
.header-btn {
  color: white;
  background-color: var(--accent-color);
}
.header-btn:hover,
.header-btn:focus {
  color: white;
  background-color: black;
}
/* --hero-- */
.container-hero {
  display: flex;
  min-height: 45rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* ----------announcement-------------- */
.container-announcement {
  background-color: var(--accent-color);
}
/* ------------contact---------- */
.container-contact {
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.8)
    ),
    url(../images/bg-announcement.avif);
  background-size: cover;
  background-position: top right;
}
.contact-decor-1 {
  width: 70%;
  height: auto;
  border: 5px solid #fdc69c;
}
.contact-decor-2 {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  width: 45%;
  height: auto;
  border: 5px solid #c9a080;
}
/* -------------services-------------- */
.container-service {
  background: url(../images/bg-body.avif) no-repeat center center;
  background-size: cover;
}
.decor-2 {
  width: 15rem;
  height: auto;
}
.fisrt-row {
  margin-top: 8px;
}
.service-row {
  display: flex;
  flex-wrap: nowrap;
  font-size: 1.1rem;
  font-weight: bold;
}
.service-line {
  border-bottom: 1px dashed #999999;
  flex: 1 1 auto;
  height: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.service-price {
  width: auto;
  text-align: right;
  white-space: nowrap;
}
.service-desc {
  color: #212121;
  font-style: italic;
}
/*  ------intro------------ */
.container-intro {
  background-color: #f2c7b0;
}
.main-image-box {
  overflow: hidden;
}
.main-image {
  overflow: hidden;
}
/* --------gallery------ */
.gallery-item {
  margin-bottom: 2rem;
}
/* --egift--- */
.container-egift {
  background: linear-gradient(to top, rgba(255, 255, 255, 0), #fff),
    url(../images/bg-body.avif) no-repeat center center;
  background-size: cover;
}
.container-egift h2 {
  font-size: 3rem;
}
/* --------footer----- */
.container-footer {
  background-color: var(--main-color);
}

@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .padding-bottom {
    padding-bottom: 80px;
  }
  .container-hero {
    background: url(../images/bg-hero-mobile.avif) no-repeat center center;
    background-size: cover;
  }

  .decor-2 {
    width: 8rem;
    height: auto;
  }
  .container-egift h2 {
    font-size: 2.5rem;
  }
  .gallery-item {
    margin-bottom: 1rem;
  }
}
@media (min-width: 576px) {
  .container-hero {
    background: url(../images/bg-hero.avif) no-repeat right center;
    background-size: cover;
  }
}
@media (max-width: 767.98px) {
  .container-hero {
    min-height: unset;
  }
}
@media (max-width: 1199.98px) {
  .container-header {
    display: block;
    justify-content: unset;
    align-items: unset;
  }
}
