/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

/* BACKGROUND */
body {
  font-family: 'Quicksand', sans-serif;
  color: #5a4a42;
  background-image: url('mainbackground.jpg');
  background-repeat: repeat;
}

/* PAGE */
.page {
  width: 960px;
  margin: 60px auto 30px auto; 
}

/* HEADER */
.header {
  width: 680px; 
  max-width: 100%;
  background: #fffdf7;
  padding: 16px;
  margin-left: 280px; 
  margin-bottom: 20px;
  text-align: center;
}

.header h1 {
  font-family: 'Playfair Display', serif;
  color: #d97a9b;
  font-size: 28px;
}

.subtitle {
  font-size: 12px;
}

/* SCALLOP */
.scallop {
  position: relative;
}

.scallop::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background:
    radial-gradient(circle at 10px -2px, #fffdf7 12px, transparent 13px);
  background-size: 20px 14px;
}

/* LAYOUT */
.content {
  display: flex;
  gap: 20px;
  position: relative;
}

/* SIDEBAR */
.sidebar {
  width: 260px;
  position: relative; 
}

/* BOXES */
.box {
  background: #fffdf7;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #e3c7d0;
}

.box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #d97a9b;
  margin-bottom: 6px;
}

.box p {
  font-size: 13px; 
}

.nav-list {
  list-style: none;
}

.nav-list li {
  margin-bottom: 6px;
}

.nav-list a {
  text-decoration: none;
  color: #7b5b63;
  transition: all 0.2s ease; 
}

.nav-list a:hover {
  color: #2b2024;   
}

.socials {
  margin-top: 10px;
  font-size: 12px;
}

/* MAIN */
.main {
  position: relative;
  flex: 1;
}

/* STICKERS */
.sticker {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.sticker-1 {
  top: -40px;   
  right: -10px; 
  width: 100px; 
}

.sticker-2 {
  top: 90px;
  left: -100px;
  width: 90px;  
}

.sticker-left { 
  top: -160px;      
  left: 90px;     
  width: 190px;    
}

/* POSTS */
.post {
  background: #fffdf7;
  border: 1px solid #e3c7d0;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 12px; 
}

/* SCROLLABLE TEXT */
.scroll-box {
  max-height: 221px;
  min-height: 100px;
  overflow-y: auto;
  overflow-x: hidden;
}

.scroll-box.long {
  max-height: 340px;
  min-height: 340px;
}

.post h2 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #d97a9b;
  margin-bottom: 6px;
}

.post p {
  line-height: 1.6;
}

/* PAGES */
.page-set {
  display: none;
}

.page-set.active {
  display: block;
}

/* PAGINATION */
.pagination {
  background: #fffdf7;
  text-align: center;
  padding: 10px;
  border: 1px solid #e3c7d0;
}

.pagination span {
  cursor: pointer;
  margin: 0 6px;
  color: #d97a9b;
  font-size: 14px;
  transition: all 0.2s ease; 
}

.pagination span:hover {
  color: #2b2024;        

/* FOOTER */
.footer {
  text-align: center;
  font-size: 11px;
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .page {
    width: 100%;
    padding: 10px;
  }

  .content {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .header {
    width: 100%;
    margin-left: 0;
  }

  .sticker, .sticker-left {
    display: none; /* hide stickers on mobile */
  }
}
