@font-face {
  font-family: OpenSans;
  src: url(../assets/fonts/Open_Sans/OpenSans-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Arapey";
  src: url(../assets/fonts/Arapey/Arapey-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Arapey";
  src: url(../assets/fonts/Arapey/Arapey-Italic.ttf);
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url(../assets/fonts/Inter/Inter_24pt-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url(../assets/fonts/Inter/Inter_24pt-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url(../assets/fonts/Inter/Inter_24pt-ExtraBold.ttf);
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url(../assets/fonts/Inter/Inter_24pt-Italic.ttf);
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Whisper";
  src: url(../assets/fonts/Whisper/Whisper-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Bonheur Royale";
  src: url(../assets/fonts/Bonheur_Royale/BonheurRoyale-Regular.ttf);
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}
:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #c5a984;
  --gradient-start: #c7a577;
  --gradient-end: #8b6a49;
}
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
/* General Styles */
.container {
  width: 100%;
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
}
.black-button {
  color: var(--white);
  background-color: var(--black);
  border-radius: 25px;
  padding: 10px 20px;
}

#gform_submit_button_1 {
  color: var(--white);
  background-color: var(--black);
  border-radius: 25px;
  padding: 15px 32px;
  font-size: 1.3rem;
}
/* End General Styles */
/* Font Style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arapey", serif;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 40px;
}
.xxxl {
  font-size: 75px;
}
.xxl {
  font-size: 66px;
}
.xl {
  font-size: 54px;
}
.l {
  font-size: 44px;
}
.m {
  font-size: 36px;
}
.s {
  font-size: 26px;
}
.xs {
  font-size: 20px;
}
.xxs {
  font-size: 16px;
}
.black {
  color: var(--black);
}
.white {
  color: var(--white);
}
.gold {
  color: var(--gold);
}
.opaque-black {
  color: var(--black);
  opacity: 0.6;
}
.gradient-text {
  background-image: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-color: var(--gold);
}
.bold {
  font-weight: 700;
}
.extrabold {
  font-weight: 800;
}
.italic {
  font-style: italic;
}
.normal {
  font-style: normal;
}
.gradient-bg {
  background-image: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
}
.black-bg {
  background-color: var(--black);
}
.inter {
  font-family: "Inter", sans-serif;
}
.arapey {
  font-family: "Arapey", serif;
}
.whisper {
  font-family: "Whisper";
}
.bonheur_royale {
  font-family: "Bonheur Royale";
  letter-spacing: 0.35rem;
}
.centred {
  text-align: center;
}
.remove-margin {
  margin: 0;
}
p,
li,
a,
td,
th,
#s {
  font-size: 20px;
  line-height: 1.6em;
  color: var(--black);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
p,
ul,
ol,
table {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
blockquote {
  margin-bottom: 20px;
}
blockquote p {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.4em;
  color: var(--gold) !important;
  font-family: "Arapey";
}
ul,
ol {
  padding-left: 20px;
  margin-top: -10px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
  margin-top: 0;
}
table {
  width: 100%;
}
table th {
  background-color: #999999;
  color: #000;
  font-weight: 600;
  text-align: left;
}
table th,
table td {
  padding: 5px;
  border: 1px solid #999;
}
table tr:nth-child(2n) {
  background-color: #eee;
}
a,
i,
#searchsubmit {
  transition: all 0.5s ease-in-out;
}
a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  color: var(--gold);
}
a:hover i {
  color: var(--gold) !important;
}
/* End Font Style */

/* Search */
#searchform {
  margin-bottom: 20px;
}
#searchform #s {
  border: 1px solid #333;
}
#searchsubmit {
  border: 0;
  font-size: 16px;
  line-height: 1.6em;
  cursor: pointer;
  padding: 3px 22px;
  font-family: OpenSans;
}
/* End of Search */ /* Menu */
.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navBar .Logo img {
  height: 50px;
}
nav ul.menu {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  padding: 0;
  list-style-type: none;
  margin: 0;
}
nav ul.menu li {
  position: relative;
  padding: 5px 15px;
}
nav ul.sub-menu {
  display: none;
  list-style-type: none;
  flex-direction: column;
  position: absolute;
  padding: 20px 0px;
  background-color: var(--gold);
  min-width: 425px;
  z-index: 10;
  border-radius: 25px;
}
nav ul.sub-menu ul.sub-menu {
  right: -100%;
  top: 0;
}
nav ul.menu a {
  color: #fff;
}
nav ul.menu a:hover {
  color: #000;
}
nav ul.menu li .sub-menu li {
  padding: 5px 25px;
  transition: background-color 0.3s ease-in-out;
  background-color: var(--gold);
}
nav ul.menu li .sub-menu li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  color: #fff;
}
nav ul.menu li .sub-menu li:hover::before {
  opacity: 1;
}
nav ul.menu li .sub-menu li:hover {
  background-color: #8b6a49;
}
nav ul.menu li .sub-menu li a:hover {
  color: #fff;
}
nav ul.menu li a {
    letter-spacing: 0.1rem;
}
.sub-menu a {
  width: 100%;
  height: 100%;
  display: block;
}
/* End Menu */
#ContentWrap {
  padding: 120px 0;
}
#ContentWrapFooter {
  padding-bottom: 80px;
}
.page-id-2 #ContentWrap {
  padding: 120px 0 60px;
}
/* Archive */
.archive-loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ArticleImgWrap {
  display: block;
  width: 100%;
  height: 225px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.navigation.pagination {
  background-color: unset;
  text-align: center;
  margin-top: 30px;
  padding: 0;
}
.page-numbers {
  background-color: #55acee;
  padding: 4px;
  color: #fff;
}
a.page-numbers:hover,
.page-numbers.current {
  background-color: #000;
  color: #fff;
}
/* End of Archive */

/* Device = Laptops, Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
}

/* Device = Tablets, Ipads (portrait) */
@media (min-width: 768px) and (max-width: 1024px) {
  .archive-loop {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Device = Tablets, Ipads (landscape) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .archive-loop {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Device = Low Resolution Tablets, Mobiles (Landscape) */
@media (min-width: 481px) and (max-width: 767px) {
  .archive-loop {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Device = Most of the Smartphones Mobiles (Portrait) */
@media (min-width: 320px) and (max-width: 480px) {
  .archive-loop {
    grid-template-columns: repeat(1, 1fr);
  }
}
