
/* RESET AND BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif; /* placeholder font */
  background-color: #1f1b2e; /* optional neutral background */
  color: #f5f5f5; /* text color */
  line-height: 1.5;
  padding: 2rem;
}

/* HEADER */
header {
  background-image: url('../images/header-bg.png'); /* adjust path */
  background-size: cover;
  background-position: center;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* MAIN LAYOUT */
main.layout {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2/3 left, 1/3 right */
  gap: 2rem;
}

/* LEFT SECTION */
section.left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Left section content article for paragraphs + aside */
section.left .content {
  display: grid;
  grid-template-columns: 2fr 1fr; /* P2 left, aside right */
  gap: 1rem;
}

/* Paragraphs behavior */
.p1 {
  grid-column: 1 / -1; /* full width */
}

/* ASIDE */
aside {
  grid-column: 2 / 3; /* column 2 */
  align-self: start;
}

/* RIGHT SECTION */
section.right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* GUESTBOOK / INFO BOXES */
section.right .box {
  padding: 1rem;
  border-radius: 12px;
  background-color: #2a2438; /* placeholder color for boxes */
}

/* OPTIONAL BOX STYLING FOR LEFT SECTION HEADERS */
section.left header,
section.left article header {
  text-align: center;
  background-color: #2f2847; /* optional color */
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
