/* Base Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Avenir';
  margin: 0;
  padding: 0;
  background-color: #ffffff; 
  color: #000000; /* main zoffany teal for text */
  line-height: 1.5;
}

/* Side image fixed top-left, about 10% viewport width square */
.side-image {
  position: fixed;
  top: 80px;         /* small offset from top */
  left: 20px;        /* small offset from left */
  width: 10vw;       /* 10% of viewport width */
  height: 10vw;      /* keep it square */
  object-fit: cover; /* make sure it fills square nicely */
  border-radius: 8px; /* optional rounded corners */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* optional shadow for visibility */
  z-index: 1000;     /* keep it above other content */
}

/* Header */
header {
  background-color: #81264c; /*#73a9c2 main color moonstone blue */
  color: #ffffff; 
  padding: 5px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #ffffff; /* accent color for links */
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a[aria-current="page"] {
  color: #ffffff; /* highlight links in white on hover or active */
  text-decoration: underline;
}

/* Main content */
/* Add left margin to main to prevent content under image */
main {
  max-width: 900px;
  margin: 2rem auto 4rem;
  padding: 0 20px;
margin-left: 12vw; /* slightly larger than image width + padding */
}


h1, h2 {
  color: #5a7F72; /* main color for headings */
}

h3 {
  color: #81264c; /* Heading 3, Turkish rose */
}
.buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background-color: #5a7F72; /* Zoffany teal */
  color: #ffffff;
  padding: 5px 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
}
.btn2 {
  display: inline-block;
  background-color: #00a91c; 
  color: #ffffff;
  padding: 5px 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #b57281; /* Turkish rose */
}

/* Inspirational Quote Block */
blockquote.inspirational-quote {
  margin-top: 30px;
  font-style: italic;
  border-left: 8px solid #b57281; /* Turkish rose */
  padding-left: 15px;
  /*color: #5a4a4e;  muted dark of accent */
  background-color: #f3faf9; /* alternativ yellow ffe873 */
  border-radius: 4px;
 /* max-width: 600px;*/
}

/* Meetings Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  box-shadow: 0 0 8px rgba(67, 80, 62, 0.1); /* subtle shadow with dark green */
}

thead {
  background-color:#d0d0d0; /*#f3faf9; main color */
  color: #000000;
}

th, td {
  padding: 12px 15px;
  border: 1px solid #d9c8d3;
  text-align: left;
}

tbody tr:nth-child(odd) {}

footer {
    background-color: #81264c;
    text-align: center;
    color: #ffffff;
}
