@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Lora', serif;
    color: #d1d1d1;
    background-color: #080808;
}

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

#navigation {
    width: 63%;opacity:0.7;
    margin: 40px auto 0;
    padding: 50px 30px 60px;
    background: linear-gradient(180deg, #2b2b2b 0%, #1a1a1a 100%);
    border: 1px solid #444444;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    text-align: center;
    font-family: 'Lora', serif;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
}

#navigation::before {
    content: '◇ ☽ ◯ ☾ ◇';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 6px;
    color: #888888;
    pointer-events: none;
}

#navigation a {
    position: relative;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    border: none;
    background-image: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

#navigation a::before,
#navigation a::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    background: linear-gradient(180deg, transparent, #ffffff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#navigation a::before { left: 0; }
#navigation a::after { right: 0; }

#navigation a:hover::before,
#navigation a:hover::after {
    opacity: 0.5;
}

#navigation a:hover {
    letter-spacing: 4px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    background-image: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

#content {
    margin: 40px auto;
    width: 63%;
}

.contentx { opacity:0.7;
    position: relative;
    background: #222222;
    padding: 70px 80px;
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    line-height: 2.1;
    letter-spacing: 0.3px;
    text-align: justify;
    color: #e0e0e0;
    border: none;
    outline: none;
    clip-path: polygon(
        20px 0, calc(100% - 20px) 0, 
        100% 20px, 100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 20px 100%, 
        0 calc(100% - 20px), 0 20px
    );
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.contentx::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #3d3d3d;
    pointer-events: none;
    clip-path: polygon(
        16px 0, calc(100% - 16px) 0, 
        100% 16px, 100% calc(100% - 16px), 
        calc(100% - 16px) 100%, 16px 100%, 
        0 calc(100% - 16px), 0 16px
    );
}

.contentx::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05));
}

.contentx a {
    position: relative;
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 0 2px 4px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contentx a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #444444);
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 100% 100%, 0% 100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contentx a:hover {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contentx a:hover::after {
    transform: translateY(2px);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.contentx b, 
.contentx strong {
    position: relative;
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.92em;
    letter-spacing: 1px;
    padding: 0 3px 5px;
    background: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contentx b::after,
.contentx strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #222222 0%, #ffffff 50%, #222222 100%);
    clip-path: polygon(0 40%, 45% 40%, 50% 100%, 55% 40%, 100% 40%, 100% 100%, 0 100%);
}

.contentx i, 
.contentx em {
    position: relative;
    display: inline-block;
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    padding: 0 4px 4px;
    background: linear-gradient(135deg, #dddddd 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contentx i::after,
.contentx em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #888888 0%, #ffffff 100%);
    clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

h1 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 6px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
    background: transparent;
    border: none;
    position: relative;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

h1::before {
    content: '───── ☪ ─────';
    display: block;
    font-size: 14px;
    letter-spacing: 8px;
    color: #777777;
    margin-bottom: 12px;
}

h1::after {
    content: '───── ☸ ─────';
    display: block;
    font-size: 14px;
    letter-spacing: 8px;
    color: #777777;
    margin-top: 12px;
}


blockquote {
    position: relative;
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 800px;
    margin: 45px auto;
    padding: 35px 45px 35px 65px;
    background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
    border-left: 4px solid #ffffff;
    border-top: 1px solid #222222;
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

blockquote::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 18px;
    font-family: 'Cinzel', serif;
    font-size: 75px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.85;
    pointer-events: none;
}

blockquote::after {
    content: '”';
    position: absolute;
    bottom: -25px;
    right: 25px;
    font-family: 'Cinzel', serif;
    font-size: 65px;
    line-height: 1;
    background: linear-gradient(135deg, #666666 0%, #111111 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    pointer-events: none;
}

textarea, input, select {
    width: 100%;
    max-width: 600px;
    padding: 32px 16px;
    margin: 15px 0;
    font-family: 'Lora', serif;
    font-size: 18px;
    color: #e0e0e0;
    background: #0d0d0d!important;
    border: 1px solid #333333;
    border-radius: 0;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

textarea:focus, input:focus, select:focus {
    outline: none;
    background-color: #141414;
    border-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

#footer {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 50px 30px;
    margin-top: 80px;opacity:0.9;
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    color: #ffffff;
    border-top: 1px solid #1a1a1a;
}

#footer h2, 
#footer .footer-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 3px;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #ffffff 0%, #777777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#footer a {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    padding: 0 2px 4px;
    margin: 0 10px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

#footer a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #333333);
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 100% 100%, 0% 100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

#footer a:hover {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#footer a:hover::after {
    transform: translateY(2px);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

button, 
input[type="submit"], 
input[type="button"], 
input[type="reset"],
.form-btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    margin: 15px 0;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: #000000;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #888888 100%);
    border: 1px solid #ffffff;
    outline: 1px solid #444444;
    outline-offset: -5px;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button:hover, 
input[type="submit"]:hover, 
input[type="button"]:hover, 
input[type="reset"]:hover,
.form-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #aaaaaa 100%);
    border-color: #ffffff;
    outline-color: #888888;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

button:active, 
input[type="submit"]:active, 
input[type="button"]:active, 
input[type="reset"]:active,
.form-btn:active {
    transform: translateY(0);
    background: linear-gradient(135deg, #aaaaaa 0%, #666666 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.9);
}

button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

button.btn-secondary,
input[type="reset"],
.form-btn-secondary {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #cccccc;
    border: 1px solid #444444;
    outline: 1px solid #222222;
}

button.btn-secondary:hover,
input[type="reset"]:hover,
.form-btn-secondary:hover {
    background: linear-gradient(180deg, #262626 0%, #141414 100%);
    color: #ffffff;
    border-color: #888888;
}