html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
      to bottom,
      #fdfcf8 0%,
      #f6faff 30%,
      #edf5f9 60%,
      #eaf1f5 100%
    ),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(circle at bottom left, rgba(220, 235, 240, 0.3), transparent 80%);
  background-attachment: fixed;
  background-blend-mode: soft-light, screen, lighten;
  color: #334045;
  line-height: 1.8;
}

.contentx h1 {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  text-align: center;
  margin: 20px 0 40px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4c7e92, #6daac0, #a8d4e7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(109,170,192,0.3);
  animation: shimmer 6s infinite linear;
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.contentx h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 12px auto 0 auto;
  background: linear-gradient(to right, transparent, #6daac0, transparent);
  border-radius: 2px;
  animation: underlinePulse 3s infinite ease-in-out;
}


@keyframes underlinePulse {
  0%, 100% { opacity: 0.4; width: 60px; }
  50% { opacity: 1; width: 120px; }
}


#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 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #456b7b;
  margin: 0 14px;
  padding: 12px 20px;
  border-radius: 999px;
  transition: all 0.5s ease;
  position: relative;
}

#navigation a:hover {
  color: #6daac0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(109,170,192,0.3);
}

#header {
  position: relative;
  width: 866px;
  max-width: 866px;
  height: 434px;
   margin: 100px auto 0 auto;
  border-radius: 50px 50px 0 0; 
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1);
}

.fade-slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeCycle 18s infinite;
}

.fade-slides img:nth-child(1) { animation-delay: 0s; }
.fade-slides img:nth-child(2) { animation-delay: 6s; }
.fade-slides img:nth-child(3) { animation-delay: 12s; }

@keyframes fadeCycle {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}
.header-text {
  position: absolute;
  top: 77%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  color: #C9DBDB;
  z-index: 2;
  max-width: 60%;
}

.header-text h1 {
  font-family: 'Prata', serif;
  font-size: 28px;
  margin: 0 0 20px 0;
}

.header-text p {
  font-family: 'Lora', serif;
  font-size: 15px;
  line-height: 1.5;
  color: #dbe9f0;
}

#content {
  position: relative;
  width: 866px;
  max-width: 866px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 80px;
  z-index: 1;
}

.contentx {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.65),
      rgba(235, 245, 250, 0.55),
      rgba(220, 235, 240, 0.5)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.4),
      rgba(235, 245, 250, 0.2)
    );
  padding: 40px;
  border-radius: 0 0 40px 40px;
  font-size: 18px;
  font-family: 'Lora', serif;
  color: #334045;
  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;
}

blockquote {
  background: radial-gradient(circle at top, rgba(255,255,255,0.5), rgba(235,245,250,0.4));
  border-left: none;
  border-radius: 30px;
  padding: 30px 40px;
  font-style: italic;
  color: #3e5a64;
  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: #6daac0;
  position: absolute;
  opacity: 0.25;
}

blockquote::before {
  top: 10px;
  left: 20px;
}

blockquote::after {
  bottom: 10px;
  right: 20px;
  transform: rotate(180deg);
}

a {
  color: #4c7e92;
  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: #6daac0;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #6daac0;
}

.contentx input,
textarea,
select {
  background-color: rgba(255,255,255,0.7);
  border: 1px solid #c5dce6;
  padding: 30px 28px;
  color: #334045;
  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: #6daac0;
  background-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 12px rgba(109,170,192,0.3);
}

b, i {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(
    135deg,
    #4c7e92,
    #6daac0,
    #4c7e92
  );
  -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: #6daac0; 
  text-shadow: 0 0 8px rgba(109,170,192,0.6);
}
