@font-face {
  font-family: 'Daydream';
  src: url('../style/Daydream DEMO.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Ithaca';
  src: url('../Fonts/Ithaca-LVB75.ttf') format('truetype');
}

body {
  margin: 0;
  font-family: 'Daydream', 'Comic Sans MS', 'Rubik', sans-serif;
  background-image: url('https://octobersdream.neocities.org/assets/images/gengar%20wallpaper.jpg');
  background-repeat: repeat; /* or use 'no-repeat' if using a large image */
  background-size: auto; /* or 'cover' if using a full-screen wallpaper */
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  cursor: url('../images/cursor.cur'), auto; /* optional custom cursor */
}

.myspace-wrapper {
  max-width: 1000px;
  margin: auto;
  background-color: rgba(20, 0, 40, 0.8);
  border: 3px double #ff00ff;
  padding: 1rem;
  box-shadow: 0 0 20px #ff00ff;
}

header {
  text-align: center;
  background-color: #1a001f;
  border-bottom: 2px dotted #ff99ff;
  padding: 1rem;
}

.october-title {
  font-family: 'Ithaca', cursive;
  font-size: 3rem;
  color: #ff99ff;
  text-shadow: 2px 2px 4px #ff00ff;
}

.image-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #250030;
  padding: 1rem;
  border-bottom: 2px dashed #ff66cc;
}

.image-nav img {
  width: 80px;
  height: auto;
  transition: transform 0.2s ease, filter 0.2s;
}

.image-nav img:hover {
  transform: scale(1.2);
  filter: brightness(1.4);
}

.profile-layout {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sidebar {
  flex: 1 1 250px;
  background-color: #30003a;
  padding: 1rem;
  border: 2px groove #aa00ff;
  margin-right: 1rem;
  color: #ffccff;
}

.sidebar .pfp {
  width: 100%;
  border: 2px solid #ff66cc;
  margin-bottom: 1rem;
}

.content {
  flex: 3;
  background-color: #200025;
  padding: 1rem;
  border: 2px solid #9900cc;
  color: #fbd0ff;
}

.content h2 {
  font-family: 'Ithaca', cursive;
  color: #ffb3ff;
  text-shadow: 1px 1px 2px #ff00ff;
}

a {
  color: #ff99ff;
  text-decoration: underline;
}

a:hover {
  color: #ff00ff;
  text-shadow: 1px 1px 4px #fff;
}

/* Fullscreen Click-to-Enter overlay */
#enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1025;
  color: #ffb3ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Ithaca', sans-serif;
  font-size: 2rem;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  transition: opacity 1s ease;
}

#enter-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Fade-in effect for main site content */
#main-content {
  transition: opacity 2s ease;
}

.content {
  background-color: #200025;
  padding: 1rem;
  border: 2px solid #9900cc;
  color: #fbd0ff;
  max-width: 800px;
  margin: 2rem auto;
}

.blog-post {
  border-bottom: 1px dotted #ff66cc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.post-title {
  font-family: 'Ithaca', cursive;
  color: #ffb3ff;
  margin-bottom: 0.2rem;
}

.post-date {
  font-size: 0.9rem;
  color: #cc99cc;
  margin-bottom: 0.5rem;
}

.read-more {
  color: #ff99ff;
  text-decoration: underline;
  font-weight: bold;
}

.read-more:hover {
  color: #ff00ff;
  text-shadow: 1px 1px 4px #fff;
}
