html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
      to bottom,
      #fffdfa 0%,
      #fef5f0 30%,
      #f7eae4 60%,
      #f4e5dd 100%
    ),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 65%),
    radial-gradient(circle at bottom left, rgba(244, 230, 225, 0.25), transparent 85%);
  background-attachment: fixed;
  background-blend-mode: soft-light, screen, lighten;
  color: #4c3d36;
  line-height: 1.75;
}

#navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 2px 18px rgba(0,0,0,0.04);
  text-align: center;
  z-index: 999;
}

#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #7a5f58;
  margin: 0 12px;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  transition: all 0.4s ease;
  overflow: hidden;
}

#navigation a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: #b1958c;
  opacity: 0.6;
  transition: width 0.35s ease;
}

#navigation a:hover::before {
  width: 70%;
}

#navigation a:hover {
  color: #b1958c;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 40px;
  color: #af8f83;
  text-align: center;
  letter-spacing: 1px;
  margin: 40px 0 18px 0;
  text-shadow:
    0 1px 1px rgba(255,255,255,0.7),
    0 0 6px rgba(220, 190, 180, 0.2);
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #e6d2c5, #b89386);
  border-radius: 10px;
  opacity: 0.5;
}

blockquote {
  background: radial-gradient(circle at top, rgba(255,255,255,0.35), rgba(250,240,235,0.25));
  border-radius: 24px;
  padding: 26px 34px;
  font-style: italic;
  color: #6d524a;
  position: relative;
  box-shadow: 0 3px 14px rgba(0,0,0,0.04);
}

blockquote::before,
blockquote::after {
  content: '❝';
  font-family: serif;
  font-size: 42px;
  color: #c3a89b;
  position: absolute;
  opacity: 0.15;
}

blockquote::before {
  top: 8px;
  left: 16px;
}

blockquote::after {
  bottom: 8px;
  right: 16px;
  transform: rotate(180deg);
}

a {
  color: #b89386;
  font-size: 17px;
  font-family: 'Lora', serif;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  padding: 4px 2px;
  transition: all 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #d8b2a5;
  transition: width 0.3s ease;
  opacity: 0.7;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #d8b2a5;
}

.contentx input,
textarea,
select {
  background-color: rgba(255,255,255,0.55);
  border: 1px solid #dac6bc;
  padding: 10px 16px;
  color: #5e4c47;
  border-radius: 16px;
  font-size: 15px;
  font-family: 'Crimson Text', serif;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 6px rgba(255,255,255,0.3);
  transition: all 0.25s ease;
}

.contentx input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #c8a599;
  background-color: rgba(255,255,255,0.75);
  box-shadow: 0 0 8px rgba(205, 175, 160, 0.2);
}

#header {
  position: relative;
  width: 70%;
  max-width: 1000px;
  height: 652px;
  margin: 100px auto 40px auto;
  border-radius: 80px 40px 80px 40px / 50px 70px 50px 70px;
  background: url('premade/head.jpg') no-repeat center center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  filter: brightness(0.97) contrast(1.03) saturate(1.05);
  transition: all 0.6s ease;
}

#header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(194, 157, 130, 0.25),
    rgba(164, 125, 89, 0.2),
    rgba(136, 106, 67, 0.18)
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

#header:hover {
  border-radius: 90px 30px 90px 30px / 60px 80px 60px 80px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
}

#header:hover::after {
  opacity: 1;
}

#content {
  position: relative;
  width: 1000px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 80px;
}

.contentx {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.6),
      rgba(245, 235, 230, 0.45),
      rgba(240, 220, 215, 0.4)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.35),
      rgba(255, 240, 230, 0.18)
    );
  padding: 36px;
  border-radius: 50px 30px 50px 30px / 40px 60px 40px 60px;
  font-size: 17px;
  font-family: 'Lora', serif;
  color: #57443d;
  text-align: justify;
  box-shadow:
    0 6px 30px rgba(0, 0, 0, 0.05),
    inset 0 0 20px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.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.12;
  pointer-events: none;
}

.contentx > * {
  position: relative;
  z-index: 1;
}

b, i {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: linear-gradient(
    135deg,
    #b18a7a,
    #d1b2a1,
    #b18a7a
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s ease;
}

b:hover, i:hover {
  background-position: 100% 50%;
  text-shadow: 0 0 4px rgba(207, 168, 147, 0.5);
}

#footer {
  margin-top: 40px;
  padding: 30px 20px 70px;
  text-align: center;
  position: relative;
}

.footer-ornament {
  width: 220px;
  height: 20px;
  margin: 0 auto;
  position: relative;
  opacity: 0.9;
}

.footer-ornament::before,
.footer-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8a599);
}

.footer-ornament::after {
  right: 0;
  background: linear-gradient(to left, transparent, #c8a599);
}

.footer-ornament::before {
  left: 0;
}

.footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-ornament::marker {
  display: none;
}

.footer-ornament::selection {
  background: transparent;
}

.footer-ornament::after,
.footer-ornament::before {
  top: 50%;
  transform: translateY(-50%);
}

.footer-ornament::before,
.footer-ornament::after {
  opacity: 0.6;
}

.footer-ornament::after,
.footer-ornament::before {
  z-index: 0;
}

.footer-ornament::after,
.footer-ornament::before {
  pointer-events: none;
}

.footer-ornament::before,
.footer-ornament::after {
  content: '';
}

.footer-ornament.top::after,
.footer-ornament.bottom::after {
  content: '❦';
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  font-size: 18px;
  color: #b89386;
  opacity: 0.7;
  background: none;
}

.footer-inner {
  max-width: 700px;
  margin: 30px auto;
}

.footer-name {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: #af8f83;
  margin-bottom: 16px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  font-size: 17px;
  margin: 0 12px;
  opacity: 0.8;
}

.footer-links a::after {
  height: 1px;
  opacity: 0.5;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 16px;
  color: #9c7f75;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 20px;
}