html, body {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('images/bg.jpg');
    background-repeat: repeat;
    font-family: 'Lora', serif;
    font-weight: 400!important;
    text-align: center;
    font-size: 14px;
    color: #d6c6a5;
    overflow-x: hidden;
}

h1 {
    position: relative;
    opacity: 0.9;
    display: inline-block;
    padding: 16px 36px;
    margin: 60px auto 30px;
    font-size: 23px;
    letter-spacing: 5px;
    color: #f5e6c8;
    background: linear-gradient(135deg, #3a2f1c, #c9a55c, #8a6a2f);
    border-radius: 12px 12px 6px 6px;
    box-shadow: 0 8px 25px rgba(201, 165, 92, 0.3);
    text-shadow: 0 0 8px rgba(255, 215, 130, 0.6);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    transition: all 0.3s ease;
}

h1:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 165, 92, 0.5);
}

blockquote {
    font-size: 18px;
    font-style: italic;
    padding: 30px 40px;
    margin: 40px auto;
    width: 70%;
    max-width: 700px;
    color: #e6d3a3;
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.content {
    width: 60%;
    margin: -140px auto;
    padding: 0 20px;
    text-align: justify;
    color: #d4c3a1;
    line-height: 1.6;
}

#navigation {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1100px;
    padding: 16px 26px;
    background: linear-gradient(145deg, rgba(18,18,18,0.96), rgba(10,10,10,0.88));
    backdrop-filter: blur(18px);
    border-radius: 26px;
    border: 1px solid rgba(201,165,92,0.25);
    box-shadow:
        0 14px 40px rgba(0,0,0,0.9),
        inset 0 0 18px rgba(201,165,92,0.05);
    text-align: center;
    z-index: 9999;
    overflow: hidden;
}

#navigation::before,
#navigation::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        #c9a55c,
        #f5e6c8,
        #c9a55c,
        transparent
    );
    opacity: 0.9;
}

#navigation::before { top: 10px; }
#navigation::after { bottom: 10px; }

#navigation i {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #c9a55c;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201,165,92,0.8);
}

#navigation a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a55c;
    padding: 10px 16px;
    margin: 0 6px;
    border-radius: 999px;
    transition: all 0.35s ease;
}

#navigation a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center,
        rgba(201,165,92,0.15),
        transparent 70%
    );
    opacity: 0;
    transition: 0.3s ease;
    z-index: -1;
}

#navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #c9a55c, #f5e6c8);
    transition: width 0.35s ease;
}

#navigation a:hover {
    color: #fff3d6;
    text-shadow: 0 0 8px rgba(201,165,92,0.6);
}

#navigation a:hover::before {
    opacity: 1;
}

#navigation a:hover::after {
    width: 70%;
}


#navigation a.active {
    background: linear-gradient(135deg, #c9a55c, #f5e6c8);
    color: #0b0b0b;
    box-shadow: 0 6px 18px rgba(201,165,92,0.4);
}

.contentx {
    background: linear-gradient(145deg, #111, #1f1f1f);
    padding: 40px;
    margin-top: 200px;
    border-radius: 20px;
    font-size: 18px;
    opacity: 0.8;
    color: #e0cfaa;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,165,92,0.15);
}

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

#footer {
    margin-top: 180px;
    padding: 160px 30px 60px;
    opacity: 0.7;
    background: linear-gradient(180deg, #0b0b0b, #141414);
    color: #d6c6a5;
    text-align: center;
    border-top-left-radius: 100% 180px;
    border-top-right-radius: 100% 180px;
    overflow: hidden;
}

#footer::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a55c, #f5e6c8, #c9a55c, transparent);
}

.content a,
.content b,
.content i {
    font-family: 'Lora', serif;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #c9a55c, #f5e6c8, #8a6a2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content a:hover,
.content b:hover,
.content i:hover {
    filter: brightness(1.25);
    text-shadow: 0 0 8px rgba(201,165,92,0.5);
}