html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background:
    linear-gradient(
      to bottom,
      #f6fbff 0%,
      #eef6ff 30%,
      #fbeeee 60%,
      #fff4f2 100%
    ),
    radial-gradient(circle at top right, rgba(210, 235, 255, 0.6), transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 205, 195, 0.35), transparent 80%);
  background-attachment: fixed;
  background-blend-mode: soft-light, screen, lighten;
  color: #4a5560;
  line-height: 1.8;
}


#navigation {border-radius: 64px 52px 68px 56px;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 22px 0;
  background: linear-gradient(
    90deg,
    rgba(205, 230, 255, 0.6),
    rgba(255, 210, 200, 0.6)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.65);
  box-shadow:
    0 8px 30px rgba(150, 200, 235, 0.25);
  text-align: center;
  z-index: 10;
}


#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0 14px;
  padding: 14px 26px;
  border-radius: 999px;
  letter-spacing: 1.6px;
  color: #6a6f78;
  overflow: hidden;
  transition: all 0.45s ease;
}


#navigation a::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(190, 230, 255, 0.75),
      rgba(255, 180, 165, 0.75),
      rgba(190, 230, 255, 0.75)
    );
  background-size: 300% 300%;
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.4s ease;
  animation: navFlow 6s ease infinite;
  z-index: 0;
}


@keyframes navFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


#navigation a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0%;
  height: 3px;
  background: linear-gradient(
    to right,
    #ffb3a7,
    #e85f4f
  );
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.4s ease;
  z-index: 1;
}


#navigation a:hover {
  color: #e85f4f;
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(232, 95, 79, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.4);
}

#navigation a:hover::before {
  opacity: 1;
}

#navigation a:hover::after {
  width: 70%;
}


#navigation a:nth-child(odd) {
  border-radius: 40px 60px 40px 60px;
}

#navigation a:nth-child(even) {
  border-radius: 60px 40px 60px 40px;
}



h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 64px;
  font-weight: 400;
  text-align: center;
  margin: 50px 0 32px 0;
  color: #e85f4f;
  letter-spacing: 1.6px;
  line-height: 1.1;
  position: relative;
  text-shadow:
    0 2px 4px rgba(255, 255, 255, 0.85),
    0 10px 30px rgba(232, 95, 79, 0.35),
    0 0 40px rgba(160, 210, 240, 0.35);
}



h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: linear-gradient(
    to right,
    rgba(150, 210, 240, 0.7),
    rgba(232, 95, 79, 0.9),
    rgba(150, 210, 240, 0.7)
  );
  border-radius: 999px;
  opacity: 0.85;
}


h1:hover {
  letter-spacing: 2.2px;
  text-shadow:
    0 2px 6px rgba(255,255,255,0.9),
    0 14px 36px rgba(232, 95, 79, 0.45),
    0 0 50px rgba(150, 210, 240, 0.45);
}




blockquote {  text-align: justify;
  background:
    radial-gradient(circle at top, rgba(220, 240, 255, 0.45), rgba(255, 220, 210, 0.35));
  border-radius: 30px;
  padding: 50px 60px;
  font-style: italic;
  color: #4f5f6f;
  box-shadow: 0 6px 26px rgba(120, 170, 210, 0.25);
}


blockquote::before,
blockquote::after {
  color: #e88a7a;
  opacity: 0.25;
}


a {
  color: #e36b5b;
  font-size: 18px;
  font-family: 'Lora', serif;
  letter-spacing: 1.2px;
  text-decoration: none;
  position: relative;
  padding: 6px 4px;
  transition: all 0.4s ease;
}


a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #a8d6f0, #e86b5a);
  transition: width 0.3s ease;
}


a:hover {
  color: #a8d6f0;
}


#content {
  position: relative;
  width: 900px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 10px; 
  padding-bottom: 80px;
  z-index: 1;
}

.contentx input,
textarea,
select {
  background-color: rgba(230, 245, 255, 0.65);
  border: 1px solid #b8d9ef;
  padding: 12px 18px;
  color: #4f5f6f;
  border-radius: 20px;
  font-size: 16px;
  font-family: 'Crimson Text', serif;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}


