/* ==========================
   BASE
========================== */

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #111;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================
   BACKGROUND (GIZEH)
========================== */

.bg {
  position: fixed;
  inset: 0;
  background: url("gizeh-bg.png") center / cover no-repeat;
  z-index: -2;
}

/* soft neutral fade for elegance */
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.25),
    rgba(0,0,0,0.2)
  );
}

/* ==========================
   CENTER LAYOUT
========================== */

.glass-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

/* ==========================
   ATELIER PANEL
========================== */

.glass-panel {
  width: 100%;
  max-width: 760px;
  height: 80vh;

  /* fast white */
  background: rgba(255, 255, 255, 0.92);

  border-radius: 6px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;

  animation: fadeIn 0.8s ease;
}

/* ==========================
   HEADER
========================== */

.notes-header {
  padding: 50px 60px 30px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.notes-header span {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}

/* ==========================
   CONTENT
========================== */

.notes-content {
  padding: 60px 90px;
  overflow-y: auto;
}

.notes-content h1 {
  font-size: 40px;
  font-weight: 200;
  letter-spacing: 8px;
  margin-bottom: 50px;
  text-align: center;
}

.notes-content p {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  color: #222;
  margin-bottom: 32px;
  text-align: center;
}

/* ==========================
   BLOCKQUOTE (very subtle)
========================== */

blockquote {
  margin: 60px auto;
  max-width: 520px;
  padding: 25px 30px;

  font-style: italic;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;

  border-left: 2px solid rgba(233, 30, 130, 0.3);
  background: rgba(233, 30, 130, 0.03);
}

/* ==========================
   BUTTON (ONLY PINK ACCENT)
========================== */

.atelier-btn {
  display: inline-block;
  margin: 40px auto 0 auto;
  padding: 12px 28px;

  border: 1px solid #111;
  background: transparent;

  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;

  transition: all 0.3s ease;
}

.atelier-btn:hover {
  border-color: #e91e82;
  color: #e91e82;
}

/* ==========================
   SCROLLBAR MINIMAL
========================== */

.notes-content::-webkit-scrollbar {
  width: 5px;
}

.notes-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
}

/* ==========================
   ANIMATION
========================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}