html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: #E2E2E2;
    font-family: 'Libre Baskerville', serif;
    color: #4d5c56;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

#footer {
    clear: both;
}

#header {
    background-image: url('images/head.jpg'), url('images/bg.jpg');
    background-repeat: no-repeat, repeat-x;
    background-position: center top;
    height: 564px;
    width: 100%;
    margin-top: -5px;
}

h1 {
    position: relative;
    display: inline-block;
    padding: 30px 60px;
    background: #1e2d1d;
    color: #f2f1ee;
    font-size: 34px;
    font-family: 'Cinzel Decorative', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 3px solid #a7a7a7;
    border-radius: 16px 40px 16px 40px;
    text-shadow: 1px 1px 2px #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.nav {
    background: radial-gradient(
        ellipse at center,
        rgba(180, 210, 185, 0.4),
        rgba(160, 190, 165, 0.3)
    );
    padding: 30px 60px;
    border-radius: 60px 20px 60px 20px / 30px 60px 30px 60px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 25px rgba(100, 130, 110, 0.15),
                inset 0 0 10px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    margin: -60px auto 0 auto;
    max-width: 70%;
    border: 1px solid rgba(160, 200, 170, 0.25);
}




.nav a {
    background: linear-gradient(145deg, #eaf5ea, #d6e9d6);
    color: #496d57;
    border-radius: 60px;
    padding: 18px 40px;
    font-family: 'IM Fell English', serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    box-shadow: 0 6px 16px rgba(100, 140, 110, 0.2),
                inset 0 0 6px rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease-in-out;
    backdrop-filter: blur(4px);
    z-index: 1;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.2);
}

.nav a:hover {
    background: linear-gradient(to right, #d9efdc, #cfead2);
    color: #2f4d3a;
    box-shadow: 0 6px 18px rgba(90, 120, 95, 0.2),
                inset 0 0 6px rgba(255, 255, 255, 0.15);
}



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;
}

#page-wrapper {
  min-height: 67%;
  margin-left: 0;
  margin-right: auto;
  padding-left: 30px;
  float: left;
  clear: both;
  margin-top: -60px;
}

i, em {
    color: #a59ec1;
    font-style: italic;
    font-family: 'Georgia', serif;
    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);
}

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);
}

#content {
    margin: 30px 0;
    width: 70%;
}


.contentx {
    background: rgba(245, 255, 250, 0.4);
    backdrop-filter: blur(3px);
    padding: 25px;
    font-size: 16px;
    color: #5f676e;
    line-height: 25px;
    letter-spacing: 1.5px;
    border-radius: 30px;
    opacity: 0.8;text-align: justify;
    font-family: 'Libre Baskerville', serif;
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #2f3e2e;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(236,236,236,0.9));
    padding: 40px;
    margin: 60px auto;
    border-left: 5px solid rgba(106, 123, 103, 0.5);
    border-radius: 25px;
    max-width: 860px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(2px);
    line-height: 1.8;
    letter-spacing: 0.5px;
    position: relative;
}

blockquote::before {
    content: "“";
    font-size: 60px;
    color: #6a7b67;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

blockquote::after {
    content: "”";
    font-size: 60px;
    color: #6a7b67;
    opacity: 0.2;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

textarea, input, select {
  background: linear-gradient(135deg, rgba(40, 60, 40, 0.85), rgba(30, 50, 30, 0.75));
  border-radius: 50px 15px 50px 15px / 25px 45px 25px 45px;
  padding: 15px 25px;
  font-family: 'IM Fell English', serif;
  font-size: 18px;
  color: #d3f0da;
  border: 1px solid rgba(120, 160, 130, 0.4);
  box-shadow: 0 10px 25px rgba(20, 40, 30, 0.3),
              inset 0 0 10px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
  outline: none;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

textarea:focus, input:focus, select:focus {
  border-color: #8fcaa2;
  box-shadow: 0 12px 30px rgba(100, 160, 130, 0.4),
              inset 0 0 15px rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, #3b5f3b, #4e6f4e);
  color: #dffae6;
}

textarea::placeholder, input::placeholder, select::placeholder {
  color: #a8c4b2;
  opacity: 1;
}

textarea:disabled, input:disabled, select:disabled {
  background: rgba(60, 80, 60, 0.3);
  border-color: rgba(100, 130, 100, 0.3);
  color: #7a8f84;
  box-shadow: none;
  cursor: not-allowed;
}


footer {
  width: 70%;
  float: left;
  margin: 0;
  padding: 40px 20px;
  background: radial-gradient(ellipse at top, #2f3e2e, #1e2d1e);
  clip-path: ellipse(70% 100% at center top);
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #cde8d4;
  opacity: 0.95;
  border-top: 2px dashed #95b5a2;
  box-shadow: 0 0 15px rgba(20, 40, 30, 0.4);
}
