html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
      to bottom,
      #fff0f7 0%,
      #ffe6f2 30%,
      #ffdceb 60%,
      #fff5fa 100%
    );
  background-attachment: fixed;
  color: #704d5f;
  line-height: 1.8;
}

#header {
  position: relative;
  width: 70%;
  max-width: 1100px;
  height: 647px;
  margin: 100px auto 40px auto;
  border-radius: 60px;
  background: url('img/header.png') no-repeat center center;
  background-size: cover;
  box-shadow: 0 12px 60px rgba(255, 182, 193, 0.5);
  overflow: hidden;
  transition: border-radius 0.7s ease, box-shadow 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid transparent;
  background-clip: padding-box;
}

#header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 6px;
  background: linear-gradient(135deg, #ffd1dc, #ffe4ec, #f7c5dd);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 1;
}

#header .header-content {
  display: none;
}

#navigation {
  width: auto;
  padding: 16px 40px;
  border-radius: 999px;
  background: rgba(255, 240, 245, 0.7);
  box-shadow: 0 12px 40px rgba(255, 182, 193, 0.3);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 30px;
  position: fixed;
  z-index: 999;
  backdrop-filter: blur(18px);
  border: 2px solid rgba(255, 182, 193, 0.3);
}

#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 12px;
  padding: 12px 28px;
  letter-spacing: 1.5px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffb6c1, #ffc1d9, #ffe4ec);
  box-shadow: 0 6px 16px rgba(255, 182, 193, 0.4);
  transition: all 0.4s ease;
  overflow: hidden;
}

#navigation a:hover {
  background: linear-gradient(135deg, #ffe4ec, #ffc1d9, #ffb6c1);
  color: #8b4d65;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.6);
}

#navigation a::before {
  display: none;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 72px;
  text-align: center;
  margin: 100px 0 50px 0;
  background: linear-gradient(90deg, #ff9bb3, #ffc1d9, #ffe4ec, #ff9bb3);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pastelGradient 6s ease infinite;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 182, 193, 0.5);
}

h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 6px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffb6c1, #ffc1d9, #ffe4ec);
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.6);
}

@keyframes pastelGradient {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

blockquote {
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.8), rgba(255, 230, 240, 0.6));
  border-radius: 40px;
  padding: 40px 60px;
  font-style: italic;
  font-size: 20px;
  color: #a84d6a;
  position: relative;
  box-shadow: 0 8px 40px rgba(255, 182, 193, 0.4), inset 0 0 20px rgba(255, 182, 193, 0.2);
  text-align: center;
  transition: all 0.4s ease-in-out;
}

blockquote::before,
blockquote::after {
  content: '❝';
  font-family: 'Cinzel', serif;
  font-size: 64px;
  color: #ff9bb3;
  position: absolute;
  opacity: 0.2;
  z-index: 0;
}

blockquote::before {
  top: -20px;
  left: 30px;
  transform: rotate(-10deg);
}

blockquote::after {
  bottom: -20px;
  right: 30px;
  transform: rotate(180deg);
}

blockquote > * {
  position: relative;
  z-index: 1;
}

a {
  color: #ff80a7;
}

a::after {
  background: #ffb6c1;
}

a:hover {
  color: #ff9bb3;
}

a:hover::after {
  background: #ff9bb3;
}

#content {
  position: relative;
  width: 70%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px; 
  padding-bottom: 80px;
  z-index: 1;
}

.contentx {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 230, 240, 0.95),
    rgba(255, 220, 235, 0.9),
    rgba(255, 240, 245, 0.95)
  );
  padding: 50px 60px;
  border-radius: 48px;
  font-size: 19px;
  font-family: 'Lora', serif;
  color: #704d5f;
  text-align: justify;
  box-shadow:
    0 10px 60px rgba(255, 182, 193, 0.3),
    inset 0 0 25px rgba(255, 182, 193, 0.15),
    0 0 0 2px rgba(255, 192, 203, 0.2);
  backdrop-filter: blur(14px);
  margin-bottom: 60px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  border: 1px solid rgba(255, 182, 193, 0.3);
}

.contentx::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, #ffb6c1, #ff9bb3, #ffb6c1);
  background-size: 200% auto;
  animation: shimmer 8s ease-in-out infinite;
  border-radius: 0 0 48px 48px;
  opacity: 0.6;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.contentx > * {
  position: relative;
  z-index: 1;
}

.contentx input,
textarea,
select {
  background-color: rgba(255, 240, 245, 0.8);
  border: 1px solid #ffb6c1;
  color: #704d5f;
  box-shadow: inset 0 0 8px rgba(255, 182, 193, 0.3);
  border-radius: 12px;
  padding: 10px;
}

.contentx input:focus,
textarea:focus,
select:focus {
  border-color: #ff9bb3;
  background-color: rgba(255, 230, 240, 0.95);
  box-shadow: 0 0 12px rgba(255, 182, 193, 0.5);
  outline: none;
}

b, i {
  background: linear-gradient(135deg, #ff9bb3, #ffb6c1, #ffc1d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

b:hover, i:hover {
  text-shadow: 0 0 10px rgba(255, 182, 193, 0.8);
}