html, body {
        height: 100%;
        margin:0;
}

body {
        background-color: #101010;
}

#navigation {
    position: relative;
    width: 60%;
    margin-top: 10px;
    padding: 30px 10px 20px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    opacity: 0.9;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    z-index: 2;
}

#navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none !important;
    color: #b89b4f;
    background-color: transparent;
    border-radius: 4px;
    padding: 8px 18px;
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    vertical-align: middle;
    line-height: 1;
    margin-bottom: 24px;
}

#navigation a::after {
    content: "†";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #7d6f3e;
    opacity: 0.6;
    animation: drip 3s infinite ease-in;
    pointer-events: none;
    margin-top: 4px;
}

#navigation a:hover {
    color: #a3c9f7;
}

#navigation a:active {
    color: #8a7a3c;
}

@keyframes drip {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px) scaleY(1.3);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scaleY(0.8);
    }
}


h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    padding-bottom: 14px;
    position: relative;
    text-align: center;
    padding-top: 19px;
    background: linear-gradient(90deg, #a3c9f7 0%, #b89b4f 50%, #a07f33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.4);
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 25px;
    color: #bfa76e;
    background: linear-gradient(135deg, #121412 0%, #262926 40%, #1a1c18 100%);
    padding: 40px 50px;
    margin: 40px auto;
    border-left: 6px solid #7d6f3e;
    border-radius: 16px;
    max-width: 800px;
    position: relative;
    line-height: 1.9;
    text-shadow: none;
}

blockquote::before {
    content: "❝";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: #7d6f3e;
    opacity: 0.3;
    font-family: 'Georgia', serif;
    pointer-events: none;
    user-select: none;
}

blockquote p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-style: italic;
}

blockquote::after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 30px;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #7d6f3e 0%, #bfa76e 50%, #7d6f3e 100%);
    border-radius: 2px;
    opacity: 0.6;
}

b, strong {
    color: #f8dcdc;
    background-color: #1e1a1c;
    padding: 4px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

i, em {
    color: #eabcbc;
    background: linear-gradient(to right, #1a1618, #251f21);
    padding: 3px 6px;
    border-radius: 5px;
    font-style: italic;
}

textarea,
input,
select {
    width: 40%;
    max-width: 600px;
    padding: 14px 18px;
    margin: 12px 0;
    font-family: 'Lora', sans-serif;
    font-size: 17px;
    color: #f5cccc;
    background: linear-gradient(145deg, #1c1c1f, #2b2b2f);
    border: 2px solid #3c3f80;
    border-radius: 12px;
    transition: all 0.3s ease;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #5053c0;
    background-color: #151518;
    color: #fff0f0;
}

#content {
    margin: 10px auto 90px auto;
    position: relative;
    width: 70%;
}

.contentx {
    margin: 0 auto 90px auto;
    padding: 25px;
    font-size: 19px;
    font-family: 'Lora', serif;
    font-weight: 500;
    text-align: justify;
    color: #c2a8b6;
    line-height: 25px;
    letter-spacing: 2px;
    border-radius: 30px;
    opacity: 0.7;
}

a:link,
a:visited {
    color: #bfa76e;
    text-decoration: none;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 600;
    position: relative;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4f6073, #bfa76e, #867f5b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

a:hover {
    color: #d9c580;
}

a:hover::after {
    opacity: 1;
}



#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 493px;
    width: 100%;
    margin-top: -4px;
}

@media screen and (max-width: 1200px) {
  #navigation {
    width: 90%;
    padding: 20px 10px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  #content, .contentx {
    width: 90%;
  }

  h1 {
    font-size: 52px;
  }
}

@media screen and (max-width: 768px) {
  #navigation {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }

  #navigation a {
    width: 90%;
    justify-content: center;
    font-size: 20px;
    padding: 14px 10px;
  }

  h1 {
    font-size: 44px;
    text-align: center;
  }

  .contentx {
    padding: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  blockquote {
    font-size: 18px;
    padding: 20px 24px;
  }

  textarea,
  input,
  select {
    font-size: 15px;
    padding: 12px 16px;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }

  #navigation a {
    font-size: 18px;
    padding: 12px 8px;
  }

  h1 {
    font-size: 36px;
  }

  .contentx {
    padding: 15px;
  }

  blockquote {
    padding: 18px;
    font-size: 16px;
  }

  textarea,
  input,
  select {
    font-size: 14px;
    padding: 10px 14px;
  }
}