@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=UnifrakturCook:wght@700&family=Playfair+Display:ital,wght@1,500&display=swap');

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at top, #1a1a1a 0%, #0d0d0d 100%);
  color: #e6e6e6;
  font-family: 'Playfair Display', serif;
  background-attachment: fixed;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 230px;
  background: rgba(15, 15, 20, 0.95);
  border-right: 1px solid #2b2b2b;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 10px;
  box-shadow: 2px 0 15px rgba(0,0,0,0.5);
}

.logo {
  font-family: 'UnifrakturCook', cursive;
  color: #b39ddb;
  text-shadow: 0 0 8px #7e57c2;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.nav a {
  display: block;
  text-decoration: none;
  color: #d8bfd8;
  margin: 8px 0;
  transition: 0.3s;
  font-family: 'Cinzel Decorative', serif;
}

.nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #caa6ff;
  transform: translateX(3px);
}

.angel {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.angel-img {
  width: 120px;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px #c8a6ff);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 40px;
}

.header {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.header-img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(130, 100, 180, 0.6);
  opacity: 0.9;
}

.text h2 {
  font-family: 'Cinzel Decorative', serif;
  color: #cbbde2;
  text-shadow: 0 0 10px #6a5acd;
}

.text p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #dcd0ff;
}

.text b {
  color: #bb86fc;
}
