/* RESET */
* {
  box-sizing: border-box;
  cursor: url("cursor1.gif"), auto;
}

a:hover, img:hover {
  cursor: url("cursor1.gif"), pointer;
}

/* BODY */
body {
  transform: scale(0.85);
  transform-origin: top left;

  margin: 0;
  padding: 0;
  font-family: 'Short Stack', cursive;
  color: #e8a8bb;
  font-size: 13px;

  background-image: url("bgimg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* TOP BAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 25px;
  width: 1000px;
  margin: 0 auto;

  background: #fff9fb;
  border-bottom: 2px solid #efd2dc;
}

.logo img {
  height: 120px;
  display: block;
}

/* SEARCH */
.search input {
  padding: 6px 10px;
  border-radius: 10px;
  border: 2px solid #efd2dc;
  background: #fff6f9;
  font-size: 12px;
  color: #b88a9b;
  outline: none;
}

/* TOP BANNER */
.top-banner {
  width: 1000px;
  margin: 10px auto;
  border-radius: 15px;
  overflow: hidden;
}

.top-banner img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* MAIN LAYOUT */
.layout {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  padding: 10px;
}

/* SIDEBARS */
.sidebar {
  padding: 10px;
  background: #fff9fb;
  border: 2px dotted #efd2dc;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(220, 170, 190, 0.2);
}

.sidebar.left {
  width: 250px;
}

.sidebar.right {
  width: 320px;
}

/* 👇 THIS controls how tall sidebars are */
.sidebar.left,
.sidebar.right {
  height: 360px;
  overflow: hidden;
}

/* SIDEBAR LINKS */
.sidebar h3 {
  text-align: center;
  font-size: 14px;
  margin: 5px 0;
}

.sidebar a {
  display: block;
  text-decoration: none;
  color: #b88a9b;
  margin: 4px 0;
  padding: 5px;
  font-size: 12px;
  border-radius: 8px;
  background: #fff6f9;
  transition: 0.15s;
}

.sidebar a:hover {
  background: #fceaf1;
  color: #a8778c;
  transform: scale(1.05);
}

/* LEFT IMAGE */
.left-image-box {
  margin-top: 10px;
  padding: 8px;
  background: #ffffff;
  border: 2px solid #fff5f9;
  border-radius: 10px;
}

.left-image {
  width: 100%;
  border-radius: 10px;
}

/* MAIN */
.container {
  width: 500px;
  background: #fff9fb;
  border: 3px double #efd2dc;
  border-radius: 18px;
  padding: 15px;
}

/* INNER BANNER */
.banner img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
}

/* HEADER */
.header {
  text-align: center;
  font-family: 'Pacifico', cursive;
  font-size: 24px;
}

/* BLINK */
.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin: 8px 0;
  font-size: 12px;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 7s linear infinite;
}

@keyframes marquee {
  100% { transform: translateX(-100%); }
}

/* NAV (UNCHANGED — YOUR BUTTONS SAFE) */
.nav {
  text-align: center;
  margin: 10px 0;
}

