html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(to bottom, #0d0d1a 0%, #1a1a33 70%, #0d0d1a 100%);
  color: #f5f5fa;
  line-height: 1.9;
}

#header {
  position: relative;
  width: 70%;
  max-width: 1100px;
  height: 480px;
  margin: 80px auto 60px auto;
  border-radius: 60px;
  background: url('images/head.jpg') no-repeat center center / cover;
  overflow: hidden;
  z-index: 0;
}

#header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 6px;
  background: linear-gradient(135deg, #c8dcff, #fff0b4, #fcd6ff, #c8dcff);
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: dreamyBorder 8s ease infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes dreamyBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#nav-orb {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1000;
}

#nav-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(200, 220, 255, 0.6);
  background: radial-gradient(circle at 30% 30%, #c8dcff, #1a1a33 80%);
  color: #fff0b4;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.4s ease;
}

#nav-toggle:hover {
  transform: scale(1.05) rotate(6deg);
  box-shadow: 0 0 12px rgba(200, 220, 255, 0.5);
}

#navigation {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%) scale(0.8);
  background: rgba(18, 18, 37, 0.95);
  border: 1px solid rgba(200, 220, 255, 0.3);
  border-radius: 24px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

#nav-orb.active #navigation {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 6px 20px rgba(200, 220, 255, 0.3);
}

#navigation a {
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c8dcff;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

#navigation a:hover {
  background: linear-gradient(90deg, #c8dcff 0%, #fff0b4 100%);
  color: #121225;
}

#navigation a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 60%;
  height: 2px;
  transform: translateX(-50%) scaleX(0);
  background: linear-gradient(90deg, #c8dcff, #fff0b4, #c8dcff);
  border-radius: 50px;
  transition: transform 0.4s ease;
  opacity: 0.7;
}

#navigation a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 64px;
  text-align: center;
  margin: 60px 0 30px 0;
  background: linear-gradient(90deg, #c8dcff, #fff0b4, #c8dcff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  position: relative;
  letter-spacing: 1px;
  animation: h1Fade 6s ease-in-out infinite;
}

h1::after {
  content: '';
  display: block;
  margin: 14px auto 0 auto;
  width: 140px;
  height: 3px;
  border-radius: 50px;
  background: linear-gradient(90deg, #fff0b4, #c8dcff, #fff0b4);
  opacity: 0.8;
}

@keyframes h1Fade {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

blockquote {
  background: linear-gradient(145deg, rgba(200, 220, 255, 0.08), rgba(255, 240, 180, 0.08));
  border-radius: 36px;
  padding: 32px 44px;
  font-style: italic;
  font-size: 19px;
  color: #fff0b4;
  text-align: center;
  border: 1px solid rgba(200, 220, 255, 0.3);
  margin: 40px 0;
}

#content {
  position: relative;
  width: 70%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 60px 0;
  z-index: 1;
}

.contentx {
  position: relative;
  background: linear-gradient(160deg, rgba(200, 220, 255, 0.06), rgba(255, 240, 180, 0.06));
  padding: 40px 50px;
  border-radius: 36px;
  font-size: 18px;
  font-family: 'Lora', serif;
  color: #f5f5fa;
  text-align: justify;
  border: 1px solid rgba(200, 220, 255, 0.3);
  margin-bottom: 40px;
}

.contentx::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 60%;
  background: linear-gradient(to right, #fff0b4, #c8dcff, #fff0b4);
  border-radius: 50px;
  opacity: 0.7;
}

.contentx input,
textarea,
select {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 220, 255, 0.4);
  color: #f5f5fa;
  border-radius: 14px;
  padding: 10px;
  font-family: 'Lora', serif;
}

.contentx input:focus,
textarea:focus,
select:focus {
  border-color: #fff0b4;
  outline: none;
}

a {
  position: relative;
  color: #c8dcff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c8dcff, #fff0b4);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  opacity: 0.7;
}

a:hover {
  color: #fff0b4;
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

b, i {
  color: #fff0b4;
  font-weight: 500;
}
