html, body {
        height: 100%;
        margin:0;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');

body {
        background-color:#010101;
}

:root {
  --antique-gold: #bfa85c;
  --olive-shadow: #2e3322;
  --dried-moss: #4a5a3c;
  --aged-papyrus: #f3ecd4;
  --gothic-green: #1e2a1a;
  --dark-velvet: #0a0f0a;
}

#navigation {
    position: relative;
    width: 65%;
    margin-top: -60px;
    padding: 35px 20px;
    background: linear-gradient(to bottom, var(--dark-velvet), var(--gothic-green));
    clip-path: polygon(0% 12%, 6% 0%, 94% 0%, 100% 12%, 100% 88%, 94% 100%, 6% 100%, 0% 88%);
    box-shadow: 0 0 60px rgba(60, 90, 60, 0.6), inset 0 0 20px rgba(40, 70, 40, 0.3);
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    opacity: 0.72;
    border-top: 10px double var(--antique-gold);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
    border-bottom: 4px dotted var(--olive-shadow);
    backdrop-filter: blur(2px);
    transition: all 0.4s ease-in-out;
}

#navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Cinzel Decorative', serif;
    color: var(--aged-papyrus);
    background: linear-gradient(145deg, #2e3b2c, #3a4932);
    border: 2px solid var(--antique-gold);
    clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
    text-decoration: none !important;
    position: relative;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 12px rgba(90, 100, 60, 0.4), inset 0 0 5px rgba(60, 90, 60, 0.2);
    filter: drop-shadow(0 0 4px rgba(200, 180, 100, 0.2));
}

#navigation a::before {
    content: "☥";
    font-size: 18px;
    margin-right: 10px;
    transition: transform 0.3s ease, color 0.4s ease;
    color: var(--antique-gold);
}

#navigation a:hover {
    background: radial-gradient(circle at center, #56614b 0%, #232d1e 100%);
    color: #fffde3;
    box-shadow: 0 0 30px rgba(186, 174, 94, 0.7);
    transform: translateY(-6px) scale(1.02);
    filter: brightness(1.1) contrast(1.2);
}

#navigation a:hover::before {
    transform: rotate(360deg) scale(1.2);
    color: #ddc973;
}

#navigation a:active {
    transform: scale(0.95);
    background-color: #131a10;
    box-shadow: inset 0 0 12px rgba(186, 174, 94, 0.4);
}

#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 525px;
    width: 100%;
    margin-top: -4px;
}

a:link,
a:visited {
    color: var(--aged-papyrus);
    font-size: 23px;
    text-decoration: none;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-weight: 600;
    letter-spacing: 0.8px;
    position: relative;
    text-shadow: 1px 1px 2px #000;
}

a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #8a8047, #c1b373);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

a:hover {
    color: #fefae1;
    text-shadow: 0 0 6px rgba(200, 200, 140, 0.4);
    transform: translateY(-1px);
}

a:active {
    color: #fef8dc;
    transform: scale(0.96);
}

i, em {
    color: #d1ccb8;
    font-style: italic;
    font-family: 'Georgia', serif;
    background: linear-gradient(to right, #2e2b22, #353024);
    padding: 4px 7px;
    border-radius: 4px;
    box-shadow: inset 0 0 4px rgba(100, 80, 30, 0.2);
}

b, strong {
    color: #fcf3da;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    background-color: #2f3023;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 6px rgba(150, 140, 80, 0.2),
                inset 0 0 6px rgba(0, 0, 0, 0.5);
}

#content {
    margin: -20px auto;
    position: relative;
    width: 70%;
}

.contentx {
    padding: 25px;
    font-size: 16px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 500!important;
    text-align: justify;
    color: #DCD6BE;
    background: rgba(20, 25, 20, 0.3);
    border-radius: 30px;
    opacity: 0.65;
    line-height: 25px;
    letter-spacing: 1.5px;
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 23px;
    color: #eae2c8;
    padding: 30px 35px;
    margin: 50px auto;
    max-width: 720px;
    position: relative;
    line-height: 1.8;
    letter-spacing: 0.4px;
    backdrop-filter: blur(2px);
    border: 2px solid var(--antique-gold);
    border-radius: 30px;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(50, 50, 50, 0.12),
            rgba(50, 50, 50, 0.12) 10px,
            transparent 10px,
            transparent 20px
        ),
        linear-gradient(to bottom, #111610, #1e261a);
    box-shadow:
        0 0 12px rgba(60, 80, 30, 0.3),
        inset 0 0 6px rgba(90, 100, 60, 0.2);
}

blockquote::before,
blockquote::after {
    font-size: 36px;
    font-weight: normal;
    color: var(--antique-gold);
    font-family: 'Cinzel Decorative', serif;
    position: absolute;
    opacity: 0.3;
    text-shadow: 0 0 3px rgba(200, 180, 80, 0.2);
}

blockquote::before {
    content: "❝";
    top: -6px;
    left: 18px;
}

blockquote::after {
    content: "❞";
    bottom: -6px;
    right: 18px;
}

textarea,
input,
select {
    width: 40%;
    max-width: 600px;
    padding: 16px 20px;
    margin: 16px 0;
    font-family: 'Tahoma', sans-serif;
    font-size: 18px;
    color: #f5e8de;
    background: linear-gradient(145deg, #2a2e24, #1d1f18);
    border: 2px solid #7a7a4f;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
    caret-color: var(--antique-gold);
    letter-spacing: 0.4px;
    opacity: 0.7;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #bfa85c;
    background-color: #343b2a;
    box-shadow: 0 0 14px rgba(186, 174, 94, 0.6), inset 0 0 6px rgba(255, 255, 255, 0.08);
}

h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 26px;
    color: var(--aged-papyrus);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 6px rgba(60, 60, 20, 0.4);
    margin-bottom: 30px;
    padding: 12px 28px;
    display: inline-block;
    border-radius: 8px 30% 8px 30%;
    backdrop-filter: blur(0.5px);
}

#footer {
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #c9c2ae;
    text-align: center;
    padding: 70px 30px 40px;
    margin-top: 100px;
    letter-spacing: 0.8px;
    line-height: 1.6;
    background: linear-gradient(to top, #0f130d, #1e2418);
    opacity: 0.9;
    position: relative;
    clip-path: polygon(0 12%, 100% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.6), inset 0 10px 20px rgba(40, 60, 20, 0.4);
    border-top: 4px double #7c794f;
    border-bottom: 2px solid #0a0c05;
}

#footer a {
    color: #e2d1aa;
    text-decoration: none;
    border-bottom: 1px dotted #a59b6e;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

#footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: radial-gradient(circle, #d9ca89 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#footer a:hover {
    color: #f6f1de;
    border-bottom: 1px solid #f6f1de;
    text-shadow: 0 0 10px rgba(255, 240, 180, 0.4);
}

#footer a:hover::after {
    opacity: 1;
}
