/* ===== VARIABLES ===== */
:root {
  --pinkhair: #EE87B7;
  --brownfur: #94774D;
  --forestgreen: #4A7551;
  --darkbrown: #422F20;
  --eyeteal: #EE87B7;
}

/* ===== BASE ===== */
.header {
  width: 100%;
  height: 190px;  
  overflow: hidden;
  margin-bottom: 5px;
	background-image: url('https://beatricealfbernart.carrd.co/assets/images/gallery04/16360340.jpg?v=5c2e4967');
	background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Menu container */
.menu {
  display: flex;
  flex-direction: column;
}

/* Menu links */
.menu {
	display: inline-block;
	vertical-align: top;
	padding: 24px;
	background-image: url('https://i.pinimg.com/236x/c0/46/a2/c046a22f81006284befcc621bae7e2b0.jpg');
	image-rendering: pixelated;
}
.menu a {
  border: 1px solid #FFF;
  height: 32px;
  line-height: 30px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  background: #FFF;
  text-align: left;
  margin-bottom: 6px;
  box-sizing: border-box;
}

/* Hover effect */
.menu a:hover {
  background: var(--eyeteal);
  color: white;
}

/* Optional: icons spacing */
.menu a img {
  margin-top: 1px;
}

* {
  box-sizing: border-box;
}

.top-icon {
  position: fixed;   /* stays on screen */
  bottom: 0px;      /* distance from bottom */
  right: 10px;       /* distance from right */
  z-index: 9999;     /* stays above everything */
  width: 200px;
}


body {
  max-width: 70%;
  margin: auto;
  font-size: 1.1em;
  color: var(--darkbrown);
  font-family: "magica";
  background: url('https://2minutetabletop.com/wp-content/uploads/2020/03/Tiling-Grass-Texture-Main.jpg');
}

.btop {
	border: 1px solid #000;
	display: inline-block;
	vertical-align: top;
	width: 1100px;
	height: 300px;
	margin-bottom: 6px;
	background-size: cover;
  background-repeat: no-repeat;
	background-image: url('https://beatricealfbernart.carrd.co/assets/images/gallery04/16360340.jpg?v=5c2e4967');
}

/* ===== LINKS ===== */
a {
  color: var(--darkbrown);
  font-weight: 700;
}
a:hover {
  color: var(--forestgreen);
  text-decoration: none;
}

/* ===== MARQUEE ===== */

.scroller {
  border: 1px solid #000;
	display: block;
	vertical-align: top;
	height: 20px;
	font-weight: bold;
	background-image:url('https://beasgraphichoard.carrd.co/assets/images/gallery08/e975e3d4.png?v=8b172f24');
	overflow: hidden;
	border-radius: 12px;
}

.marquee {
  display: inline-block;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* ===== BASIC ELEMENTS ===== */

hr {
  height: 2px;
  background-color: var(--darkbrown);
  border: none;
}

/* ===== MAIN CONTAINER ===== */
.main {
  border: 3px ridge var(--pinkhair);
  border-radius: 50px;
  background:url('https://beasgraphichoard.carrd.co/assets/images/gallery01/f7466402.jpg?v=8b172f24');
  padding: 10px;
}

/* ===== GENERIC BOX STYLE ===== */
.box-style {
  border: 2px ridge var(--pinkhair);
  overflow: hidden;
  border-radius: 12px; 
}

/* ===== CONTENT ===== */
.content {
  padding: 1px;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100% - 33px);
}

/* ===== FLEX HELPERS ===== */
.flex {
  display: flex;
}
.space-between {
  justify-content: space-between;
}
.space-evenly {
  justify-content: space-evenly;
}
.wrap {
  flex-wrap: wrap;
}

/* ===== SECTION HEADER ===== */

.section-tab {
  text-align: left;
  padding: 1px;
  overflow: hidden;
  background-image: url("https://beasgraphichoard.carrd.co/assets/images/gallery08/355a8032.gif?v=8b172f24");
}

.section-title {
  display: inline-block;
  margin: 1px 1px 5px 5px;
  color: var(--pinkhair);
  font-size: 1em;
  font-weight: 700;
  font-family: "fairy";
  filter: drop-forestgreen(2px 0 0 white) drop-forestgreen(0 2px 0 white) drop-forestgreen(-2px 0 0 white) drop-forestgreen(0 -2px 0 white) drop-forestgreen(0px 1px 1px #FF73BA) drop-forestgreen(0px 1px 1px #FF73BA);
}



/* ===== SUB SECTION ===== */
.sub-section {
  color: var(--darkbrown);
  padding: 1px;
  background-color: var(--brownfur);
  border-bottom: 2px solid var(--pinkhair);
}

/* ===== GALLERY ===== */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.gallery img {
  width: 69px;
  height: auto;
}

.gallery2 {
  flex-wrap: wrap;
  gap: 2px;
}

.gallery2 img {
  width: 200px;
  height: auto;
}

/* ===== NAV BUTTONS ===== */
.navigation-button {
  background: linear-gradient(90deg,var(--brownfur),var(--forestgreen));
  color: var(--darkbrown);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 2px solid var(--pinkhair);
  font-family: "magica";
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: .2s;
}

.navigation-button:hover {
  background: var(--forestgreen);
  text-indent: 10px;
}

.navigation-button img {
  float: left;
}

/* ===== GRID LAYOUT ===== */

.box-style {
  overflow: hidden;
}

.content {
  padding: 1px;
  overflow: visible;
  height: auto;
}

#index-navigation {
  max-height: 100%;
  overflow-y: auto;
}


#index-grid { 
  display: grid; 
  grid-template-columns: 240px 1fr 1fr 1fr 330px;
  grid-template-rows: auto;
  gap: 2px;
}