.contentx input:focus,
textarea:focus,
select:focus {
  border-color: #e86b5a;
  background-color: rgba(245, 250, 255, 0.85);
  box-shadow: 0 0 14px rgba(232, 107, 90, 0.35);
}



#header {
  position: relative;
  width: 70%;
  max-width: 900px;
  height: 474px;
  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;
}

#header::after {
  background: linear-gradient(
    135deg,
    rgba(180, 220, 250, 0.35),
    rgba(255, 180, 165, 0.3),
    rgba(200, 230, 255, 0.25)
  );
}


.contentx {font-size: 20px; padding: 64px 72px;  border-radius: 64px 52px 68px 56px;    text-align: justify;
  background:
    linear-gradient(
      145deg,
      rgba(235, 245, 255, 0.7),
      rgba(255, 235, 230, 0.55)
    ),
    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.5),
      rgba(220, 240, 255, 0.25)
    );
  color: #465866;
  box-shadow:
    0 12px 60px rgba(140, 190, 230, 0.35),
    inset 0 0 30px rgba(255,255,255,0.25);
}

.contentx::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  pointer-events: none;
}


b {
  font-weight: 700;
  letter-spacing: 0.6px;
  background: linear-gradient(
    120deg,
    #8fc9e6,
    #e86b5a,
    #8fc9e6
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 250% 250%;
  transition: background-position 0.6s ease, text-shadow 0.6s ease;
}


b:hover {
  background-position: 100% 50%;
  text-shadow: 0 0 10px rgba(232, 107, 90, 0.55);
}


i {
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.4px;
  background: linear-gradient(
    120deg,
    #a5d8f0,
    #f1a295,
    #a5d8f0
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  transition: background-position 0.8s ease;
}


i:hover {
  background-position: 100% 50%;
  text-shadow: 0 0 8px rgba(165, 216, 240, 0.6);
}



.footer {
  margin: 120px auto 40px auto;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #8a9fb0;
  opacity: 0.75;
}

.footer:hover {
  opacity: 1;
}


.footer-ornament {
  display: inline-block;
  margin: 0 12px;
  font-size: 22px;
  color: #e86b5a;
  opacity: 0.6;
  transform: translateY(2px);transition:
    opacity 1s ease,
    text-shadow 1.2s ease;
}


.footer p {
  margin: 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 1.4px;
  color: #6f8190;
}


transition:
    opacity 1s ease,
    text-shadow 1.2s ease;


.footer:hover p {
  color: #e86b5a;
  letter-spacing: 1.6px; /* tiny shift */
}



.footer::before {
  content: '';
  display: block;
  width: 160px;
  height: 1px;
  margin: 0 auto 22px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(150, 210, 240, 0.6),
    transparent
  );
}



.footer,
.footer * {
  transition:
    color 0.9s ease,
    opacity 0.9s ease,
    letter-spacing 0.9s ease,
    text-shadow 1.1s ease;
}

#quote-page { opacity:0.7;
  width: 44%;
  margin: 80px auto 40px auto;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      160deg,
      rgba(210, 235, 255, 0.65),
      rgba(255, 215, 205, 0.55)
    ),
    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.55),
      transparent 70%
    );

  border-radius: 80px 60px 90px 60px;
  box-shadow:
    0 20px 80px rgba(150, 190, 230, 0.35),
    inset 0 0 40px rgba(255,255,255,0.35);
}

.quote-box {
  max-width: 820px;
  padding: 60px 70px;
  text-align: center;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.75),
      rgba(235, 245, 255, 0.55)
    );

  border-radius: 48px 36px 56px 40px;
  box-shadow:
    0 10px 40px rgba(120, 170, 210, 0.25),
    inset 0 0 20px rgba(255,255,255,0.4);
}

.quote-box p {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  line-height: 1.3;
  color: #e85f4f;
  margin: 0 0 28px 0;
  text-shadow:
    0 6px 18px rgba(232, 95, 79, 0.35);
}
