html, body {
    height: 100%;
    margin: 0;
}

body {
background-color:#C7D8D8;
}


body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(180, 220, 190, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: mistDrift 60s linear infinite;
    z-index: 1;
    opacity: 0.45;
}

@keyframes mistDrift {
    0% { background-position: 0 0; }
    100% { background-position: 80px 150px; }
}


#navigation {
    position: relative;
    width: 60%;
    margin-top: -10px;
    padding: 30px 10px;
    background: linear-gradient(to bottom, #f3f7f5, #c6e0d2);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    box-shadow: 0 0 40px rgba(150, 180, 160, 0.4);
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    opacity: 0.62;
    border-top: 6px solid #bcd6c9;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 3px dashed #b0c4b1;
}

#navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
        font-family: 'Cinzel Decorative', serif;
    color: #314138;
    background: #e7efe9;
    border: 2px solid #a3b8ac;
    clip-path: polygon(0 0, 100% 10%, 95% 100%, 5% 90%);
    text-decoration: none !important;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 8px rgba(200, 255, 240, 0.3);
}

#navigation a:hover {
    background: #d8ece0;
    color: #2f3d34;
    box-shadow: 0 0 16px rgba(120, 200, 160, 0.5);
    transform: translateY(-4px);
}

#navigation a:active {
    transform: scale(0.96);
    background-color: #cfe2d6;
    box-shadow: inset 0 0 10px rgba(150, 200, 180, 0.4);
}

#navigation a::before {
    content: "✶";
    font-size: 18px;
    margin-right: 8px;
    transition: transform 0.3s ease;
    color: #6f9482;
}

#header {
    background-image: url('images/tolk.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 477px;
    width: 100%;
    margin-top: 0; 
    position: relative;
    z-index: 0; 
}

a:link,
a:visited {
    color: #6d8e7c;
    font-size: 24px;
    text-decoration: none;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    position: relative;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px #dce3dd;
}

a:hover {
    color: #415a4d;
    border-bottom: 2px solid #95c3a2;
    background: linear-gradient(to right, rgba(180, 230, 200, 0.3), transparent);
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #a3c9ba, #8fba9d);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

i, em {
    color: #a59ec1;
    font-style: italic;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #e0e4ed, #d4d8e3);
    padding: 4px 7px;
    border-radius: 4px;
    box-shadow: inset 0 0 4px rgba(180, 180, 220, 0.2);
    transition: all 0.3s ease;
}

i:hover, em:hover {
    background: linear-gradient(to right, #d4d8e3, #c8ccd7);
    color: #333;
}

b, strong {
    color: #e2f1ed;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    background-color: #b5c9c0;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 6px rgba(180, 220, 200, 0.2),
                inset 0 0 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

b:hover, strong:hover {
    background-color: #cfe4d6;
    color: #2c2c2c;
}

#content {
    margin: 23px auto;
    position: relative;
    width: 70%;
}

.contentx {
    margin: 0 0 50px 0;
    padding: 25px;
    font-size: 16px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 500 !important;
    text-align: justify;
    color: #6e757e;
    line-height: 25px;
    letter-spacing: 2px;
    border-radius: 30px;opacity:0.8;
    background: rgba(245, 255, 250, 0.4);
    backdrop-filter: blur(3px);
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #3c4f48;
    background: linear-gradient(145deg, #f3f7f5, #dde9e2);
    padding: 40px 50px;
    margin: 40px auto;
    border-left: 10px double #9bbfad;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(180, 220, 210, 0.3), 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 860px;
    position: relative;
    line-height: 1.9;
    letter-spacing: 0.6px;
}

blockquote::before,
blockquote::after {
    font-size: 60px;
    color: #a5bfb6;
    position: absolute;
    opacity: 0.4;
}

blockquote::before {
    content: "❝";
    top: 10px;
    left: 20px;
}

blockquote::after {
    content: "❞";
    bottom: 10px;
    right: 20px;
}

textarea,
input,
select {
    width: 100%;
    max-width: 600px;
    padding: 16px 20px;
    margin: 16px 0;
    font-family: 'Tahoma', sans-serif;
    font-size: 18px;
    color: #3f4e45;
    background: linear-gradient(145deg, #ecf2ef, #d6e5df);
    border: 2px solid #b4cbc2;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    caret-color: #8ea6a0;
}

textarea:focus,
input,
select {
    outline: none;
    border-color: #a3bfae;
    background-color: #edf7f2;
    box-shadow: 0 0 14px rgba(150, 200, 180, 0.6), inset 0 0 6px rgba(255, 255, 255, 0.08);
}

h1 {
    position: relative;
    display: inline-block;
    padding: 30px 60px;
     background: linear-gradient(to right, #A8C5C5, #7BB9B9);
    color: #f9fbfa;
    font-size: 64px;
    font-family: 'Cinzel Decorative', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 10px 10px 0 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%2379B7B7' fill-opacity='1' d='M0,224L48,218.7C96,213,192,203,288,192C384,181,480,171,576,186.7C672,203,768,245,864,261.3C960,277,1056,267,1152,250.7C1248,235,1344,213,1392,202.7L1440,192V320H0Z'></path></svg>") no-repeat bottom;
    background-size: cover;
    z-index: -1;
}



#footer {
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #748279;
    text-align: center;
    padding: 60px 20px 35px;
    margin-top: 60px;
    opacity: 0.9;
    letter-spacing: 0.7px;
    line-height: 1.4;
    background: linear-gradient(to top, #e4f2eb, #ccdcd4);
    border-top: 1px solid #bccac1;
}

#footer a {
    color: #7fa595;
    text-decoration: none;
    border-bottom: 1px dashed #a6bfb2;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #4b5f55;
    border-bottom: 1px solid #cfeae1;
    text-shadow: 0 0 8px rgba(180, 220, 200, 0.3);
}
