html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
      to bottom,
      #fefbf7 0%,
      #f7f2ee 40%,
      #f1eae6 70%,
      #ece2dd 100%
    ),
    radial-gradient(circle at top right, rgba(245, 230, 250, 0.3), transparent 60%),
    radial-gradient(circle at bottom left, rgba(240, 225, 240, 0.2), transparent 70%);
  background-attachment: fixed;
  background-blend-mode: soft-light, screen, lighten;
  color: #4c3d36;
  line-height: 1.8;
}

#navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  background: linear-gradient(to right, rgba(240, 225, 245, 0.4), rgba(230, 210, 240, 0.3));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 180, 220, 0.4);
  box-shadow: 0 4px 30px rgba(180, 160, 200, 0.1);
  text-align: center;
  z-index: 999;
}

#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #9b7fad;
  margin: 0 14px;
  padding: 12px 20px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  transition: all 0.5s ease;
  overflow: hidden;
}

#navigation a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #caa8dd;
  transition: width 0.4s ease;
}

#navigation a:hover::before {
  width: 80%;
}

#navigation a:hover {
  color: #d2a6eb;
  background: rgba(245, 235, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(180, 140, 210, 0.2);
}

h1 {
  font-family: 'Uncial Antiqua', 'Great Vibes', cursive;
  font-size: 28px;
  color: #a1789a;
  text-align: center;
  letter-spacing: 1.2px;
  margin: 40px 0 20px 0;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8),
               0 0 10px rgba(180, 150, 180, 0.3);
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #e3d2e8, #b893c6, #e3d2e8);
  border-radius: 10px;
  opacity: 0.6;
}

blockquote {
  background: radial-gradient(circle at top, rgba(255,255,255,0.4), rgba(250,240,255,0.3));
  border-left: none;
  border-radius: 30px;
  padding: 30px 40px;
  font-style: italic;
  font-family: 'EB Garamond', serif;
  color: #6a5465;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

blockquote::before,
blockquote::after {
  content: '❝';
  font-size: 48px;
  color: #d4bddf;
  position: absolute;
  opacity: 0.2;
}

blockquote::before {
  top: 10px;
  left: 20px;
}

blockquote::after {
  bottom: 10px;
  right: 20px;
  transform: rotate(180deg);
}

#header {
  position: relative;
  width: 70%;
  max-width: 854px;
  height: 358px;
  margin: 100px auto 40px auto;
  border-radius: 60px;
  background: url('images/head.jpg') no-repeat center center;
  background-size: cover;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  filter: brightness(0.95) contrast(1.05) saturate(1.1);
  transition: border-radius 0.7s ease, box-shadow 0.7s ease;
}

#header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(198, 164, 200, 0.25),
    rgba(170, 130, 180, 0.2)
  );
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 1;
}

#header:hover {
  border-radius: 100px 20px 100px 20px / 40px 80px 40px 80px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}

#header:hover::after {
  opacity: 1;
}

#content {
  position: relative;
  width: 854px;
  max-width: 854px;
  margin: 0 auto;
  padding-top: 10px; 
  padding-bottom: 80px;
  z-index: 1;
}

.contentx {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.65),
      rgba(245, 235, 245, 0.5),
      rgba(240, 220, 240, 0.45)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.4),
      rgba(250, 240, 250, 0.2)
    );
  padding: 40px;
  border-radius: 40px;
  font-size: 18px;
  font-family: 'Lora', serif;
  color: #574453;
  text-align: justify;
  box-shadow:
    0 10px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.contentx::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 60%);
  opacity: 0.2;
  z-index: 0;
}

.contentx > * {
  position: relative;
  z-index: 1;
}

.contentx input,
textarea,
select {
  background-color: rgba(255,255,255,0.6);
  border: 1px solid #dac6dc;
  padding: 12px 18px;
  color: #5e4c57;
  border-radius: 20px;
  font-size: 16px;
  font-family: 'Crimson Text', serif;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 8px rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.contentx input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #c8a5d9;
  background-color: rgba(255,255,255,0.8);
  box-shadow: 0 0 12px rgba(190, 160, 210, 0.3);
}

a {
  color: #a474b5;
  font-size: 18px;
  font-family: 'Lora', serif;
  letter-spacing: 1.2px;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  padding: 6px 4px;
  transition: all 0.4s ease;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #cda5e1;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #cda5e1;
}


b, i {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #b58cc7, #e2c3e9, #b58cc7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: background-position 0.8s ease, color 0.8s ease;
  background-size: 300% 300%;
  background-position: 0% 50%;
  cursor: default;
}

b:hover, i:hover {
  background-position: 100% 50%;
  color: #d4aee5;
  text-shadow: 0 0 8px rgba(200, 160, 220, 0.6);
}