html, body {
    height: 100%;
    margin: 0;
}

body {
    background-repeat: repeat;
    background-color: #000000;
    color: #d8cbb8;
    font-family: 'Lora', serif;
    font-size: 16px;
}


#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 592px;
    width: 100%;
    margin-top: -5px;
}

#navigation {
    width: 60%;
    margin-top: 0px;
    padding: 30px 10px;
    background: linear-gradient(to bottom, #050505, #1a1410);
    clip-path: polygon(0% 10%, 5% 0%, 95% 0%, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0% 90%);
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    text-align: center;
    font-family: 'Lora', serif;
    border-top: 6px solid #8c6239;
    border-bottom: 2px dashed #3b2a1a;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

#navigation a {
    padding: 14px 30px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Lora', serif;
    color: #e6d3b3;
    background: linear-gradient(145deg, #1c1510, #0e0b09);
    border: 2px solid #6e4b2a;
    clip-path: polygon(0 0, 100% 10%, 95% 100%, 5% 90%);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8),
                0 0 8px rgba(176,141,87,0.2);
}

#navigation a:hover {
    background: linear-gradient(145deg, #2b1f16, #120d09);
    color: #fff3df;
    box-shadow: 0 0 14px rgba(176,141,87,0.5);
    transform: translateY(-3px);
}

#navigation a::before {
    content: "✠";
    margin-right: 8px;
    color: #b08d57;
}

a {
    color: #cbb89d;
    font-family: 'Lora', serif;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

a:hover {
    color: #f5e6cc;
    text-shadow: 0 0 6px rgba(176,141,87,0.4);
}

i, em {
    color: #cbb89d;
    background: linear-gradient(to right, #1f1a16, #2a231d);
    padding: 4px 7px;
    font-family: 'Lora', serif;
    border-radius: 4px;
    font-size: 20px;
}

b, strong {
    color: #f2e4c9;
    font-family: 'Lora', serif;
    background: #2a2118;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 20px;
    text-transform: uppercase;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.6);
}

.contentx {
    padding: 20px 50px;
    margin-bottom: 80px;
    font-family: 'Lora', serif;
    font-size: 20px;
    line-height: 1.95;
    letter-spacing: 1.2px;
    text-align: justify;
    border-radius: 24px;
    width: 70%;
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 25px;
    color: #e8dcc7;
    background: linear-gradient(145deg, #1c1916, #2a241f);
    padding: 40px;
    border-left: 6px solid #b08d57;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    position: relative;
}

blockquote::before {
    content: "❝";
    font-size: 60px;
    color: #8c6239;
    position: absolute;
    top: 10px;
    left: 15px;
}

textarea,
input,
select {
    background: linear-gradient(145deg, #141210, #0b0a09);
    border: 2px solid #6e4b2a;
    color: #e6d3b3;
    border-radius: 10px;
    padding: 14px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

textarea:focus,
input:focus {
    border-color: #b08d57;
    box-shadow: 0 0 10px rgba(176,141,87,0.5);
}

h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
    margin: 40px 0 25px 0;
}

h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #666, #999);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

h1:hover::after {
    transform: translateX(-50%) scaleX(1);
}

#footer {
    font-family: 'Lora', serif;
    font-size: 17px;
    color: #bfae95;
    text-align: center;
    padding: 90px 20px 60px;
    margin-top: 120px;
    position: relative;
    letter-spacing: 1.2px;
    line-height: 1.8;
}

#footer::before {
    content: "✦ ━━━ ✠ ━━━ ✦";
    display: block;
    font-size: 18px;
    letter-spacing: 6px;
    color: #8c6239;
    margin-bottom: 30px;
    opacity: 0.7;
}

#footer::after {
    content: "✦ ━━━ ✠ ━━━ ✦";
    display: block;
    font-size: 18px;
    letter-spacing: 6px;
    color: #8c6239;
    margin-top: 30px;
    opacity: 0.5;
}

#footer a {
    color: #d6c3a3;
    text-decoration: none;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #f2e4c9;
    text-shadow: 0 0 6px rgba(176,141,87,0.5);
}

#footer a:not(:last-child)::after {
    content: "✧";
    margin-left: 14px;
    color: #6e4b2a;
}

#footer .sub {
    display: block;
    margin-top: 25px;
    font-size: 14px;
    color: #8f7a63;
    letter-spacing: 1px;
}

#footer .divider {
    width: 120px;
    height: 1px;
    margin: 30px auto;
    background: linear-gradient(to right, transparent, #6e4b2a, transparent);
    opacity: 0.6;
}