@font-face {
  font-family: 'GoudyBookLetter';
  src: url('/static/fonts/GoudyBookLetter_1911.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TexGyrePagella';
  src: url('/static/fonts/TexGyrePagella-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Wrapper */
.page-wrapper {
  display: grid;
  row-gap: 1rem;
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto;
}

/* Header */
.site-header {
  margin-top: 1rem;
  font-family: 'TexGyrePagella', serif;
  color: #432616;
}

.navbar .navbar-brand {
  font-size: 32px;
  color: #432616;
}

/* Navbar Toggler */
.navbar-toggler { 
	outline: 1px !important; 
	box-shadow: 1px !important; 
}

.navbar-toggler:focus, 
.navbar-toggler:active { 
	outline: 1px; 
	box-shadow: none !important; 
	border: 1px; 
}

/* Navbar Items */
.navbar .nav-item {
  text-align: start;
  padding-left: 0.3rem;
}

.navbar .nav-link .menu-label {
  display: inline;
  padding-right: 0.5rem;
}

.navbar .nav-link .menu-icon {
  max-height: 2rem;
}

/* Desktop Navbar */
@media (min-width: 600px) {
  .navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }
  .navbar .navbar-toggler {
    display: none;
  }
  .navbar .navbar-nav {
    flex-direction: row !important;
  }
  .navbar .nav-item {
    margin-left: 1rem;
  }
  .navbar .nav-link .menu-label {
    display: none; 
  }
}

/* Content Section */
.section-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem; 
  align-items: center;
  justify-content: center; 
  padding: 2rem 1rem; 
}

@media (max-width: 601px) {
  .section-wrapper {
    flex-direction: column;
  }
  .content-section {
    font-size: smaller;
    min-width: 220px;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Image & Content */
.image-section {
  flex: 0 0 auto; 
  text-align: center;
}

.old-money-style {
  min-width: 250px;
  max-width: 350px;
  height: auto;
  width: 100%;
}

.content-section {
  flex: 1;
  max-width: 390px; 
  font-family: 'GoudyBookLetter', 'TexGyrePagella', serif;
  text-align: left;
  color: #432616;
}

/* Footer */
.site-footer {
  text-align: center !important;
  font-size: xx-small;
  height: 5rem;
  font-family: 'TexGyrePagella', serif;
  color: #7F6244;
}

/* Text Alignments */
p.text-in-center {
  text-align: center;
  margin-top: 1rem;
}

p.text-in-justify {
  text-align: justify;
}

/* On smaller screens: stack vertically */
@media (max-width: 768px) {
  .section-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .content-section {
    font-size: smaller;
    min-width: 220px;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
  }
  .image-section img{
    width: 250px;
  }
}

@media (min-width: 768px) {
  .section-wrapper {
    gap: 3rem;
    padding: 3rem 0 7rem 0; 
    font-size: 15px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .image-section img{
    width: 250px;
  }
  .content-section p{
    font-size: 15px;
  }
}

/* Prevent user drag/select on images */
img.protect-image {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Prevent text selection */
.nocopy {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* General Body Styling for index.html */
.body-styling {
  background: #F5EFE6;
  color: #432616;
  text-align: -webkit-center;
}

/* General Body Styling for 404.html */
.body-404-styling {
  background: #F5EFE6;
  color: #231709;
  text-align: center;
}

/* Header and Navigation */
.menu-label-custom {
  color: #432616;
}

.menu-icon-custom {
  height: 20px;
}

/* Index Page Specific */
.tagline-text {
  font-size: large;
}

/* 404 Page Specific */
.main-body-404-padding {
  gap:  2rem;
  padding: 0 0 3rem 0;
}

.lost-king-image {
  width: 250px;
}

.error-message-text {
  margin: 0 auto;
  padding: 5px;
}

.return-link, .return-link:hover {
  color: #432616;
}