.nav a {
  display: inline-block;
  padding: 6px 10px;
  margin: 4px;
  font-size: 12px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  background: linear-gradient(#fff5f9, #ffeef5);
  color: #b88a9b;
  border: 2px solid #efd2dc;
  box-shadow: 0 2px 6px rgba(220, 170, 190, 0.2);

  opacity: 0;
  transform: translateY(6px);
  animation: fadeIn 0.6s ease forwards;
}

.nav a:hover {
  transform: scale(1.08);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTIONS */
.section {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #fff5f9;
}

/* RIGHT IMAGE */
.right-inner {
  display: flex;
  gap: 12px;
}

.side-image {
  width: 200px;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
}

/* FOOTER */
.footer {
  text-align: center;
  font-size: 11px;
}

/* ================= BOTTOM ROW ================= */

.main-column {
  display: flex;
  flex-direction: column;
  width: 500px;
}

.bottom-row {
  width: 1000px;
  margin: 0 auto;          /* 👈 centers EXACTLY like layout */
  display: flex;
  gap: 10px;

  align-items: flex-start; /* 👈 THIS is what you were missing */
}

.center-box {
  margin-top: -10px; /* adjust this number freely */
  width: 500px;
  
}
.bottom-box {
  background: #fff9fb;
  border: 2px solid #efd2dc;
  border-radius: 12px;
  padding: 10px;
}
/* align widths */
.left-box {
  width: 250px;
  margin-top: -350px; 
  margin-left: 0px;
}

.right-box {
  width: 320px;
   margin-top: -350px; 
   margin-left: 0px;
}
/* IMAGES */
.bottom-img {
  width: 100%;
  height: 120px;
  margin-top: 10px;
  border-radius: 10px;
  object-fit: cover;
}
.topbar,
.top-banner,
.layout,
.bottom-row {
  position: relative;
  left: 80px;
}
.sidebar.left {
  background-image: url("bgboxes.png");
  background-size: cover;
  background-position: center;
}

/* TOP RIGHT SIDEBAR */
.sidebar.right {
  background-image: url("bgboxes.png");
  background-size: cover;
  background-position: center;
}

/* BOTTOM LEFT BOX */
.left-box {
  background-image: url("bgboxes.png");
  background-size: cover;
  background-position: center;
}

/* BOTTOM RIGHT BOX */
.right-box {
  background-image: url("bgboxes.png");
  background-size: cover;
  background-position: center;
}

.center-box {
  background-image: url("bgboxes.png");
  background-size: cover;
  background-position: center;

  /* keep your soft overlay so text is readable */
  background-color: rgba(255, 249, 251, 0.85);
}
.featured-item {
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: #c995a8;

  background: #fff6f9;
  border: 1px solid #efd2dc;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;

  transition: 0.2s;
}
.bottom-button {
  display: block;
  text-align: center;
  text-decoration: none;

  margin-top: 8px;
  padding: 6px;

  font-size: 11px;
  border-radius: 10px;

  background: linear-gradient(#fff5f9, #ffeef5);
  color: #b88a9b;
  border: 2px solid #efd2dc;

  box-shadow: 0 2px 6px rgba(220, 170, 190, 0.2);
  transition: 0.2s;
}

.bottom-button:hover {
  transform: scale(1.05);
  background: linear-gradient(#ffeef5, #fde4ee);
}

.featured-item:hover {
  background: #fceaf1;
  transform: scale(1.02);
}

/* square image */
.featured-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* text spacing */
.featured-text p {
  margin: 2px 0 0 0;
  font-size: 11px;
}
.center-box {
  width: 500px;
  height: 300px;
  display: flex;
  flex-direction: column;
}

.center-box h3 {
  margin: 0;
  padding: 6px;
  background: linear-gradient(#fff5f9, #ffeef5);
  border: 2px solid #efd2dc;
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
}

.forum-label {
  text-align: center;
  font-size: 11px;
  margin: 4px 0;
}

.chatbox {
  width: 100%;
  height: 100%;
  border: 2px solid #efd2dc;
  border-radius: 12px;
  background: #fff6f9;
  margin-top: 6px;
  box-shadow: inset 0 0 8px rgba(220, 170, 190, 0.2);
  clip-path: inset(30px 0 0 0);
}




























/* ABOUT */

/* ABOUT PAGE */

.about-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.about-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.about-text p {
  margin: 4px 0;
}

.about-list {
  padding-left: 15px;
}

.about-list li {
  margin-bottom: 4px;
}




/* GUESTBOOK */


/* GUESTBOOK */

.guestbook-box {
  padding: 8px;
}

.chatbox {
  width: 100%;
  height: 300px;

  border: 2px solid #efd2dc;
  border-radius: 12px;

  background: #fff6f9;

  clip-path: inset(30px 0 0 0);
}














