@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    background-color: #050505;
    font-family: 'Lora', serif;
    color: #d6d6d6;
}

#navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;opacity:0.6;
    max-width: 1100px;
    margin: 0px auto;
    padding: 30px 20px;
    background: linear-gradient(to bottom, #1a4733, #0f2a21, #000000); /* jade to black */
    border-radius: 50px; /* soft, rounded pill shape */
    box-shadow: 0 0 30px rgba(0, 80, 60, 0.2),
                inset 0 0 12px rgba(0, 60, 40, 0.5);
    border: 2px solid #47b492;
    font-family: 'Cinzel Decorative', serif;
    gap: 20px;
    position: relative;
    z-index: 1;
}



/* General link styles (for body text, not nav) */
body a:link,
body a:visited {
    color: #7fd5b5;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(to right, #4dbb9b, #8de7c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #5cd3a3, #9ff4cc);
    opacity: 0.5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body a:hover {
    color: #bfffe0;
    background: linear-gradient(to right, #80e2c2, #afffe7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* NAVIGATION LINKS (isolated from global styles) */
#navigation a {
    padding: 24px 45px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #b7e4c7 !important;
    background: linear-gradient(to bottom, #1e3f34, #0f2a21);
    border: 2px solid #47b492;
    clip-path: polygon(0 0, 100% 10%, 95% 100%, 5% 90%);
    text-decoration: none;
    box-shadow: 0 0 8px rgba(64, 224, 208, 0.15);
    transition: all 0.3s ease-in-out;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

#navigation a:hover {
    background: #2a5d4d;
    color: #e0f8ef !important;
    box-shadow: 0 0 16px rgba(72, 255, 195, 0.3);
    transform: translateY(-4px);
}

#navigation a:active {
    transform: scale(0.96);
    background-color: #215142;
    box-shadow: inset 0 0 10px rgba(80, 255, 200, 0.2);
}


i, em {
    color: #d3b177;
    background: linear-gradient(to right, #2c2c2c, #1c1c1c);
    padding: 4px 7px;
    border-radius: 4px;
    font-style: italic;
    box-shadow: inset 0 0 4px rgba(100, 80, 60, 0.3);
}

i:hover, em:hover {
    background: linear-gradient(to right, #3a3a3a, #2b2b2b);
    color: #f2e6d0;
}

b, strong {
    color: #eac58d;
    background-color: #202020;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 6px rgba(255, 235, 200, 0.2),
                inset 0 0 6px rgba(0, 0, 0, 0.2);
}

#content {
    margin: -34px auto 100px auto;
    width: 65%;
}

.contentx {
    margin-bottom: 50px;
    padding: 25px;
    font-size: 17px;
    text-align: justify;
    color: #d6d6d6;
    border-radius: 30px;
    opacity: 0.95;line-height: 1.9;
}

blockquote {
    font-size: 22px;
    color: #e4c18c;
    background: linear-gradient(145deg, #1b1b1b, #0d0d0d);
    padding: 40px 50px;
    margin: 40px auto;
    border-left: 10px double #7a5634;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(150, 100, 50, 0.4);
    max-width: 860px;
    position: relative;
    line-height: 1.9;
    letter-spacing: 0.6px;
}

blockquote::before,
blockquote::after {
    content: '“';
    font-size: 60px;
    color: #604020;
    position: absolute;
    opacity: 0.3;
}

blockquote::before {
    top: 10px;
    left: 20px;
}

blockquote::after {
    content: '”';
    bottom: 10px;
    right: 20px;
}

textarea,
input,
select {
    width: 40%;
    max-width: 600px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 18px;
    color: #e6d3b3;
    background: #1a1a1a;
    border: 2px solid #6a4c2f;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    caret-color: #ffcc88;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #b08b54;
    background-color: #222;
}

h1 {
    display: block;
    position: relative;
    padding: 40px 60px;
    margin: 60px auto;
    font-size: 40px;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    background-image: linear-gradient(to right, #e0c98d, #d38a4e, #a4372e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(250, 210, 160, 0.25),
                 0 0 24px rgba(160, 60, 30, 0.15);
}

h1::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 5px;
    background: linear-gradient(to right, #f8e3b2, #c8803c, #8f2c20);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 200, 120, 0.3);
}


#footer {
    font-size: 16px;
    color: #aa8960;
    text-align: center;
    padding: 60px 20px 35px;
    margin-top: 60px;
    letter-spacing: 0.7px;
    line-height: 1.8;
}

#footer a {
    color: #eac58d;
    border-bottom: 1px dashed #aa8960;
    text-decoration: none;
}

#footer a:hover {
    color: #f5deb3;
    border-bottom: 1px solid #f5deb3;
    text-shadow: 0 0 6px rgba(255, 220, 160, 0.3);
}


#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 562px;
    width: 100%;
    margin-top: -5px;
}