/* General Styling */

/* Google Fonts for Site */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Merriweather&family=Nunito:wght@200;400;600&family=Chicle&display=swap');

:root {
  /* Core palette */
  --color-base: #D8B48A;
  --color-base-rgb: 216, 180, 138;

  --color-surface: #F2ECE4;
  --color-surface-rgb: 242, 236, 228;

  --color-brand: #A66A4A;
  --color-brand-rgb: 166, 106, 74;

  --color-ui: #919D6D;
  --color-ui-rgb: 145, 157, 109;

  --color-text: #3A2E2E;
  --color-text-rgb: 58, 46, 46;

  /* Layered uses */
  --bg-panel: rgba(var(--color-base-rgb), 0.35);
  --bg-card: rgba(var(--color-base-rgb), 0.5);

  --brand-soft: rgba(var(--color-brand-rgb), 0.3);
  --brand-mid: rgba(var(--color-brand-rgb), 0.4);
  --brand-strong: rgba(var(--color-brand-rgb), 0.75);

  --text-soft: rgba(var(--color-text-rgb), 0.5);
  --overlay-dark: rgba(var(--color-text-rgb), 0.35);

  /* Utility */
  --shadow-soft: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: 'Nunito', serif;
	background-color: var(--color-base);
	color: var(--color-text);
	padding: 0;
	background-image: url('../images/PD-ivorylinen.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 100%;
	}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-size: cover;
  }
}


/* heading styles */

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: var(--color-text);
    }

h1 {
  font-size: 1.5rem;
  line-height: 1.1;
}

h4 {
   width: 50%;
   font-weight: bold;
   padding: 6px 10px;
   text-align: center;
   margin: 30px auto 20px; /* increased spacing */
   border-radius: 5px;
   background-color: var(--brand-mid);
   border: 1px solid var(--color-text);
}

@media (max-width: 768px) {
  h4 {
    width: 85%;
  }
}

/* paragraph style */

p {
	line-height: 1.37em;
	}

/* lists style */

ul {
	list-style-type: disc;
	margin: 20px 0;
	padding-left: 25px;
	}

ul li {
	margin-bottom: 10px;
	line-height: 1.6;
	}

ul li::marker {
	color: var(--color-brand);
	font-size: 1.2em;
	}

/* links style */

a {
	color: var(--color-brand);
	text-decoration: none;
	transition: color 0.3s ease, text-shadow 0.3s ease;
	}

a:hover {
	color: var(--color-text);
	text-shadow: 0 0 5px var(--color-brand), 0 0 10px var(--color-brand);
	}

a:focus {
	outline: 2px solid var(--color-text);
	outline-offset: 2px;
	}

/* styling for normal pages */

.normal-page {
	width: 100%;
	max-width: 900px;
	margin: 20px auto;
	}

/* styling for intro box */

.intro-box {
	background-color: var(--color-surface);
	border: 1px solid var(--color-brand);
	box-shadow: var(--shadow-soft);
	padding: 15px;
	max-width: 80%;
	margin: 20px auto;
	border-radius: 8px;
	font-family: 'Nunito', serif;
	font-size: 14px;
	color: var(--color-text);
	text-align: center;
	}

.close {
	text-align: center;
	font-weight: bold;
	margin: 40px 30px;
	}
	
.center {
	text-align: center;
	}


