@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Libre+Baskerville&family=Special+Elite&display=swap');

*{
  box-sizing:border-box;
}

html,body{
  color:#2f3b2f;
  background:#E3E4DF;
  background-attachment:fixed;
  font-family:'Libre Baskerville',serif;
}

#header{
  background-image: url('images/head.jpg'),url('images/bg1.jpg');
  background-position:center;
  height:718px;
  width:100%;
  background-repeat:no-repeat, repeat-x;
}

.text-divider {
  position: relative;
  margin: 40px 0;
  text-align: center;
  font-size: 0;
}

.text-divider::before,
.text-divider::after {
  content: "";
  display: inline-block;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, #6c9a6a, #3f8ec9, #b44a3c, transparent);
  vertical-align: middle;
  margin: 0 8px;
  border-radius: 2px;
}

.text-divider span {
  display: inline-block;
  font-size: 18px;
  color: #6c9a6a;
  font-family: 'Cinzel Decorative', serif;
  opacity: 0.7;
  vertical-align: middle;
}

.text-divider:hover::before,
.text-divider:hover::after {
  box-shadow: 0 0 6px rgba(200, 180, 230, 0.3);
  transition: all 0.35s ease;
}

b,strong{
  color:white;
  padding:4px 10px;
  border-radius:8px;
  background: linear-gradient(135deg,#6c9a6a,#3f8ec9,#b44a3c);
  box-shadow:0 4px 12px rgba(0,0,0,.25);
}

i,em{
  background: linear-gradient(90deg, rgba(91,127,166,.15), rgba(108,154,106,.15));
  padding:2px 8px;
  border-radius:8px;
}

#layout-container{ display:flex; margin-top:-280px; gap:60px; justify-content:center; padding:60px; position:relative; z-index:3; }


#navigation{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:18px;
  min-width:300px;
  padding:50px 46px;
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(247,242,232,.65));
  border-radius:34px;
  box-shadow: 0 20px 55px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
}

#navigation::before,
#navigation::after{
  content:"❦";
  position:absolute;
  font-size:20px;
  color:rgba(120,130,110,.45);
}

#navigation::before{ top:14px; left:18px; }
#navigation::after{ bottom:14px; right:18px; }

#navigation a{
  position:relative;
  display:block;
  padding:14px 10px;
  text-align:center;
  text-decoration:none;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:12px;
  background:transparent;
  transition:.45s ease;
}

#navigation a:nth-child(1){ color:#5f7fa6; }
#navigation a:nth-child(1)::after{ background: linear-gradient(90deg, transparent, #cfe3f7, #5f7fa6, transparent); }

#navigation a:nth-child(2){ color:#6c9a6a; }
#navigation a:nth-child(2)::after{ background: linear-gradient(90deg, transparent, #cfe8c9, #6c9a6a, transparent); }

#navigation a:nth-child(3){ color:#3f8ec9; }
#navigation a:nth-child(3)::after{ background: linear-gradient(90deg, transparent, #d7ecff, #3f8ec9, transparent); }

#navigation a:nth-child(4){ color:#b44a3c; }
#navigation a:nth-child(4)::after{ background: linear-gradient(90deg, transparent, #f3c7b8, #b44a3c, transparent); }

#navigation a:nth-child(5){ color:#8b8770; }
#navigation a:nth-child(5)::after{ background: linear-gradient(90deg, transparent, #e6e0c8, #8b8770, transparent); }

#navigation a:nth-child(6){ color:#8a6fb3; }
#navigation a:nth-child(6)::after{
  background: repeating-linear-gradient(90deg, transparent 0 6px, #cbb6e6 6px 10px);
  height:2px;
}

#navigation a:nth-child(6):hover{
  text-shadow: 0 0 6px rgba(203,182,230,.6), 0 0 14px rgba(203,182,230,.3);
}

#navigation a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-4px;
  transform:translateX(-50%);
  width:0%;
  height:1px;
  transition:.45s ease;
}

#navigation a:hover{
  letter-spacing:.36em;
}

#navigation a:hover::after{ width:80%; }

#navigation a::before,
#navigation a::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:0%;
  height:1px;
  background: linear-gradient(90deg, transparent, #6c9a6a, #3f8ec9, #b44a3c, transparent);
  transition:.45s;
}

#navigation a::before{ top:0; }
#navigation a::after{ bottom:0; }

#navigation a:hover{
  letter-spacing:.35em;
  color:#2f3b2f;
}

#navigation a:hover::before,
#navigation a:hover::after{ width:85%; }

#navigation a span{
  opacity:0;
  margin-left:6px;
  transition:.4s;
}

#navigation a:hover span{ opacity:.6; }

.contentx{
  padding:55px;
  font-size:22px;
  line-height:1.9;
  opacity:0.7;
  border-radius:28px;
}

h1 {
  position: relative;
  display: inline-block;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #3c4636;
  padding: 18px 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(247,242,232,0.6));
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

h1::before,
h1::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.55;
}

