#header {
  position: relative;
  width: 70%;
  max-width: 1100px;
  height: 545px;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .header-content {
  display: flex;
  flex-direction: column;
  align-items: center;     
  text-align: center;       
  background: rgba(0,0,0,0.6);
  padding: 30px 40px;
  border-radius: 10px;
  z-index: 2;
}

#header .header-content h1,
#header .header-content p {
  width: 100%;
  margin: 0.5rem 0;
  text-align: center;
  color: #fff;
}

#header .header-content h1 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 3.5rem;
  letter-spacing: 2px;
}

#header .header-content p {
  font-size: 1.5rem;
  color: #ddd;
}

.header h1, .header p {
  margin: 0.5rem 0;
  width: 100%;
  text-align: center;    font-family: 'Cinzel Decorative', cursive !important;
}

.header p {
  font-size: 1.5rem;
  color: #ddd;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
      to bottom,
      #0e0f11 0%,
      #15171a 30%,
      #1a1d20 60%,
      #0a0b0d 100%
    ),
    radial-gradient(circle at top right, rgba(40, 60, 100, 0.25), transparent 60%),
    radial-gradient(circle at bottom left, rgba(30, 50, 80, 0.2), transparent 80%);
  background-attachment: fixed;
  background-blend-mode: soft-light, screen, lighten;
  color: #c4d6dd;
  line-height: 1.8;
}

#navigation {
  width: auto;
  padding: 16px 40px;
  border-radius: 999px;
  background: rgba(30, 40, 60, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 30px;
  position: fixed;
  z-index: 999;
  backdrop-filter: blur(16px);
  border: 2px solid rgba(100, 140, 180, 0.15);
}

#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Cinzel Decorative', serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #6fa8e4;
  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, #6a9edc, #3f6fba);
  transition: width 0.4s ease;
  border-radius: 2px;
}

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

#navigation a:hover {
  color: #b0d8ff;
  background: rgba(40, 60, 100, 0.25);
  box-shadow: 0 0 14px rgba(90, 130, 220, 0.3);
  transform: scale(1.05);
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: #6c9fdc;
  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(50, 120, 255, 0.2);
}

h1::before {
  content: '✧';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #4674b7;
  opacity: 0.6;
  text-shadow: 0 0 8px rgba(70, 130, 200, 0.3);
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #5a8cb5, #375f9c);
  border-radius: 5px;
  opacity: 0.7;
}

blockquote {
  background: linear-gradient(135deg, rgba(30, 40, 60, 0.6), rgba(20, 30, 50, 0.4));
  border-radius: 40px;
  padding: 40px 60px;
  font-style: italic;
  font-size: 20px;
  color: #a2bcd6;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(40, 80, 130, 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: #4f7ab2;
  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);
}

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


a {
  color: #5f9bcc;
}

a::after {
  background: #2c4e6f;
}

a:hover {
  color: #9ecff3;
}

a:hover::after {
  background: #9ecff3;
}

.contentx input,
textarea,
select {
  background-color: rgba(20, 30, 40, 0.6);
  border: 1px solid #3f5f7a;
  color: #b0cfe4;
  box-shadow: inset 0 0 8px rgba(40, 60, 90, 0.3);
}

.contentx input:focus,
textarea:focus,
select:focus {
  border-color: #70a3e0;
  background-color: rgba(30, 40, 60, 0.8);
  box-shadow: 0 0 12px rgba(100, 160, 240, 0.3);
}

#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(18, 22, 30, 0.9),
      rgba(10, 14, 20, 0.85),
      rgba(5, 10, 15, 0.8)
    ),
    radial-gradient(circle at top left, rgba(40, 60, 100, 0.15), transparent 80%);
  padding: 50px 60px;
  border-radius: 48px;
  font-size: 19px;
  font-family: 'Lora', serif;
  color: #c6dce8;
  text-align: justify;
  box-shadow:
    0 10px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 25px rgba(30, 60, 90, 0.1),
    0 0 0 2px rgba(40, 80, 110, 0.08);
  backdrop-filter: blur(14px);
  margin-bottom: 60px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  border: 1px solid rgba(60, 100, 140, 0.12);
}

.contentx::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(80, 140, 200, 0.1), transparent 70%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.contentx::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #3b7bba, #2a5f9c, #3b7bba);
  background-size: 200% auto;
  animation: shimmer 6s ease-in-out infinite;
  opacity: 0.15;
  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,
    #5c8bb5,
    #3f6fa4,
    #4b88bc
  );
  text-shadow: none;
}

b:hover, i:hover {
  color: #a0c9f0;
  text-shadow: 0 0 8px rgba(90, 140, 210, 0.6);
}
