/* ==================== PAGE BACKGROUND ==================== */
body {
  background-image: url("pink.jpg");
  background-repeat: repeat;
  background-position: top left;
  background-attachment: fixed;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  margin: 0;
}

/* ==================== HEADER ==================== */
#header {
  background-color: #ffe6f0;
  text-align: center;
  padding: 20px;
}

#header h1 {
  margin: 0;
  color: #d96c9f;
}

#header p {
  margin-top: 5px;
  color: #c85b8c;
}

/* ==================== WRAPPER (FLEX LAYOUT) ==================== */
#wrapper {
  width: 960px;
  margin: 20px auto;
  display: flex;
  align-items: flex-start; /* IMPORTANT */
}

/* ==================== COLUMNS ==================== */
.column {
  background-color: #ffe6f0;
  border: 2px solid #d6697f;
  padding: 8px;
  box-sizing: border-box;
}

/* COLUMN WIDTHS */
.nav {
  width: 200px;
}

.main {
  width: 520px;
  margin: 0 20px;
}

.side {
  width: 200px;
}

/* ==================== INNER BOX ==================== */
.box {
  background-color: #ffffff;
  border: 1px solid #f5bcd3;
  padding: 10px;
  box-sizing: border-box;
}

/* ==================== HEADINGS ==================== */
.box h2 {
  margin: 0 0 6px 0;
  color: #d96c9f;
  border-bottom: 1px dashed #f5bcd3;
  padding-bottom: 4px;
}

.box h3 {
  color: #c85b8c;
}

/* ==================== NAVIGATION ==================== */
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav li {
  margin: 6px 0;
}

.nav a {
  color: #c85b8c;
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  text-decoration: underline;
}

/* ==================== BLOG SUBMENU ==================== */
#blog-subnav {
  list-style: none;
  padding-left: 15px;
  margin-top: 5px;
  font-size: 13px;
}

#blog-subnav a {
  color: #c85b8c;
}


/* ==================== UPDATES BOX (6 LINES, HARD LOCK) ==================== */

#updates-box {
  height: auto;
}

/* Fixed-height scrolling list */
#updates-list {
  list-style: none;
  padding-left: 0;
  margin: 0;

  max-height: 120px;   /* ≈ 6 lines */
  overflow-y: auto;

  border-top: 1px dashed #f5bcd3;
  padding-top: 6px;
}

/* Timeline items */
#updates-list li {
  font-size: 14px;
  line-height: 1.4;
  border-left: 2px solid #d96c9f;
  padding-left: 6px;
  margin-bottom: 6px;
  position: relative;
}

/* Timeline dot */
#updates-list li::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #d96c9f;
  border-radius: 50%;
}

/* ==================== GALLERY ==================== */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-item img {
  width: 200px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 1000px) {
  #wrapper {
    width: 95%;
  }

  .main {
    width: 60%;
  }

  .nav, .side {
    width: 18%;
  }
}

@media screen and (max-width: 700px) {
  #wrapper {
    flex-direction: column;
  }

  .column {
    width: 100%;
    margin-bottom: 10px;
  }

  .main {
    margin: 0;
  }
}

/* ==================== GLOBAL LINK STYLES ==================== */
a {
  color: #d6697f;
  text-decoration: none;
}

a:visited {
  color: #964152;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: #d6697f;
}

