/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #d3c3e7; /* Light purple */
  color: #301934; /* Darker purple for text */
  font-size: 1rem;
  line-height: 1.5;
}

/* Header */
.header {
  background-color: #301934; /* Darker purple */
  color: #ffffff;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 80px;
  margin-right: 1rem;
}

/* Menu Button (Hamburger) */
.menu-toggle {
  display: none;
  background-color: #d3c3e7;
  color: #301934;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

/* Menu List */
.menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}

/* Links as Buttons */
.menu-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 60px;
  background-color: #d3c3e7; /* lilac */
  color: #301934; /* Dark purple text */
  text-decoration: none;
  border: 2px solid #6b4c2e; /* Medium brown border */
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  padding: 0.5rem;
  text-align: center;
}

.menu-list a:hover,
.menu-list a:focus {
  background-color: #e0d8c3; /* Slightly darker beige for hover */
  border-color: #543b24;
  outline: 3px solid #ffc107; /* Gold focus outline */
  outline-offset: 2px;
}

/* Responsive for small screens */
@media (max-width: 600px) {
  .menu-toggle {
    display: block;
    margin: 1rem auto;
  }

  .menu-list {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu-list.show {
    display: flex;
  }

  .menu-list a {
    width: 100%;
    height: 50px;
  }
}

main {
  padding: 1rem;
}

.no-border-table {
  width: 100%;
  border-collapse: collapse;
}

.no-border-table td, .no-border-table th {
  padding: 0.5rem;
  text-align: left;
}

footer {
  background-color: #d3c3e7; /* match main background */
  color: #301934; /* match main text */
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  border-top: 1px solid #301934;
}

/* Split Section: Image + Text block (updated scalable version) */
/* The split container */
.split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start; /* vertical top alignment */
  justify-content: center;
  background-color: #d3c3e7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  gap: 20px;
}

/* Image section 1/3 */
.image-section {
  flex: 0 0 33.33%;
  display: flex;
  justify-content: center; /* horizontally center image in column */
  align-items: flex-start;  /* top align image vertically */
  padding: 10px;
}

/* Image itself */
.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Text section 2/3 */
.text-section {
  flex: 0 0 66.66%;
  padding: 10px;
  color: #301934;
  text-align: left;
}

/* Text content styling */
.text-section h2 {
  font-size: 2rem;
  margin-top: 0;
}

.text-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .split {
    flex-wrap: wrap;
  }

  .image-section, .text-section {
    flex: 1 1 100%;
  }

  .image-section {
    justify-content: center;
  }
}
