@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marcellus";
  src: url(../fonts/Marcellus-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;
}

.accent-font {
  font-family: "Marcellus";
  font-weight: normal;
  font-style: normal;
}
.accent-font-2 {
  font-family: "Playball";
  font-weight: normal;
  font-style: normal;
}
:root {
  --primary-color: #3e3025;
  --secondary-color: #b3c4fd;
  --background-color: #c2ded7;
  --accent-color: #023a2c;
  --gradient-color: linear-gradient(
    -45deg,
    var(--secondary-color),
    var(--background-color),
    var(--secondary-color)
  );
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Lora";
  font-weight: normal;
  font-style: normal;
}
.padding-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
a {
  color: #000;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 0;
  background: #000000;
  color: #ffffff;
  padding: 8px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
}
.nav-action-btn {
  min-width: 13rem;
}
.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  height: 3rem;
  background-image: var(--gradient-color);
}
.action-btn:hover {
  border: 2px solid #5d4b3d;
}
a,
button {
  text-decoration: underline;
}
a.btn,
button.btn {
  text-decoration: none;
}
a:hover {
  color: black;
  text-decoration: none;
}
:is(a, button, .btn):focus-visible {
  outline: 3px solid #000;
  outline-offset: 3px;
  box-shadow: none;
}
:is(a, button, .btn):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
/* ------navbar------ */
.navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
}
.nav-item > .nav-link {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--accent-color);
  padding: 0.5rem;
  margin: 0.2rem 0.4rem 0.2rem 0;
  background: transparent;
  font-weight: bolder;
  border: none;
}
.nav-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* --------announcement-------- */
.container-announcement {
  background-color: var(--primary-color);
}
.announcement-maintitle {
  color: var(--secondary-color);
}
.contact-title {
  color: var(--primary-color);
}
/* -----------contact------- */
.container-info {
  background-color: var(--background-color);
}
.container-info .tilte {
  color: var(--primary-color);
}
.info-title {
  position: relative;
}
.info-title::after {
  content: "";
  position: absolute;
  height: 0.2rem;
  width: 100%;
  bottom: -0.4rem;
  right: 0;
  background: linear-gradient(
    -45deg,
    var(--background-color),
    var(--primary-color)
  );
}
/* -------intro------------ */
.container-intro {
  background-color: var(--primary-color);
}
/* ------egift-------- */
.container-egift {
  background: linear-gradient(rgb(255, 255, 255, 0.4), rgb(255, 255, 255, 0.4)),
    url(../images/bg-egift.avif) no-repeat center center;
  background-size: cover;
}
/* --gallery-- */
.gallery-items img {
  margin-bottom: 2rem;
}
/* -------footer------------ */
.container-footer {
  background-color: var(--background-color);
}
.footer-busi-name {
  color: var(--primary-color);
}
.footer-contact-icon {
  width: 25px;
  height: auto;
  margin-right: 0.5rem;
}
@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .brand-logo {
    width: 10rem;
  }
  .nav-area {
    width: 100%;
    display: block;
  }
  .gallery-items img {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .nav-action-btn {
    min-width: 100%;
  }
}