h1::before{ content:"❦"; left:14px; color:#6c9a6a; }
h1::after{ content:"❦"; right:14px; color:#b44a3c; }

h1 span{ position: relative; display: inline-block; }
h1 span::after{
  content: "";
  display: block;
  margin: 10px auto 0;
  height: 1px;
  width: 70%;
  background: linear-gradient(90deg, transparent, #6c9a6a, #3f8ec9, #b44a3c, transparent);
}

h1:hover::before{ transform: translateY(-50%) rotate(-8deg); }
h1:hover::after{ transform: translateY(-50%) rotate(8deg); }

blockquote{
  margin:70px auto;
  padding:48px 72px;
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(236,226,205,.7));
  border-left:8px solid transparent;
  border-image: linear-gradient(#6c9a6a,#3f8ec9,#b44a3c) 1;
  border-radius:28px;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.contentx a{
  position:relative;
  text-decoration:none;
  font-weight:600;
  color:#b44a3c;
}

.contentx a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:2px;
  background: linear-gradient(90deg, #6c9a6a, #3f8ec9, #b44a3c);
  transform:scaleX(.3);
  transform-origin:left;
  transition:.4s;
}

.contentx a:hover::after{ transform:scaleX(1); }

.contentx p:nth-child(2n) a::after{
  height:3px;
  border-radius:4px;
  background:linear-gradient(90deg,#3f8ec9,transparent);
}

.contentx p:nth-child(3n) a::after{
  background: repeating-linear-gradient(90deg, #b44a3c 0 6px, transparent 6px 12px);
}

textarea,input,select{
  width:40%;
  padding:1.7rem;
  background: linear-gradient(145deg, #ffffff, #eee5cf);
  border:none;
  border-radius:40px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.15);
}

textarea:focus,
input:focus,
select:focus{
  outline:none;
  box-shadow: 0 0 14px rgba(63,142,201,.6);
}

#footer{
  margin:120px auto 60px;
  text-align:center;
  letter-spacing:.25em;
  color:#6a6656;
}

#footer::before{
  content:"";
  display:block;
  height:2px;
  margin-bottom:20px;
  background: linear-gradient(90deg, transparent, #6c9a6a, #3f8ec9, #b44a3c, transparent);
}

#footer a{
  color:white;
  padding:6px 16px;
  border-radius:20px;
  background: linear-gradient(135deg, #5b7fa6, #6c9a6a);
  text-decoration:none;
  transition:.35s;
}

#footer a:hover{
  transform:translateY(-2px);
  background: linear-gradient(135deg, #b44a3c, #3f8ec9);
}

.falling-snow{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:1;
  overflow:hidden;
}

.falling-snow span{
  position:absolute;
  top:-10vh;
  color:white;
  opacity:.7;
  font-size:12px;
  animation:snow linear infinite;
}

.falling-snow span:nth-child(1){left:5%;animation-duration:18s;}
.falling-snow span:nth-child(2){left:15%;animation-duration:16s;}
.falling-snow span:nth-child(3){left:28%;animation-duration:20s;}
.falling-snow span:nth-child(4){left:42%;animation-duration:17s;}
.falling-snow span:nth-child(5){left:55%;animation-duration:19s;}
.falling-snow span:nth-child(6){left:70%;animation-duration:15s;}
.falling-snow span:nth-child(7){left:82%;animation-duration:21s;}
.falling-snow span:nth-child(8){left:94%;animation-duration:18s;}

@keyframes snow{
  0%{ transform:translateY(-10vh); opacity:0; }
  10%{ opacity:.8; }
  100%{ transform:translateY(110vh); opacity:0; }
}

form button, 
form input[type="submit"], 
form input[type="reset"] {
  padding: 14px 36px;
  font-size: 16px;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12),
              inset 0 2px 0 rgba(255,255,255,0.25);
  background: linear-gradient(145deg, #6c9a6a, #3f8ec9, #b44a3c);
}

form button:hover, 
form input[type="submit"]:hover, 
form input[type="reset"]:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2),
              inset 0 2px 4px rgba(255,255,255,0.3);
  background: linear-gradient(145deg, #b44a3c, #3f8ec9, #6c9a6a);
}

form button::after, 
form input[type="submit"]::after, 
form input[type="reset"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
  border-radius: 50%;
}

form button:active::after, 
form input[type="submit"]:active::after, 
form input[type="reset"]:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.5;
  transition: 0s;
}

form button:focus, 
form input[type="submit"]:focus, 
form input[type="reset"]:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(108,154,106,0.5), 0 6px 16px rgba(0,0,0,0.15);
}


.member-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 600px;
}

.member-list li {
  position: relative;
  padding: 18px 24px;
  margin: 12px 0;
  font-size: 20px;
  font-family: 'Cinzel Decorative', serif;
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(236,226,205,0.7));
  border-radius: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  cursor: default;
}

.member-list li::before {
  content: "❦";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c9a6a;
  font-size: 22px;
  opacity: 0.7;
  transition: color 0.4s, transform 0.4s;
}

.member-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  background: linear-gradient(145deg, #6c9a6a, #3f8ec9, #b44a3c);
  color: white;
}

.member-list li:hover::before {
  transform: translateY(-50%) rotate(15deg);
  color: #fff;
}

.member-list li strong {
  font-weight: 700;
  display: inline-block;
  margin-right: 12px;
}

.member-list li em {
  font-style: normal;
  opacity: 0.8;
  font-weight: 400;
}