#header {
  position: relative;
  width: 70%;
  max-width: 1100px;
  height: 604px;
  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);
  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;
}

/* ====== Global ====== */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
      to bottom,
      #1b1d1f 0%,
      #232627 30%,
      #2a2d2f 60%,
      #181a1c 100%
    ),
    radial-gradient(circle at top right, rgba(60, 100, 80, 0.3), transparent 60%),
    radial-gradient(circle at bottom left, rgba(50, 70, 90, 0.3), transparent 80%);
  background-attachment: fixed;
  background-blend-mode: soft-light, screen, lighten;
  color: #d4e6e2;
  line-height: 1.8;
}

/* ====== NAVIGATION ====== */
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  background: linear-gradient(to right, rgba(40, 60, 50, 0.25), rgba(30, 40, 60, 0.15));
  backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(120, 200, 180, 0.2);
  box-shadow: 0 6px 30px rgba(0,0,0,0.3);
  text-align: center;
  z-index: 999;
}

#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Cinzel Decorative', serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #8ed9c4;
  margin: 0 20px;
  padding: 14px 26px;
  letter-spacing: 2px;
  border-radius: 999px;
  transition: all 0.5s ease;
  overflow: hidden;
}

#navigation a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, #7edcd2, #49c7b1);
  transition: width 0.4s ease;
  border-radius: 2px;
}

#navigation a:hover::before {
  width: 80%;
}

#navigation a:hover {
  color: #aef1dd;
  background: rgba(60, 80, 70, 0.25);
  box-shadow: 0 0 14px rgba(90, 220, 180, 0.4);
  transform: scale(1.05);
}

/* ====== H1 Heading ====== */
h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: #7ad6dd;
  text-align: center;
  letter-spacing: 2px;
  margin: 120px 0 30px 0;
  position: relative;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.6),
    0 0 20px rgba(80, 200, 255, 0.2);
}

h1::before {
  content: '✧';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #48aabf;
  opacity: 0.6;
  text-shadow: 0 0 8px rgba(90, 200, 220, 0.3);
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #79c6b5, #45b2c0);
  border-radius: 5px;
  opacity: 0.7;
}

/* ====== BLOCKQUOTE ====== */
blockquote {
  background: linear-gradient(135deg, rgba(40, 50, 60, 0.6), rgba(30, 40, 50, 0.4));
  border-radius: 40px;
  padding: 40px 60px;
  font-style: italic;
  font-size: 20px;
  color: #a8e3d9;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(70, 150, 160, 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: #6ccdc1;
  position: absolute;
  opacity: 0.3;
  z-index: 0;
}

blockquote::before {
  top: -20px;
  left: 30px;
  transform: rotate(-10deg);
}

blockquote::after {
  bottom: -20px;
  right: 30px;
  transform: rotate(180deg);
}

/* Keeps blockquote content above decorative marks */
blockquote > * {
  position: relative;
  z-index: 1;
}


a {
  color: #66c0ba;
}

a::after {
  background: #339989;
}

a:hover {
  color: #8be4d6;
}

a:hover::after {
  background: #8be4d6;
}

.contentx input,
textarea,
select {
  background-color: rgba(40, 50, 55, 0.6);
  border: 1px solid #507a72;
  color: #b4dcd7;
  box-shadow: inset 0 0 8px rgba(60, 80, 90, 0.3);
}

.contentx input:focus,
textarea:focus,
select:focus {
  border-color: #78c9c0;
  background-color: rgba(50, 60, 65, 0.8);
  box-shadow: 0 0 12px rgba(120, 200, 190, 0.4);
}

#header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(180, 240, 220, 0.06),
    rgba(90, 200, 180, 0.05)
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

#header:hover {
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);

  /* 🟤 Turn Black & White */
  filter: grayscale(100%) brightness(1.1) contrast(1.05);
}

#header:hover::after {
  opacity: 1;
}

#header:hover::after {
  opacity: 1;
}

#content {
  position: relative;
  width: 1100px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px; 
  padding-bottom: 80px;
  z-index: 1;
}

.contentx {
  position: relative;
  background: linear-gradient(
      145deg,
      rgba(32, 40, 45, 0.9),
      rgba(24, 30, 36, 0.85),
      rgba(20, 25, 30, 0.8)
    ),
    radial-gradient(circle at top left, rgba(60, 120, 110, 0.2), transparent 80%);
  padding: 50px 60px;
  border-radius: 48px;
  font-size: 19px;
  font-family: 'Lora', serif;
  color: #c6e9e0;
  text-align: justify;
  box-shadow:
    0 10px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 25px rgba(60, 100, 90, 0.15),
    0 0 0 2px rgba(80, 150, 130, 0.08);
  backdrop-filter: blur(14px);
  margin-bottom: 60px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  border: 1px solid rgba(90, 150, 130, 0.12);
}

/* Soft glowing decorative shine inside */
.contentx::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(90, 200, 180, 0.1), transparent 70%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Optional soft animated gradient shimmer */
.contentx::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #48c6af, #2b8c8f, #48c6af);
  background-size: 200% auto;
  animation: shimmer 6s ease-in-out infinite;
  opacity: 0.2;
  border-radius: 0 0 48px 48px;
  z-index: 0;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.contentx > * {
  position: relative;
  z-index: 1;
}


b, i {
  background: linear-gradient(
    135deg,
    #7edcd2,
    #3fa7b4,
    #6bd3b0
  );
  text-shadow: none;
}

b:hover, i:hover {
  color: #a0efe0;
  text-shadow: 0 0 8px rgba(96, 205, 180, 0.6);
}
