html,body {
    height: 100%;
    margin: 0;
    background-color: #CBDBC9;
    background-repeat: repeat;
    font-family: 'Libre Baskerville', serif;
    color: #6b6a5e;
    overflow-x: 
}

#navigation {
    width: 100%;
    padding: 40px 40px;
    background: linear-gradient(180deg, rgba(220,245,220,.95), rgba(200,235,200,.96));
    border-bottom: 1px solid rgba(150,170,130,.45);
    box-shadow: 0 4px 20px rgba(150,170,130,.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: absolute;
    top: 0;
    z-index: 999;
}

#navigation a {
    position: relative;
    padding: 10px 6px;
    background: none;
    border: none;
    color: #7f8c6f;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-weight: 500;             
    font-size: 18px;             
    letter-spacing: 1.5px;
    text-transform: none
    transition: .45s;
    display: flex;
    align-items: center;
    gap: 8px;
}

#navigation a:hover {
    background: rgba(255,255,255,0.22);
    color: #2f382d;
    transform: translateY(-1px);
    text-shadow: 0 0 6px rgba(183,200,163,.4);
}

#navigation a .link-underline {
    background: linear-gradient(90deg, transparent, #aabca0, transparent);
}

.main-container {
    margin-top: 40px;
    opacity: .9;
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;     
    padding: 40px;
}

#content {
    width: 72%;
    max-width: 1200px;
}

.contentx {
    position: relative;
    padding: 42px;
    text-align: justify;
    background: #EAE5DF;
    border-radius: 30px;
    color: #6b6a5e;
    line-height: 1.95;
    letter-spacing: .6px;
}

#header {
    background-image: url(images/head.jpg), url(images/bg1.jpg);
    background-repeat: no-repeat, repeat-x;
    background-position: center;
    height: 595px;
    width: 100%;
    position: relative;
}

h1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 46px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #DBF0D8;
    background:#ACCFA6;
    border-radius: 18px;
}

.decor-symbol {
    color: #b7c8a3;
    font-size: 22px;
    margin: 0 18px;
}

blockquote {
    position: relative;
    margin: 60px auto;
    max-width: 850px;
    padding: 45px 60px;
    background: #ffffff;
    color: #6b6a5e;
    border-radius: 26px;
    font-style: italic;
    line-height: 2;
}

.decor-quote-left,
.decor-quote-right {
    position: absolute;
    font-size: 70px;
    color: rgba(150,170,130,.25);
    pointer-events: none;
}

.decor-quote-left { left: 28px; top: 10px; }
.decor-quote-right { right: 28px; bottom: 0; }

.decor-line {
    width: 70%;
    height: 1px;
    margin: 18px auto;
    background: linear-gradient(90deg, transparent, rgba(150,170,130,.85), transparent);
}

textarea,input,select {
    width: 80%;
    padding: 16px;
    margin: 12px 0;
    background: #e6f4e6 !important;
    color: #6b6a5e;
    border: 1px solid #b7c8a3;
    border-radius: 8px;
    caret-color: #7f8c6f;
    transition: .3s;
}

textarea:focus,input:focus,select:focus {
    outline: none;
    background: #f0faf0;
    border-color: #7f8c6f;
    box-shadow: 0 0 15px rgba(150,170,130,.4);
}

#footer {
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    padding: 90px 40px 70px;
    text-align: center;
    color: #6b6a5e;
    font-family: 'Cinzel Decorative', serif;
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 2.2;
}

.footer-symbols {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(150,170,130,.75);
    font-size: 18px;
    letter-spacing: 18px;
    text-shadow: 0 0 12px rgba(150,170,130,.45), 0 0 28px rgba(150,170,130,.18);
}

.contentx a {
    color: #3f4a3d;
    background: #dfe8d7; 
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 600;
    transition: .25s;
}

.contentx a:hover {
    background: #c9d7c2;
    color: #2f382d;
    text-shadow: none;
}

.contentx b,
.contentx strong {
    color: #3c3b33;                
    background: #e8e2c9;          
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contentx i,
.contentx em {
    color: #4a4a3f;              
    background: #e1e8d9;           
    padding: 2px 6px;
    border-radius: 6px;
    font-style: italic;
}


#footer a {
    color: #3f4a3d;
    background: #dfe8d7;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .3s ease;
}

#footer a:hover {
    background: #c9d7c2;
    color: #2f382d; 
    text-shadow: none;
    transform: scale(1.05);
}

