/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: #f4BECE;
  text-decoration: none; 
  transition: color 0.3s ease;
}
a:hover { color: #f17ca0; }

a:visited { color: #F4BECE; }
a:active { color: #f4BECE; }

/* Body */
body {
  background: url("https://i.pinimg.com/originals/69/e2/7c/69e27c177766a3cb153b37682b22186c.gif") repeat #2c003e;
  font-family: "Emilys Candy", cursive;
  color: #3a3a3a;
  padding: 20px;
  min-height: 100vh;
  cursor: url('https://cur.cursors-4u.net/symbols/sym-6/sym596.cur'), auto !important;
}

/* Title */
h2 {
  font-size: 3.8rem;
  color: #F4BECE;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px #a63a5a;
}
h3 {
  font-size: 1.6rem;
  color: #a23359;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 0 3px #f4bece;
}

/* Nav */
.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}
.menu-btn {
  padding: 10px 16px;
  background: #ffdbe7;
  border: 2px solid #f7a1b4;
  border-radius: 20px;
  font-size: 14px;
  color: #a23359;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(244, 148, 163, 0.3);
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.menu-btn:hover {
  background: #f494a3;
  color: white;
  transform: translateY(-3px);
}
.menu-btn.active {
  background: #f17ca0;
  border-color: #f17ca0;
  color: white;
}

/* Layout */
.layout {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 25px;
  border: 25px solid transparent;
  border-image: url("borderframe.gif") 30 round;
  padding: 15px;
}

.content { flex: 1; }
.section { margin-bottom: 25px; }

/* Sidebars */
.left-bar,
.right-bar {
  width: 12%;
  min-width: 120px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 2px dashed #f4a6b8;
  border-radius: 10px;
  padding: 10px;
  font-family: "Emilys Candy", cursive;
  color: #FFD6F0;
  line-height: 1.5;
}

.profile-pic, .vibe-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

/* Tab content */
.tabcontent {
  background: repeating-linear-gradient(45deg,#fff0f5,#fff0f5 10px,#ffe4ed 10px,#ffe4ed 20px);
  padding: 25px;
  border-radius: 20px;
  border: 3px dashed #ff77c0;
  box-shadow: 0 6px 18px rgba(244, 148, 163, 0.25);
  font-size: 18px;
  line-height: 1.6;
}

/* Images */
.home-pic {
  max-width: 100%;
  width: 500px;
  border-radius: 12px;
  display: block;
  margin: 10px auto;
}

/* MP3 Player */
.fake-mp3-player {
  width: 280px;
  background: #ffeef4;
  border: 2px solid #f4a6b8;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(244, 148, 163, 0.35);
  font-family: 'Emilys Candy', cursive;
  font-size: 16px;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.mp3-header, .mp3-footer {
  background: #fcd4df;
  padding: 12px 10px;
  text-align: center;
  color: #a84d6e;
}
.mp3-header { font-weight: bold; border-bottom: 1px dashed #f4a6b8; }
.mp3-footer { border-top: 1px dashed #f4a6b8; }
.mp3-footer button {
  font-size: 22px;
  background: #ffdbe7;
  border: none;
  border-radius: 14px;
  padding: 8px 15px;
  cursor: pointer;
  color: #a23359;
  box-shadow: 0 3px 7px rgba(241, 124, 160, 0.6);
}
.mp3-footer button:hover { background: #f17ca0; color: white; }

/* Responsive */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
    gap: 20px;
  }
  .left-bar,
  .right-bar {
    width: 100%;
    min-width: auto;
    order: 2;
  }
  .content { order: 1; }
}
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: #f4BECE;
  text-decoration: none; 
  transition: color 0.3s ease;
}

a:visited {
  color: #F4BECE; 
}

a:hover {
  color: #f17ca0; 
  text-decoration: none;
}

a:active {
  color: #f4BECE;  
}

body {
  background-image: url("https://i.pinimg.com/originals/69/e2/7c/69e27c177766a3cb153b37682b22186c.gif");
  background-repeat: repeat;
  background-color: #2c003e;
  font-family: "Emilys candy", cursive;
  color: #3a3a3a;
  padding: 20px;
  min-height: 100vh;
  cursor: url('https://cur.cursors-4u.net/symbols/sym-6/sym596.cur'), auto !important;
}


h2 {
  font-size: 4.5rem;
  color: #F4BECE;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px #a63a5a;
}

h3 {
  font-size: 1.75rem;
  color: #F4BECE;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px #a63a5a;
}



.layout {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  gap: 30px;
  border: 25px solid transparent;
  border-image: url("borderframe.gif") 30 round;
  padding: 10px;
  box-sizing: border-box;
}

/* Menu buttons */
.menu {
  display: block;
  gap: 2px;
  margin-bottom: 30px;
  margin-top: 30px;
  width: 90%;
}

/* Menu buttons (now inline style) */
.menu-btn {
  padding: 6px 10px; 
  background-color: transparent;
  border: none;
  border-radius: 3px;
  font-size: 17px;
  font-family: "Emilys candy";
  color: #f4bece;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  text-transform: capitalize;
}

.menu-btn:hover {
  background-color: #f494a3;
  color: white;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 15px rgba(244, 148, 163, 0.5);
}

.content {
  flex: 1;
}

.tabcontent {
  background-color: #fff0f5;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(244, 148, 163, 0.25);
  font-size: 18px;
  line-height: 1.6;
  display: none; /* default hidden, JS toggles display */
}

.tabcontent[style*="display: block"] {
  display: block; /* show currently active */
}

/* Section headings inside tabcontent */
.section h3 {
  margin-bottom: 12px;
  color: #a23359;
  text-shadow: 0 0 4px #f17ca0;
}

/* Fake MP3 Player */
.fake-mp3-player {
  width: 280px;
  background: #ffeef4;
  border: 2px solid #f4a6b8;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(244, 148, 163, 0.35);
  font-family: 'Emilys Candy', cursive;
  font-size: 16px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  overflow: hidden;
  user-select: none;
}

.mp3-header {
  background: #fcd4df;
  padding: 12px 10px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px dashed #f4a6b8;
  color: #a84d6e;
  font-size: 1.1rem;
  letter-spacing: 1.2px;
}

.mp3-body {
  padding: 15px 10px;
  text-align: center;
  color: #6e3748;
}

.mp3-footer {
  padding: 10px 0;
  background: #fcd4df;
  border-top: 1px dashed #f4a6b8;
  text-align: center;
}

.mp3-footer a button {
  font-size: 22px;
  background: #ffdbe7;
  border: none;
  border-radius: 14px;
  padding: 8px 15px;
  cursor: pointer;
  color: #a23359;
  box-shadow: 0 3px 7px rgba(241, 124, 160, 0.6);
  transition: background 0.3s ease;
}

.mp3-footer a button:hover {
  background: #f17ca0;
  color: white;
  box-shadow: 0 5px 15px rgba(241, 124, 160, 0.8);
}

.home-pic {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 10px auto;
}

.tabcontent {
  border: 3px dashed #ff77c0;
  background: repeating-linear-gradient(
    45deg,
    #fff0f5,
    #fff0f5 10px,
    #ffe4ed 10px,
    #ffe4ed 20px
  );
}

.page-wrapper {
  display: flex;
  justify-content: space-between;
}

.left-bar,
.right-bar {
  width: 15%;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  font-family: 'Emilys Candy', cursive;
  font-size: 15px;
  color: #FFD6F0;
  line-height: 1.5;
}

.profile-pic, .vibe-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.marquee {
  width: 100%;
  overflow: hidden;          /* hide overflow */
  white-space: nowrap;       /* keep text in one line */
  background-color: transparent;
  padding: 5px 0;
  box-sizing: border-box;
  border: none;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;       /* start off-screen */
  animation: marquee 10s linear infinite; /* scroll animation */
  font-weight: bold;
  color: #856404;
}

@keyframes marquee {
  100% { transform: translateX(0%); }
  0% { transform: translateX(-100%); }
}

/*journal stuff*/
.entry {
  height: auto;
  padding: 15px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: clamp(300px, 80%, 750px);
  margin: 20px auto;        
  padding: 20px;
  border: 40px solid transparent; 
  border-image: url('borderframe.gif'); 
  border-image-slice: 100; 
  border-image-repeat: round;
}

.entry h3 {
  font-size: 18px;
}

