body {
  background: url('img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

header {
    position: absolute;
    top: 20px;
    right: 20px;
}

.whoami {
    font-size: 24px;
    text-decoration: none;
    color: hotpink;
    font-weight: bold;
    text-shadow: 2px 2px #aaa;
    text-transform: lowercase;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 100px;
}

.main-content {
    text-align: center;
    flex-grow: 1;
}

.main-image {
    max-width: 500px;
    height: auto;
}

.nav-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: hotpink;
    font-size: 16px;
    font-weight: bold;
    text-transform: lowercase;
}

.sidebar-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    font-size: 20px;
    color: black;
    text-shadow: 2px 2px #ccc;
    margin-left: 20px;
}

/* READING JOURNAL WINDOWS STYLE */

.desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
}

.window {
  width: 300px;
  background: rgba(255, 255, 255, 0.2); /* plus transparent qu'avant */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 192, 203, 0.4);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.window:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px hotpink;
}

.window-header {
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 1px #fff;
}

.buttons {
  display: flex;
  gap: 6px;
}

.btn {
  width: 12px;
  height: 12px;
  background-color: pink;
  box-shadow: inset 0 0 2px #fff;
}

.window-content {
  padding: 15px;
}

.window-content img {
  width: 100%;
  margin-bottom: 10px;
}

.info p {
  margin: 5px 0;
  font-size: 14px;
  text-transform: lowercase;
}

.read-more {
  margin-top: 10px;
  background: hotpink;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  text-transform: lowercase;
  transition: background 0.2s;
}

.read-more:hover {
  background: deeppink;
}

.entry-text {
  margin-top: 10px;
  display: none;
  font-size: 13px;
  padding: 10px;
  border-radius: 5px;
}

.entry-text.open {
  display: block;
}

.home-window {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.3);
  margin: 60px auto 0;
  width: fit-content;
}

.entry-preview {
  font-family: monospace;
  margin-top: 10px;
}

.entry-preview a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 5px 0;
  transition: color 0.2s;
}

.entry-preview a:hover {
  color: hotpink;
}

.entry-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}

.entry-excerpt {
  font-size: 13px;
  opacity: 0.8;
}