#index-navigation { 
  display: grid;
  grid-area: 1 / 1 / 3 / 2;
}

#index-body { 
  grid-area: 1 / 2 / 6 / 5;
  background-image: url("/Decorations/Background_Checker_Pattern.png");
  overflow: auto;
}

#index-updates { 
  grid-area: 1 / 5 / 2 / 6;
  max-height: 100px;
  overflow-y: auto;
  background-image: url("https://beasgraphichoard.carrd.co/assets/images/gallery08/46c38b2c.png?v=8b172f24");
}


#profilemoodnstuff {
  grid-area: 2 / 5 / 4 / 6;
  min-height: 350px;
}

#profilemoodnstuff iframe {
  width: 100%;
  height: 1000px;
}

/* ===== INNER GRID ===== */
#index-chatbox {
  grid-area: 3 / 1 / 5 / 2; 
}
#index-body-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: 360px 210px;
  gap: 5px;
}

#index-footer {
  background-image: url("https://beasgraphichoard.carrd.co/assets/images/gallery08/e975e3d4.png?v=8b172f24");
}

#index-body-main { 
  grid-area: 1 / 1 / 2 / 3;
  text-align: center;
  overflow: visible;
  padding: 10px;
  background-image: url("https://beasgraphichoard.carrd.co/assets/images/gallery08/d694dd88.png?v=8b172f24");
}

#index-blinkies {
  grid-area: 2 / 3 / 3 / 2;
}

/* ===== STATUS ICON ===== */
#status-icon {
  width:100px;
  height:100px;
  background-size: cover;
  background-image: url('/Decorations/Icon_Lazer_1.png');
}

#status-icon:hover {
  background-image: url('/Decorations/Icon_Lazer_2.png');
}

/* ===== STICKER ===== */
#sticker-1 {
  float: right;
  width: 30%;
  max-width: 500px;
}

/* ===== HOVER EFFECT ===== */
.rotate-hover {
  transition: transform .2s;
}
.rotate-hover:hover {
  transform: rotate(5deg);
}

/* ===== LIKES BOX ===== */
.likes {
	border: 1px solid #000;
	width: 330px;
	height: 126px;
	margin-bottom: 10px;
	background-image: url('https://img.spoonflower.com/c/11242203/p/f/m/0DSmnOF7RiOBc17XI_nRsztW7LzdiLitaJuTrGXQHfaIbqvSteUwXy8l-Q/Plaid%20Pink%20and%20Tan%20Brown%20Tartan%20Plaid%20Check%20Pattern%20Plaid%20Tartan%20Scottish.jpg');
}

.likes table {
  border-color: white;
	background: var(--pinkhair);
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.likes th {
	background-image: url('https://www.paulspaintscv.com/cdn/shop/products/FAB6C5.png?v=1662579324');
	color: var(--forestgreen);
	margin: auto;
	margin-top: 10px;
}


/* ===== SCROLLBAR ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--pinkhair) var(--forestgreen);
}

*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: var(--forestgreen);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--pinkhair);
  border-radius: 10px;
  border: 1px solid var(--darkbrown);
}