html {
  font-size: 62.5%;
  /* 62.5 means that 1rem = 10px */
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--ksn-colour-07);
}

/* fonts ------------------------------------------------------------------- */

@font-face {
  font-family: "Cookie";
  src: url("../fonts/Cookie-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Alike";
  src: url("../fonts/Alike-Regular.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

/* typography -------------------------------------------------------------- */

h1 {
  font-family: "Cookie", cursive;
  color: var(--ksn-colour-07);
  text-shadow: 0px 0px 15px #000000;
  font-size: 9.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: 85%;
  text-align: center;
}

h2 {
  font-family: "Alike", serif;
  color: var(--ksn-colour-07);
  text-shadow: 0px 0px 10px #000000;
  font-size: 3rem;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
  text-align: center;
}

h3 {
  font-family: "Alike", serif;
  color: var(--ksn-colour-02);
  font-size: 3rem;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  padding-left: 25%;
}

h4 {
  font-family: "Alike", serif;
  color: var(--ksn-colour-02);
  font-size: 2.5rem;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  padding-left: 25%;
}

h5 {
  font-family: "Cookie", cursive;
  color: var(--ksn-colour-07);
  text-shadow: 0px 0px 10px #000000;
  font-size: 100px;
  font-weight: 400;
  font-style: normal;
  line-height: 85%;
  text-align: center;
}

h6 {
  font-family: "Alike", serif;
  color: white;
  /* text-shadow: 0px 0px 10px #000000; */
  font-size: 1.75rem;
  font-weight: 400;
  font-style: normal;
  line-height: 85%;
  text-align: center;

  /* padding-left: 25%; */
}

h6 a {
  color: white;
  text-decoration: none;
}

h6 a:visited,
h6 a:active {
  color: white;
  text-decoration: none;
}

p {
  font-family: "Alike", serif;
  color: var(--ksn-colour-01);
  font-size: 2.3rem;
  font-weight: 400;
  font-style: normal;
  line-height: 130%;
  word-spacing: 0.05em;
  letter-spacing: 0.005em;
  padding-left: 25%;
  padding-right: 25%;
  justify-content: center;
  text-wrap: pretty;
}

/* Dani Crossing Nav ------------------------------------------------------------------ */

nav {
  position: sticky;
  z-index: 0;
  border-radius: 0px 0px 0px 0px;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  background: linear-gradient(
    135deg,
    rgb(70, 51, 19) 0%,
    rgba(125, 83, 41, 1) 50%,
    rgb(132, 93, 16) 100%
  );
  box-shadow: 0px 0px 10px rgb(24, 24, 24);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 35px;
}

.logo h5 {
  margin-left: 9px;
  color: var(--ksn-colour-06);
  text-decoration: none;
  font-size: 0.75rem;
  font-family: "Alike", serif;
}

.nav-links {
  display: flex;
  z-index: 0;
  align-items: center;
  list-style: none;
  font-size: 1rem;
}

.nav-links a {
  display: block;
  padding: 30px 16px;
  color: var(--ksn-colour-07);
  text-decoration: none;
  font-size: 1.1rem;
  font-family: arial;
  text-transform: uppercase;
  transition: all ease-in-out 100ms;
}

.nav-links a:hover {
  background-color: var(--ksn-colour-02);
}

.nav-links .nav-cta-button {
  padding: 10px 18px;
  z-index: 0;
  margin-left: 16px;
  border: var(--ksn-colour-02) 2px;
  border-radius: 50px;
}

.nav-links .nav-cta-button:hover {
  background-color: var(--ksn-colour-02);
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 34px;
}

.hamburger .bar {
  flex-basis: 100%;
  height: 3.5px;
  background-color: var(--ksn-colour-07);
  margin: 3px;
}

/* cover images --------------------------------------------------- */

.ksn-coverimage {
  background-color: var(--ksn-colour-01);
  z-index: -10;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../img/desktop/lrh-coverimage-001-desktop.jpg);
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  border-radius: 0px 0px 40px 0px;
  box-shadow: 0px 0px 30px 20px var(--ksn-colour-11);
}
.type-001 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../img/desktop/lrh-coverimage-001-desktop.jpg);
}

.type-002 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../img/desktop/lrh-coverimage-002-desktop.jpg);
}

.type-003 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../img/desktop/lrh-coverimage-003-desktop.jpg);
}

.type-004 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../img/desktop/lrh-coverimage-004-desktop.jpg);
}

.type-005 {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(../img/desktop/lrh-coverimage-005-desktop.jpg);
}
.ksn-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 30px 20px var(--ksn-colour-11);
  width: 50%;
  border-radius: 10px 10px 30px 10px;
}

/* --- carousel start ---------------------------------------------------- */

.scroll-container {
  background-color: #ffffff;
  overflow: auto;
  white-space: nowrap;
  padding: 0px;
}

div.scroll-container img {
  padding: 5px;
}
/* --- carousel end ----------------------------------------------------- */

/* --------------------------------------------------- four column layout --------------------------------------------------- */
* {
  box-sizing: border-box;
}

.ksn-row {
  display: flex;
  flex-wrap: wrap;
}

.ksn-column {
  flex: 50%;
  padding: 20px;
  background-color: var(--ksn-colour-04);
}

/*footer--------------------------------------*/
.ksn-footer {
  background: linear-gradient(
    135deg,
    rgb(70, 51, 19) 0%,
    rgba(125, 83, 41, 1) 50%,
    rgb(132, 93, 16) 100%
  );
  color: var(--ksn-colour-07);
  text-align: center;
  padding: 15px;
  font-family: "Alike", serif;
  font-size: 1.75rem;
  border-radius: 0px 0px 0px 0px;
  place-items: center;
}
