.header h1 {
      position: relative;
      font-size: 3.5em;
      background: linear-gradient(to right, #f4e2d8, #ba8b02);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      z-index: 1;
      margin-top: 40px;
    }

    .header-slideshow {
      position: relative;
      width: 1050px;
      height: 599px;
      margin: 50px auto 0;
      overflow: hidden;
      border-radius: 40px;
    }

    .header-slideshow .slide {
      position: absolute;
      top: 0; 
      left: 0;
      width: 1050px;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      animation: fade 15s infinite;
      transition: all 0.6s ease-in-out;
      border-radius: 40px;
      overflow: hidden;
    }

    .header-slideshow .slide img {
      width: 1050px;
      height: 100%;
      object-fit: cover;
      border-radius: 40px;
    }

    .slideshow-title {
      position: absolute;
      opacity: 0.7;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Cinzel Decorative', serif;
      font-size: 28px;
      color: #ffffff;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
      background: #000000;
      padding: 20px 40px;
      border-radius: 20px;
      z-index: 1000;
      pointer-events: none;
    }

    @keyframes fade {
      0%   { opacity: 0; }
      10%  { opacity: 1; }
      30%  { opacity: 1; }
      40%  { opacity: 0; }
      100% { opacity: 0; }
    }

.header-slideshow .slide {
  animation: fade 15s infinite;
}



html, body {
  height: 100%;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
      to bottom,
      #0a0a0a 0%,
      #1a0e0e 30%,
      #2a1a0f 60%,
      #120b07 100%
    ),
    radial-gradient(circle at top right, rgba(80, 40, 20, 0.2), transparent 60%),
    radial-gradient(circle at bottom left, rgba(100, 50, 20, 0.15), transparent 80%);
  background-attachment: fixed;
  background-blend-mode: soft-light, screen, lighten;
  color: #e8dbc1;
  line-height: 1.8;
}

#navigation {
  width: auto;
  padding: 16px 40px;
  border-radius: 999px;
  background: rgba(40, 20, 10, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  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(140, 90, 40, 0.2);
}

#navigation a {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #e6d8c3;
  padding: 6px 12px;
  margin: 0 10px;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 1.5px;
}

#navigation a::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: #e6d8c3;
  transition: width 0.3s ease;
  opacity: 0.5;
}

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

#navigation a:hover {
  color: #f9f0df;
  background: transparent;
  text-shadow: 0 0 4px rgba(240, 220, 190, 0.2);
  transform: translateY(-1px);
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: #d9a028;
  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(180, 100, 0, 0.3);
}

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

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

blockquote {
  background: linear-gradient(135deg, rgba(40, 20, 10, 0.6), rgba(30, 15, 5, 0.5));
  border-radius: 40px;
  padding: 40px 60px;
  font-style: italic;
  font-size: 20px;
  color: #e4cda5;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(90, 50, 20, 0.3);
  text-align: center;
  transition: all 0.4s ease-in-out;
}

blockquote::before,
blockquote::after {
  content: '❝';
  font-family: 'Cinzel', serif;
  font-size: 64px;
  color: #9c4d1b;
  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: #cf9136;
}

a::after {
  background: #613b16;
}

a:hover {
  color: #f6cf8d;
}

a:hover::after {
  background: #f6cf8d;
}

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

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

#content {
  position: relative;
  width: 1050px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px; 
  padding-bottom: 80px;
  z-index: 1;
}

.contentx {
  position: relative;
  background: linear-gradient(
      145deg,
      rgba(25, 15, 10, 0.95),
      rgba(20, 10, 5, 0.9),
      rgba(10, 5, 2, 0.85)
    ),
    radial-gradient(circle at top left, rgba(80, 40, 20, 0.1), transparent 80%);
  padding: 50px 60px;
  border-radius: 48px;
  font-size: 19px;
  font-family: 'Lora', serif;
  color: #e9dbc2;
  text-align: justify;
  box-shadow:
    0 10px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 25px rgba(60, 30, 10, 0.1),
    0 0 0 2px rgba(80, 40, 20, 0.08);
  backdrop-filter: blur(14px);
  margin-bottom: 60px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  border: 1px solid rgba(100, 60, 30, 0.1);
}

.contentx::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(160, 80, 20, 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, #d72e2e, #f2b807, #1e1e1e);
  background-size: 300% auto;
  animation: shimmer 6s ease-in-out infinite;
  opacity: 0.25;
  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,
    #c98a3f,
    #7f3b1d,
    #ce5c2c
  );
  text-shadow: none;
}

b:hover, i:hover {
  color: #ffd28a;
  text-shadow: 0 0 8px rgba(200, 130, 50, 0.6);
}