:root {
  --primary-color: #f6e9ec;
  --secondary-color: #1a1a1a;
  --accent-color: #8d2337;
  --accent-color-2: #bf8174;
  --shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}
@font-face {
  font-family: "Oswald";
  src: url(../fonts/subset-Oswald-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Crimson Text";
  src: url(../fonts/subset-CrimsonText-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: "Crimson Text";
}
.shadow-custom {
  box-shadow: var(--shadow);
}
.accent-font {
  font-family: "Oswald";
}
.accent-color {
  color: var(--accent-color);
}
h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2.3rem;
}
.padding-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.padding-bottom {
  padding-bottom: 120px;
}
.padding-top {
  padding-top: 120px;
}

.btn {
  transition: color 0.4s ease, background-color 0.4s ease;
}
a,
button {
  text-decoration: underline;
  color: black;
}
:is(a, button):hover {
  text-decoration: none;
  color: var(--accent-color);
}
.btn {
  text-decoration: none;
  border: none;
  font-family: "Oswald";
}
:is(a, button, .btn):focus-visible {
  outline: 3px solid #0710c6;
  outline-offset: 3px;
  box-shadow: none;
  text-decoration: none;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.dark-btn:hover,
.dark-btn:focus {
  color: var(--accent-color);
}
.action-btn {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  min-width: 9.5rem;
  padding: 0.7rem 1rem;
}
.action-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #be3737;
}
.action-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #be3737;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 0;
  background: #000000;
  color: #ffffff;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}
/* --header-- */
.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
}
.nav-item > .nav-link {
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-item > .nav-link:hover {
  color: var(--accent-color);
}
.header-btn {
  color: white;
  background-color: black;
}
.header-btn:hover {
  color: white;
  background-color: var(--accent-color);
}
.header-call:hover {
  color: var(--accent-color);
}
/* hero  */
.container-hero {
  height: 100%;
  display: flex;
  justify-content: end;
  text-align: start;
  align-items: center;
  flex-direction: column;
}
/* announcement */
.container-announcement {
  background-image: linear-gradient(#fff, #f1e2ea);
}
.color-block {
  display: block;
  width: 103%;
  height: 20rem;
  position: absolute;
  bottom: -2rem;
  left: -0.5rem;
  background-image: linear-gradient(#f1e6ec, #efc5db);
  z-index: 2;
  border-radius: 0rem 2rem 0rem 2rem;
}
.photo-block img {
  position: relative;
  z-index: 11;
}
.decor-block-01 {
  position: absolute;
  height: 250px;
  width: auto;
  top: 50%;
  left: 0;
  z-index: 33;
  transform: rotate(-43deg);
}
.decor-block-02 {
  position: absolute;
  height: 250px;
  width: auto;
  top: 35%;
  left: 0;
  z-index: 31;
  transform: rotate(-24deg);
}
.photo-block::before {
  content: "LUXURY";
  position: absolute;
  top: 60%;
  right: -2rem;
  display: block;
  z-index: 22;
  color: var(--accent-color-2);
  font-size: 2rem;
  transform: rotate(90deg);
}
/* contact */
.container-info {
  background: url(../images/bg-info.avif) no-repeat right center;
  background-size: cover;
}
.info-column {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
  border-bottom: 10px solid var(--accent-color-2);
}
.info-icon {
  position: absolute;
  background-color: var(--secondary-color);
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  z-index: 2;
}
/* -----------service----------- */
.container-services {
  background-color: var(--primary-color);
}
.service-row {
  display: flex;
  flex-wrap: nowrap;
  font-size: 1.3rem;
}
.service-line {
  flex: 1 1 auto;
  border-bottom: none;
  height: 0;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.service-price {
  width: auto;
  white-space: nowrap;
  text-align: right;
  font-weight: bold;
}
.service-desc {
  margin-left: 1rem;
}
/* ---------------intro----------- */
.container-intro {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/bg-announcement.avif) no-repeat center center;
  background-size: cover;
}
/* ------gallery----------- */
.gallery-item > img {
  margin-bottom: 2rem;
  border: 1px solid #e9e9e9;
}
/* ------------egift---------- */
.container-egift {
  background: url(../images/bg-egift.avif) no-repeat top right;
  background-size: cover;
}
/* -------footer----------- */
.container-footer {
  background-color: #f1d5e4;
}
.footer-info {
  position: relative;
  text-transform: uppercase;
}
.footer-info::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3rem;
  left: 4px;
  height: 3px;
  width: 5rem;
  z-index: 3;
  opacity: 0.3;
  background-color: var(--secondary-color);
}
.footer-contact-icon {
  background-color: #bf8174;
  display: inline-block;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 45px;
  justify-items: center;
}

@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .padding-top {
    padding-top: 80px;
  }
  .padding-bottom {
    padding-bottom: 80px;
  }
  .container-hero {
    background: url(../images/bg-hero-mobile.avif) no-repeat center center;
    background-size: cover;
    min-height: 38rem;
  }
  .gallery-item > img {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .header-btns {
    margin-right: auto;
    margin-left: unset;
  }
}
@media (min-width: 768px) {
  .header-btns {
    margin-right: unset;
    margin-left: auto;
  }
}
@media (max-width: 1199.98px) {
  .container-header {
    display: block;
    justify-content: unset;
    align-items: unset;
  }
}
@media (min-width: 576px) {
  .container-hero {
    background: url(../images/bg-hero.avif) no-repeat center 30%;
    background-size: cover;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .container-hero {
    min-height: 40rem;
  }
}
@media (min-width: 992px) {
  .container-hero {
    min-height: 45rem;
  }
}
