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.6), transparent 60%),
    radial-gradient(circle at bottom left, rgba(244, 230, 225, 0.3), transparent 80%);
  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(255,255,255,0.25), rgba(255,255,255,0.1));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  text-align: center;
  z-index: 999;
}

#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #7a5f58;
  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: #b1958c;
  transition: width 0.4s ease;
}

#navigation a:hover::before {
  width: 80%;
}

#navigation a:hover {
  color: #b1958c;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(177, 149, 140, 0.3);
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  color: #af8f83;
  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(220, 190, 180, 0.3);
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #e6d2c5, #b89386);
  border-radius: 10px;
  opacity: 0.6;
}

blockquote {
  background: radial-gradient(circle at top, rgba(255,255,255,0.4), rgba(250,240,235,0.3));
  border-left: none;
  border-radius: 30px;
  padding: 30px 40px;
  font-style: italic;
  color: #6d524a;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

blockquote::before,
blockquote::after {
  content: '❝';
  font-family: serif;
  font-size: 48px;
  color: #c3a89b;
  position: absolute;
  opacity: 0.2;
}

blockquote::before {
  top: 10px;
  left: 20px;
}

blockquote::after {
  bottom: 10px;
  right: 20px;
  transform: rotate(180deg);
}

a {
  color: #b89386;
  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: #d8b2a5;
  transition: width 0.3s ease;
}

a:hover::after {  font-size: 18px;
font-family: 'Lora', serif;
  width: 100%;
}

a:hover {  font-size: 18px;
font-family: 'Lora', serif;
  color: #d8b2a5;
}

.contentx input,
textarea,
select {
  background-color: rgba(255,255,255,0.6);
  border: 1px solid #dac6bc;
  padding: 12px 18px;
  color: #5e4c47;
  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: #c8a599;
  background-color: rgba(255,255,255,0.8);
  box-shadow: 0 0 12px rgba(205, 175, 160, 0.3);
}



#header {
  position: relative;
  width: 70%;
  max-width: 1000px;
  height: 500px;
  margin: 100px auto 40px auto;
  border-radius: 60px;
  background: url('premade/head.jpg') no-repeat center center;
  background-size: cover;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1);
  border: none;
  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(194, 157, 130, 0.35),
    rgba(164, 125, 89, 0.3),
    rgba(136, 106, 67, 0.25)
  );
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  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: 1000px;
  max-width: 1000px;
  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, 230, 0.5),
      rgba(240, 220, 215, 0.45)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.4),
      rgba(255, 240, 230, 0.2)
    );
  padding: 40px;
  border-radius: 40px;
  font-size: 18px;
font-family: 'Lora', serif;
  color: #57443d;
  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;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.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;
  pointer-events: none;
  z-index: 0;
}

.contentx > * {
  position: relative;
  z-index: 1;
}

b, i {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(
    135deg,
    #b18a7a,
    #d1b2a1,
    #b18a7a
  );
  -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: #cfa893; 
  text-shadow: 0 0 8px rgba(207, 168, 147, 0.7);
}