html, body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ffe6c7, #d6f9d6);
    color: #1c1c1c;
    font-family: 'Libre Baskerville', serif;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

#footer {
    clear: both;
}

#header {
    background-image: url('images/head.jpg');
    background-color: #FF9C56;
    background-repeat: no-repeat;
    background-position: left top;
    height: 579px;
    width: 100%;
    margin-top: -3px;
}

h1 {
    display: inline-block;
    padding: 20px 40px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #1d401d;
    background: linear-gradient(135deg, #fffdf8, #fcecd6);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(111, 191, 115, 0.3),
                0 0 12px rgba(255, 190, 120, 0.4);
    text-shadow: 0 0 6px #ffffff, 0 0 12px #6fbf73;
    opacity: 0.95;
}

.nav {
    background: linear-gradient(135deg, rgb(255, 210, 150), rgb(200, 255, 200));
    padding: 30px 30px;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0px 0;
    max-width: 100%;
}

a:link:not(.nav a),
a:visited:not(.nav a) {
    color: #6fbf73;
    font-size: 20px;
    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 #2b1a1a;
}

a:hover:not(.nav a) {
    color: #47a659;
    border-bottom: 2px solid #6fbf73;
    background: linear-gradient(to right, rgba(111, 191, 115, 0.25), transparent);
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #6fbf73, #3d803f);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.nav a {
    display: inline-block;
    padding: 18px 36px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #1d401d;
    background: linear-gradient(145deg, #ffffff, #eafee7);
    border-radius: 16px; 
    box-shadow: 0 8px 20px rgba(0, 50, 0, 0.25),
                inset 0 0 8px rgba(90, 200, 90, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav a:hover {
    background: linear-gradient(145deg, #eaffea, #d6f5d6);
    color: #3d803f;
    box-shadow: 0 10px 24px rgba(0, 100, 0, 0.35),
                inset 0 0 10px rgba(90, 200, 90, 0.2);
    transform: translateY(-3px);
}

#content {
    width: 87%;
    max-width: 1000px;
    margin: 0;
    margin-left: 40px;
    padding: 20px 20px;
    text-align: justify;
}

.contentx {
    padding: 25px;
    border-radius: 16px;
    color: #2b2b2b;
    line-height: 1.6;
    font-size: 16px;
}

#content a {
    color: #154d2c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

#content a:hover {
    color: #0f732f;
    border-bottom: 2px solid #0f732f;
}

i, em {
    color: #8a3a0f;
    font-style: italic;
    background: rgba(255, 240, 220, 0.7);
    padding: 2px 5px;
    border-radius: 3px;
}

b, strong {
    color: #0d2e0d;
    font-weight: 800;
    background: rgba(200, 255, 200, 0.5);
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #5A4E48; 
    background: linear-gradient(135deg, #fff6ec, #ffe6c7);
    padding: 35px 45px;
    margin: 50px 0;
    border-left: 6px solid #ffb877;
    border-radius: 18px;
    max-width: 780px;
    box-shadow: 0 8px 20px rgba(255, 165, 90, 0.2);
    line-height: 1.8;
    letter-spacing: 0.3px;
    text-align: left;
}

blockquote::before, 
blockquote::after {
    font-size: 50px;
    color: #ffb877;
    opacity: 0.25;
}


textarea, input, select {
    background: linear-gradient(135deg, rgba(255, 235, 200, 0.9), rgba(210, 255, 210, 0.85));
    border-radius: 30px 12px 30px 12px;
    padding: 15px 25px;
    font-family: 'IM Fell English', serif;
    font-size: 18px;
    color: #1c1c1c; 
    border: 1px solid rgba(111, 191, 115, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25),
                inset 0 0 10px rgba(100, 200, 100, 0.1);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    outline: none;
    width: 60%;
    max-width: 400px;
    box-sizing: border-box;
}

textarea:focus, input:focus, select:focus {
    border-color: #6fbf73;
    box-shadow: 0 12px 30px rgba(111, 191, 115, 0.4),
                inset 0 0 15px rgba(255, 180, 120, 0.2);
    background: linear-gradient(145deg, #ffe6c7, #d6f9d6); 
    color: #0d2e0d; 
}

textarea::placeholder,
input::placeholder,
select::placeholder {
    color: #4d7a4d; 
    opacity: 0.8;
}

