/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Carter+One&family=Cherry+Cream+Soda&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Limelight&family=Press+Start+2P&family=Special+Elite&display=swap');

/* Local Fonts */
@font-face {
  font-family: "Connie";
  src: url("Connie.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Parisish";
  src: url("Parisish.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SundayMagical";
  src: url("SundayMagical.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SweetSixties";
  src: url("SweetSixties.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* Global */
body {
  margin: 0;
  background: #D1BFA2 url("background.png");
  font-family: "Cormorant", serif;
  font-size: 18pt;
  font-weight: 400;
  font-style: normal;
  color: #2F2D1E;
  text-shadow: 1px 1px 0 #E0D7C2;
}

a {
  color: #906c44;
  text-decoration: none;
}

a:hover {
  color: #99641E;
}

/* Headings */
h1, h2, h3 {
  font-family: "Connie";
}

h1 {
  color: #747D5A;
  font-size: 35pt;
  margin: 0 0 10px 0;
}

h2 {
  color: #764a27;
  font-size: 22pt;
  margin: 10px 0 5px 0;
}

h3 {
  color: #A56420;
  font-size: 18pt;
}

/* Era H3 Classes */
.h3-20s { font-family: "Limelight", sans-serif; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}
.h3-30s { font-family: "Josefin Sans", sans-serif; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}
.h3-40s { font-family: "Carter One", sans-serif; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}
.h3-50s { font-family: "Cherry Cream Soda", sans-serif; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}
.h3-60s { font-family: "SweetSixties"; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}
.h3-70s { font-family: "SundayMagical"; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}
.h3-80s { font-family: "Press Start 2P", sans-serif; font-size: 16pt; margin-bottom: 5px; margin-top: 10px;}
.h3-90s { font-family: "Special Elite", sans-serif; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}
.h3-all { font-family: "Parisish", sans-serif; font-size: 20pt; margin-bottom: 5px; margin-top: 5px;}

ul {
  list-style-type: none; /* Removes the bullets */
  padding: 0;            /* Removes default left padding */
  margin: 5px;             /* Removes default margins */
  font-size: 14pt;
}

p {
  margin: 15px 0;
}

/* Layout */
.wrapper {
  display: flex;
  align-items: flex-start;
}

/* Left Column */
.sidebar {
  width: 500px;
  padding: 30px;
  text-align: center;
}

.sidebar img {
  max-width: 100%;
  height: auto;
}

.site-title {
  font-family: "Connie";
  font-size: 90pt;
  color: #B24529;
  display: block;
  margin: 20px 0;
}

.site-title:hover { color: #B24529; }

.nav {
  font-family: "Parisish";
  font-size: 40pt;
  color: #99641E;
  line-height: 1.2;
}

.nav a {
  color: #99641E;
  margin: 0 15px;
}

.nav a:hover {
  color: #AF762B;
}

.nav-row {
  display: flex;
  justify-content: center;
}

/* Right Column */
.content {
  padding-top: 130px;
  padding-left: 50px;
  max-width: 750px;
}

/* Footer */
.footer {
  max-width: 750px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Cormorant", serif;
  font-optical-sizing: 20pt;
  font-weight: 400;
  color: #2F2D1E;
}


/* ==================================================
FORMS
================================================== */


.custom_input {
display: flex;
align-items: center;
margin-bottom: 5px !important;
}


.custom_input label {
width: 120px;
margin-right: 10px;
text-align: right;
font-family: "Cormorant", serif;
font-size: 16pt;
font-weight: 200;
color: #2F2D1E;
}

form[class^="show_"] span[class$="_label"] {
  display: block;
  margin-bottom: 5px;
  font-family: "Cormorant", serif;
  font-size: 16pt;
  font-weight: 200;
  color: #2F2D1E;
}


.custom_input .input,
form[class^="show_"] input[type="text"],
form[class^="show_"] input[type="email"],
form[class^="show_"] input[type="password"],
form[class^="show_"] input[type="url"],
form[class^="show_"] select,
form[class^="show_"] textarea {
width: 300px;
padding: 10px;
margin-bottom: 5px;
background-color: rgba(163,169,117,.3);
border: 1px solid #2F2D1E;
box-sizing: border-box;
font-family: "Cormorant", serif;
font-size: 16pt;
font-weight: 200;
color: #2F2D1E;
outline: none;
transition: 0.3s ease;
}


.show_join_password_field,
.show_update_password_field,
.show_join_password_field2,
.show_update_password_field2 {
  display: block;
  width: 300px;
  clear: both;
}


/* Buttons */
.custom_input input[type="submit"],
form[class^="show_"] input[type="submit"],
form[class^="show_"] input[type="reset"] {
padding: 10px 20px;
margin-top: 10px;
background-color: rgba(163,169,117,.3);
border: 1px solid #2F2D1E;
cursor: pointer;
font-family: "Cormorant", serif;
font-size: 16pt;
font-weight: 200;
color: #2F2D1E;
transition: 0.3s;
}


.custom_input input[type="submit"]:hover,
form[class^="show_"] input[type="submit"]:hover,
form[class^="show_"] input[type="reset"]:hover {
box-shadow: #2F2D1E 1px 1px;
}


/* Form structure */
form[class^="show_"] p {
margin-bottom: 15px;
}


/* ==================================================
SAMPLE LINKS
================================================== */

.copy-box {
  position: relative;
  background-color: rgba(163,169,117,.3);
  border: 1px solid #2F2D1E;
  border-radius: 5px;
  padding: 14px 70px 14px 14px;
  margin: 12px 0;
  word-break: break-all;
  font-family: "Cormorant", serif;
  font-size: 12pt;
  font-weight: 400;
  font-style: italic;
  color: #2F2D1E;
  text-shadow: 1px 1px 0 #E0D7C2;
}

.copy-box button {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #a3a975;
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Cormorant", serif;
  font-size: 12pt;
  font-weight: 400;
  font-style: normal;
  color: #2F2D1E;
  transition: 0.2s ease;
}

.copy-box button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(163,169,117,.5);
}

.copy-box button.copied {
  background: #ffffff;
}












/* Responsive */
@media (max-width: 1200px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .content {
    padding: 40px 20px 0 20px;
  }
}
