html, body {
    height: 100%;
    margin: 0;
    background: #1F290E; 
    font-family: 'Libre Baskerville', serif;
    color: #C5C9C0; 
    -webkit-font-smoothing: antialiased;
}

.main-container {
    margin-top: -217px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 60px; 
    opacity: 0.7;
    padding: 60px 40px;
    background-color: #121411;
    border-radius: 4px;
    border: 1px solid #2A3026; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

#navigation {
    width: 350px;
    padding: 40px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: sticky;
    top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#navigation::before {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #3A4435 15%, #3A4435 85%, transparent);
}

#navigation::after {
    display: none;
}

#navigation a {
    position: relative;
    padding: 12px 0;
    background: none;
    border: none;
    color: #8A9A86;
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

#navigation a::before {
    content: "🏛";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scale(0.6);
    font-size: 12px;
    opacity: 0;
    filter: sepia(1) hue-rotate(40deg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37 0%, #708238 50%, #3B4A26 100%);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(112, 130, 56, 0.6);
}

#navigation a:hover {
    color: #E2E8E0;
    padding-left: 16px;
    letter-spacing: 4px;
    text-shadow: 0 0 8px rgba(226, 232, 224, 0.4), 0 0 16px rgba(112, 130, 56, 0.5);
}

#navigation a:hover::before {
    opacity: 1;
    left: -2px;
    transform: translateY(-50%) scale(1);
}

#navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#content {
    flex: 1;
}

.contentx {
    position: relative;
    padding: 0;
    text-align: justify;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #B5C0B3;
    line-height: 2;
    letter-spacing: .2px;
    box-shadow: none;
}

#header {
    background-image: url(images/head.jpg),url(images/bg1.jpg);
    background-repeat: no-repeat,repeat-x;
    background-position: center;
    height: 891px;
    background-color: #1F290E; 
    width: 100%;
    position: relative;
}

h1 {
    position: relative;
    display: block;
    margin-bottom: 50px;
    padding: 20px 0 24px 0;
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #F5F7F4 20%, #A3B18A 60%, #708238 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(112, 130, 56, 0.3));
    border: none;
    border-bottom: 1px solid rgba(163, 177, 138, 0.2);
}

h1::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #708238, transparent);
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

h1::before {
    content: "𐌀";
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 14px;
    color: #A3B18A;
    letter-spacing: 0;
    opacity: 0.8;
}

h1::selection {
    background: #556B2F;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
}

blockquote {
    position: relative;
    margin: 50px 0;
    padding: 30px 40px;
    background: #0E100D;
    border: 1px solid #2A3026;
    border-left: 3px solid #708238;
    outline: 3px solid #0E100D;
    outline-offset: -4px;
    color: #9CA999;
    border-radius: 0;
    font-style: italic;
    line-height: 1.9;
}

blockquote::before {
    content: "“";
    position: absolute;
    left: 15px;
    top: 5px;
    font-family: 'Libre Baskerville', serif;
    font-size: 60px;
    color: #2A3026;
    line-height: 1;
}

blockquote::after {
    display: none;
}

blockquote hr {
    display: none;
}

blockquote::selection {
    background: #A3B18A;
    color: #0B0C0E;
}

textarea, input, select {
    width: 100%;
    max-width: 450px;
    padding: 12px 16px;
    margin: 16px 0;
    background: #0E100D !important;
    color: #C5C9C0;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    border: 1px solid #2A3026;
    border-radius: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

textarea:focus, input:focus, select:focus {
    outline: none;
    border-color: #708238;
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(112, 130, 56, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

select option {
    background-color: #0E100D;
    color: #C5C9C0;
}

button, 
input[type="submit"], 
input[type="button"], 
input[type="reset"],
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    margin: 16px 8px 16px 0;
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E2E8E0;
    background: #181C16;
    border: 1px solid #3A4435;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

button[type="submit"],
.btn-primary {
    color: #F5F7F4;
    background: linear-gradient(135deg, #3B4A26 0%, #181C16 100%);
    border: 1px solid #708238;
    box-shadow: 0 0 16px rgba(112, 130, 56, 0.3);
}

button[type="submit"]::before,
.btn-primary::before {
    content: "🏺";
    font-size: 11px;
    margin-right: 10px;
    filter: sepia(0.8) hue-rotate(30deg);
    transition: transform 0.3s ease;
}

button[type="submit"]:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #4F6233 0%, #2A351B 100%);
    border-color: #A3B18A;
    color: #FFFFFF;
    box-shadow: 0 0 24px rgba(163, 177, 138, 0.5);
    transform: translateY(-2px);
}

button[type="submit"]:hover::before,
.btn-primary:hover::before {
    transform: rotate(15deg) scale(1.2);
}

button[type="submit"]:active,
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(112, 130, 56, 0.4);
}

.btn-secondary,
input[type="reset"] {
    color: #A3B18A;
    background: linear-gradient(135deg, #181C16 0%, #0E100D 100%);
    border: 1px solid #2A3026;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover,
input[type="reset"]:hover {
    color: #FFFFFF;
    background: #2A3026;
    border-color: #708238;
    box-shadow: 0 0 15px rgba(112, 130, 56, 0.3);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary:active,
input[type="reset"]:active {
    transform: translateY(0);
}

#footer {
    position: relative;
    margin-top: 100px;
    padding: 80px 0 60px;
    text-align: center;
    color: #A3B18A;
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 2;
}


#footer a {
    color: #E2E8E0;
    text-decoration: none;
    border-bottom: 1px solid #A3B18A;
    transition: all .3s;
}

#footer a:hover {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

a {
    color: #9CA999;
    text-decoration: none;
    position: relative;
    transition: color .3s;
    font-weight: 600;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #2A3026;
    transition: background-color .3s;
}

a:hover {
    color: #A3B18A;
}

a:hover::after {
    background-color: #708238;
    border-bottom-color: transparent;
}

b, strong {
    color: #E2E8E0;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(112, 130, 56, 0.4);
}

i, em {
    color: #A3B18A;
    font-style: italic;
    font-weight: 400;
}