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

/* Body layout */
body {
  background: white;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
}

/* Page layout */
.page-wrapper {
  display: flex;
  max-width: 1000px;
  width: 100%;
  max-height: 800px;
  border: 4px solid black;
  background: white;
  padding: 30px;
  box-shadow: 8px 8px 0 #ff6600;
  gap: 20px;
}

/* Mascot on the left */
.mascot-area {
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mascot {
  width: 160px;
  height: auto;
  image-rendering: pixelated;
  border: 3px solid black;
}

/* Main content in center */
.main-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header/Logo */
.logo-header {
  text-align: center;
}

.site-logo {
  max-width: 140px;
  height: auto;
}

.divider {
  border: none;
  border-top: 4px solid #ff6600;
  margin: 15px auto;
  max-width: 80%;
}

/* Welcome wrapper: side by side layout */
.welcome-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

/* Welcome text: narrower and smaller font */
.welcome-text {
  flex: 1 1 55%;
  font-size: 1rem;
  line-height: 1.4;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-transform: lowercase;
  color: #ff6600;
}

/* Welcome heading */
.welcome-text h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* Welcome image styling */
.welcome-image {
  flex: 0 0 35%;
  max-width: 250px;
  height: auto;
  border: 3px solid black;
  image-rendering: pixelated;
  object-fit: contain;
}

/* Blog Preview */
.blog-preview {
  border: 2px solid black;
  padding: 20px 18px;
  background: #fdfdfd;
  box-shadow: 3px 3px 0 #ff6600;
  font-size: 0.95rem;
  margin-top: 10px;
  min-height: 160px;
}

.blog-preview h2 {
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-transform: lowercase;
  color: #ff6600;
  margin-bottom: 10px;
  border-bottom: 2px solid black;
  padding-bottom: 4px;
}

.blog-preview ul {
  list-style-type: none;
}

.blog-preview li {
  margin-bottom: 10px;
}

.blog-preview a {
  color: #3dcf3a;
  font-weight: bold;
  text-decoration: none;
}

.blog-preview a:hover {
  color: #ff6600;
  text-decoration: underline;
}

/* Sidebar on right */
.sidebar {
  flex: 0 0 160px;
  border-left: 4px solid black;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-transform: lowercase;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: black;
  transition: color 0.2s ease;
  padding: 2px 0;
}

.sidebar a:hover {
  color: #ff6600;
}

/* Social icons */
.socials {
  margin-top: 30px;
}

.socials p {
  font-size: 0.9rem;
  color: #ff6600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.socials a img {
  width: 28px;
  height: 28px;
  margin-right: 6px;
  vertical-align: middle;
  filter: drop-shadow(1px 1px 0 black);
}

