@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #EBCEA0;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(204, 173, 119, 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; }
}

.column {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(245, 236, 220, 0.8); 
  border: 1px solid #d4c1a7; 
  border-radius: 12px;
  box-sizing: border-box;
  color: #7A5028; 
  box-shadow: 0 4px 12px rgba(180, 160, 130, 0.4);
}

#linklist ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}

#linklist ul li {
  background: rgba(250, 240, 220, 0.6); 
  margin: 15px 0;
  padding: 20px 24px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(200, 180, 140, 0.5);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: 'Lora', serif;
  background-clip: text;
  -webkit-background-clip: text;
  color: #5a4a33;
  background-image: linear-gradient(to right, #bfa77f, #e8dcc5); 
  text-decoration: underline;
  text-decoration-color: rgba(200, 180, 150, 0.4);
}

#linklist ul li:hover {
  background: linear-gradient(120deg, #e3cba6 0%, #f5e4c1 50%, #c8b495 100%);
  box-shadow: 0 12px 30px rgba(190, 170, 130, 0.4);
  transform: translateY(-6px);
  color: #5a4b30;
  cursor: pointer;
  text-decoration-color: rgba(220, 190, 160, 0.5);
}

#memberlist ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}

#memberlist ul li {
  background: rgba(255, 250, 235, 0.7);
  margin: 15px 0;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(210, 180, 140, 0.4);
  backdrop-filter: blur(6px);
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background-clip: text;
  -webkit-background-clip: text;
  color: #5a4a33;
  background-image: linear-gradient(to right, #d1bfa3, #f3e8cc);
  text-decoration: underline;
  text-decoration-color: rgba(200, 180, 160, 0.4);
}

#memberlist ul li:hover {
  background: linear-gradient(120deg, #f1ddbc 0%, #f7eedc 50%, #ddcbb1 100%);
  box-shadow: 0 10px 30px rgba(180, 160, 120, 0.4);
  transform: translateY(-6px);
  color: #5a4a33;
  text-decoration-color: rgba(220, 200, 180, 0.6);
  cursor: pointer;
}

#memberlist ul li .name {
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(180, 160, 120, 0.2);
}

#memberlist ul li .status {
  font-style: italic;
  color: rgba(150, 130, 100, 0.7);
  font-size: 0.9em;
  white-space: nowrap;
}

#navigation {
    position: relative;
    width: 92%;
    margin-top: 10px;
    padding: 30px 10px;
    background: linear-gradient(to bottom, #f9f3e4, #e4cfa3);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    box-shadow: 0 0 40px rgba(197, 162, 120, 0.4);
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    opacity: 0.62;
    border-top: 6px solid #dec29a;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 3px dashed #c6a87e;
}

#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: #5e4229;
    background: #f5ebd5;
    border: 2px solid #c9aa7a;
    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(250, 225, 190, 0.3);
}

#navigation a:hover {
    background: #ead6b7;
    color: #4d3821;
    box-shadow: 0 0 16px rgba(200, 160, 110, 0.5);
    transform: translateY(-4px);
}

#navigation a:active {
    transform: scale(0.96);
    background-color: #e1c39a;
    box-shadow: inset 0 0 10px rgba(180, 150, 100, 0.4);
}

#navigation a::before {
    content: "ⵣ";
    font-size: 18px;
    margin-right: 8px;
    transition: transform 0.3s ease;
    color: #9c774f;
}

#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: #7e5d3a;
    font-size: 19px;
    text-decoration: none;
    font-family: 'Lora', 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 #f5e9d6;
}

a:hover {
    color: #4b3620;
    border-bottom: 2px solid #c79c67;
    background: linear-gradient(to right, rgba(240, 210, 160, 0.3), transparent);
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #d5af81, #bc9763);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

i, em {
    color: #a37851;
    font-style: italic;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #f1e3ca, #e6d0af);
    padding: 4px 7px;
    border-radius: 4px;
    box-shadow: inset 0 0 4px rgba(200, 170, 120, 0.2);
    transition: all 0.3s ease;
}

i:hover, em:hover {
    background: linear-gradient(to right, #e6d0af, #d9be9e);
    color: #2c1f12;
}

b, strong {
    color: #fff8ed;
    font-weight: 800;
    font-family: 'Lora', serif;
    background-color: #caa97f;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 6px rgba(220, 190, 140, 0.2),
                inset 0 0 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

b:hover, strong:hover {
    background-color: #e4c6a2;
    color: #2c2c2c;
}

#content {
    margin: -140px auto;margin-bottom:100px;
    position: relative;
    width: 70%;
}

.contentx {
    margin: 0 0 50px 0;
    padding: 25px;
    font-size: 16px;
    font-family: 'Lora', serif;
    font-weight: 500 !important;
    text-align: justify;
    color: #7a664f;
    line-height: 25px;
    letter-spacing: 2px;
    border-radius: 30px;
    opacity: 0.8;
    background: rgba(250, 240, 220, 0.4);
    backdrop-filter: blur(3px);
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 22px;
    color: #5b432c;
    background: linear-gradient(145deg, #f7ecdc, #e7cda7);
    padding: 40px 50px;
    margin: 40px auto;
    border-left: 10px double #c4a370;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(220, 190, 140, 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: #b49368;
    position: absolute;
    opacity: 0.4;
}

blockquote::before {
    content: "⚚";
    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-family: 'Lora', serif;
    font-size: 18px;
    color: #5a442c;
    background: linear-gradient(145deg, #f6ebd4, #e8d2a7);
    border: 2px solid #d6b58a;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    caret-color: #a0764f;
}

textarea:focus,
input,
select {
    outline: none;
    border-color: #c59f6f;
    background-color: #fcf1d8;
    box-shadow: 0 0 14px rgba(220, 180, 130, 0.6), inset 0 0 6px rgba(255, 255, 255, 0.08);
}

h1 {
    position: relative;
    display: inline-block;
    padding: 30px 60px;
    background: transparent;
    font-size: 27px;
    font-family: 'Cinzel Decorative', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
    color: transparent;
    background-image: linear-gradient(to right, #e0b974, #c49b62);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    z-index: 1;
}

h1::after {
    content: '';
    position: absolute;
    left: 10%;
    bottom: -12px;
    width: 80%;
    height: 6px;
    background: linear-gradient(to right, #f5d5a0, #b88d4b);
    border-radius: 3px;
}


#footer {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: #836848;
    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, #f4e7cd, #e6cfac);
    border-top: 1px solid #d2b289;
}

#footer a {
    color: #a0784f;
    text-decoration: none;
    border-bottom: 1px dashed #c8a773;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #5c3d1f;
    border-bottom: 1px solid #f4e1c0;
    text-shadow: 0 0 8px rgba(230, 200, 160, 0.3);
}


#header {
    background-image: url('images/head.jpg'), url('images/bg1.jpg');
    background-repeat: no-repeat, repeat-x;
    background-position: center;
    height: 577px;
    width: 100%;
    margin-top: -5px;
}