:root {
  --blue: #336BA6;
  --brown: #A66E33;
  --dark_brown: #8a551b;
  --text_color_1: #000000;
  --text_color_1_weak: #555555;
  --text_color_1_invert: #ffffff;
  --text_color_2: var(--blue);
  --text_color_3: var(--brown);
  --bg_color_1: #ffffff;
  --bg_color_2: var(--blue);
  --bg_color_2_gradient: linear-gradient(rgba(38, 97, 151, 0.7), rgba(63, 117, 177, 0.7));
  --bg_color_3: var(--brown);
  --bg_color_3_highligh: var(--dark_brown);
  --article_title_color: var(--text_color_2);
  --article_text_color: var(--text_color_1);
  --article_info_color: var(--text_color_1_weak);
  --article_bg: #ffffff;
}

body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background: var(--bg_color_1);
	color: var(--text_color_1);
}

header {
  position: sticky;
  top: 0px;
  left: 0px;
  background-color: var(--bg_color_2);
  color: var(--text_color_1_invert);
  margin: 0 auto;
  padding: 10px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 600px;
  z-index: 10;
}

header h1 {
	margin: 0;
	vertical-align: center;
	/*background-image: url('photos_raws/logo_transparent.png');
	background-repeat: no-repeat;
	background-position: left;
	background-attachment: local;
	background-size: contain;
	padding-left: 1.2em;*/
}

nav ul {
	list-style: none;
	margin: 5px;
	padding: 0;
}

nav ul li {
	display: inline;
	margin-right: 20px;
}

header a {
	text-decoration: none;
	color: var(--text_color_1_invert);
	font-weight: bold;
}

header a:hover {
	text-decoration: underline;
	color: var(--text_color_1_invert);
}

header a.active {
	color: var(--brown);
	text-decoration: underline;
	font-weight: bold;
}

.cta-button {
  background-color: var(--bg_color_3);
  color: var(--text_color_1_invert);
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  margin-top: 20px;
}

.cta-button:hover {
  	color: var(--text_color_1_invert);
	background-color: var(--bg_color_3_highligh); /* Darken the color on hover */
	transition: 0.3s;
}

footer {
  background: var(--bg_color_2);
  color: var(--text_color_1_invert);
  padding: 10px 0;
  text-align: center;
  z-index: 10;
  box-shadow: 0 -5px 8px rgba(0, 0, 0, 0.5);
}

section.home_me {
	background-image: var(--bg_color_2_gradient), url('photos_raws/bouddha.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: local;
	background-size: cover;
}

section.home_me article {
	display: block;
	color: var(--text_color_1_invert);
	background: none;
	border: none;
	box-shadow: none;
	margin: auto;
	padding: 70px 20px;
	text-align: center;
}
section.home_me article p, section.home_me article h2 {
	color: inherit;
}

section {
	box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.5);

	padding: 40px;
	margin: 0;
	width: 100%;
}

section {
	color: var(--text_color_1);
	background: var(--bg_color_1);

	padding: 20px 30px;
	margin: 0px;

	display: flex;
	justify-content: center;
	align-items: stretch;
}

section.even {
	background: var(--bg_color_2);
}
section.even h2 {
	color: var(--text_color_1_invert);
}
section.odd {
	background: var(--bg_color_1);
}
section.odd h2 {
	color: var(--text_color_2);
}

section h2 {
}

section .content-img {
	padding: 20px;
	width: 300px;
}

section .content-img * {
	width: 100%;
	align-items: start;
}

section .content-text {
	padding: 0px 30px;
	max-width: 250px;
	width: 60%;
	line-height: 150%;
}

article {
	margin: auto;
	padding: 10px 50px;
	display: flex;
	max-width: 800px;
	flex-direction: column;
	align-items: center;
	background: var(--article_bg);
}

h2 {
	font-size: 1.5em;
}

h2, h3 {
	width: 100%;
	color: var(--article_title_color);
	margin: 20px 0 0 0;
	padding: 0px;
}

p {
	width: 100%;
	color: var(--article_text_color);
	margin: 10px 0 0 0;
	padding: 0px;
	line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--text_color_2);
  font-weight: none;
}

a:hover {
	color: var(--text_color_2);
	text-decoration: underline;
	font-weight: none;
}

article p.publish-date {
	text-align: right;
	color: var(--article_info_color);
}

