html, body {
    height: 100%;
    margin: 0;
    background-color:#E5E5E5;
    background-repeat: repeat;
    color: #28190B; font-size: 18px;
}

@import url('https://fonts.googleapis.com/css2?family=Lora&family=Cinzel+Decorative&family=Merriweather&family=Spectral&display=swap');

.footer {
  background: linear-gradient(135deg, #D8E7D0 0%, #E3DAC9 100%);
  text-align: center;
  padding: 80px 20px 40px 20px;
  font-family: 'Lora', serif;
  border-top-left-radius: 100% 50%;
  border-top-right-radius: 100% 50%;
  box-shadow: 0 -6px 25px rgba(60, 30, 10, 0.15);
}

.clique-quote {
  font-family: 'Lora', serif;
  font-size: 24px;
  color: #2b1c0f;
  background: linear-gradient(135deg, #E3DAC9 0%, #F2F7F0 100%);
  padding: 30px 40px;
  margin: 40px auto;
  border-left: 10px solid #A2C18E;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(60, 30, 10, 0.15), 0 0 15px rgba(162,193,142,0.1);
  line-height: 1.8;
  position: relative;
  text-align: center;
  max-width: 800px;
  transition: all 0.3s ease;
}

.clique-quote::before {
  content: "❝";
  font-size: 48px;
  position: absolute;
  top: -20px;
  left: 20px;
  color: #A2C18E;
  opacity: 0.3;
}

.clique-quote::after {
  content: "❞";
  font-size: 48px;
  position: absolute;
  bottom: -20px;
  right: 20px;
  color: #A2C18E;
  opacity: 0.3;
}

.clique-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(60,30,10,0.2), 0 0 20px rgba(162,193,142,0.15);
}

#linklist ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 20px;
}

#linklist ul li {
  flex: 1 1 calc(50% - 20px);
  margin: 0;
  padding: 25px 90px;
  background: linear-gradient(135deg, #E3DAC9, #D8E7D0);
  border-radius: 30px;
  text-align: center;
  font-style: italic;
  font-family: 'Lora', serif;
  color: #2b1c0f;
  box-shadow: 0 6px 18px rgba(60, 30, 10, 0.15), 0 0 8px rgba(162, 193, 142, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

#linklist ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(60, 30, 10, 0.25), 0 0 20px rgba(162, 193, 142, 0.2);
  background: linear-gradient(135deg, #A2C18E, #E3DAC9);
}

#linklist ul li::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(162,193,142,0.15) 0%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
  transition: all 0.3s ease;
}

#linklist ul li:hover::before {
  opacity: 0.8;
}

.footer-content {
  display: inline-block;
  background: #ffffff;
  color: #2b1c0f;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(60,30,10,0.1);
}

#header {
  background-image: url('images/head.jpg');
  background-repeat: no-repeat;
  background-position: center;
  height: 780px;
  width: 100%;
  margin-top: 0; 
  position: relative;
  z-index: 0;
  background-color:#E5E5E5;
}

.h1 {
  font-family: 'Lora', serif;
  font-size: 64px;
  font-weight: 700;
  color: #2b1c0f;
  background: linear-gradient(135deg, #E3DAC9 0%, #D8E7D0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 40px 0;
  line-height: 1.2;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(162, 193, 142, 0.4);
}

@media (max-width: 900px) {
  .fancy-title {
    font-size: 48px;
  }
}

a {
  color: #A2C18E;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: #A2C18E;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(162, 193, 142, 0.6);
}

b {
  background: linear-gradient(135deg, #E3F1D8, #D8E7D0);
  color: #2b1c0f;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(60,30,10,0.1);
  text-shadow: 0 0 2px rgba(162, 193, 142, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

b:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(60,30,10,0.2);
}

i {
  background: linear-gradient(135deg, #D8E7D0, #F2F7F0);
  color: #2b1c0f;
  font-style: italic;
  padding: 3px 7px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(60,30,10,0.1);
  text-shadow: 0 0 2px rgba(162, 193, 142, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

i:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(60,30,10,0.2);
}

h1 {
  font-family: 'Cinzel Decorative', serif !important;
  font-weight: 400;
  font-size: 42px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin: 30px auto 30px;
  padding: 25px 40px;
  max-width: 400px;     
  background: #E3DAC9;
  color: #FF7518;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(60, 30, 10, 0.3);
  user-select: none;
  position: relative;
}

h1::before,
h1::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #cc4f00;
  opacity: 0.6;
}

h1::before { left: 12px; }
h1::after { right: 12px; }


h2 {
  font-family: 'Cinzel Decorative', serif !important;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin: 20px auto 20px;
  padding: 25px 40px;
  max-width: 200px;     
  background: #E3DAC9;
  color: #FF7518;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(60, 30, 10, 0.3);
  user-select: none;
  position: center;
}

h2::before,
h2::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #cc4f00;
  opacity: 0.6;
}

h2::before { left: 12px; }
h2::after { right: 12px; }

.carousel-menu {
  position: relative;
  background-image: url('leaf.png');
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity:0.7;
  animation: spin 20s linear infinite;
  flex-shrink: 0;
  margin-left: 100px;
  margin-top: 100px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.carousel-menu ul {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel-menu li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 72deg)) translate(0, -135px);
  transform-origin: center center;
}

.carousel-menu a {
  display: inline-block;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(208,240,192,0.9));
  color: #2e5d2e;
  font-family: 'Cinzel', serif;
  font-variant: small-caps;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 15px;
  font-size: 18px;
  text-align: center;
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.carousel-menu a:hover,
.carousel-menu a:focus,
.carousel-menu a:active {
  background: linear-gradient(145deg, rgba(245,245,245,0.9), rgba(188,230,162,0.9));
  color: #1f3a1f;
  transform: scale(1.15);
  outline: none;
  box-shadow: none;
}

.container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 100px; 
  flex-wrap: wrap;
}

.blockquote-box {
  flex: 1 1 400px;
  background: #E3DAC9;
  padding: 30px 40px;
  border-left: 8px solid #A2C18E;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(60, 30, 10, 0.15), 0 0 10px rgba(162, 193, 142, 0.1);
  line-height: 1.8;
  text-shadow: 0 0 3px rgba(162, 193, 142, 0.2);
  font-size: 26px;
  font-weight: 500;
}

.content-box {
  flex: 1 1 400px;
  background: #F9F9F2;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(60, 30, 10, 0.1);
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 1px;
  text-align: justify;
  opacity: 0.85;
}

.enthusiast-section {
  background: linear-gradient(135deg, #D8E7D0 0%, #F2F7F0 100%);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 12px 35px rgba(60,30,10,0.15), 0 0 20px rgba(162,193,142,0.05);
  max-width: 1000px;
  margin: 80px auto;
  font-family: 'Lora', serif;
  position: relative;
  border: 2px solid #A2C18E;
  overflow: hidden;
}

.enthusiast-section::before {
  content: "✦ ✧ ✦";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: rgba(162,193,142,0.4);
  letter-spacing: 10px;
}

.enthusiast-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 50px;
  font-weight: 700;
  background: linear-gradient(135deg, #A2C18E, #E3DAC9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 6px rgba(43,28,15,0.2);
  letter-spacing: 2px;
  position: relative;
}

.enthusiast-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #A2C18E, #E3DAC9);
  margin: 10px auto 0;
  border-radius: 2px;
}

.enthusiast-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  flex-wrap: nowrap;
  background: none;
}

.stat {
  text-align: center;
  padding: 40px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E0F2E9, #A2C18E);
  box-shadow: 0 3px 10px rgba(60,30,10,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-width: 100px;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(60,30,10,0.15);
  background: linear-gradient(135deg, #D1EAD8, #8FBF79);
}

.stat img {
  max-width: 100px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(60,30,10,0.15), 0 0 10px rgba(162,193,142,0.2);
  margin: 0 auto 10px;
  display: block;
}

.stat i {
  display: block;
  margin-bottom: 8px;
  font-style: normal;
  font-size: 22px;
  color: #FFFFFF;
}

.stat h3 {
  font-size: 20px;
  margin: 5px 0;
}

.stat p {
  font-size: 14px;
  margin: 0;
}

.updated {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.85;
  font-style: italic;
}

.updated a {
  color: #2b1c0f;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.updated a:hover {
  color: #A2C18E;
}

@media (max-width: 900px) {
  .enthusiast-content {
    flex-direction: column;
    align-items: center;
  }
  .stats-left, .stats-right {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .stats-left .stat, .stats-right a {
    width: 120px;
  }
}

input,
select,
textarea,
button {
  background: #E3DAC9;
  border: 2px solid #A2C18E;
  color: #2b1c0f;
  font-family: 'Lora', serif;
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  width: 40%;
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px rgba(60, 30, 10, 0.05),
              0 4px 12px rgba(162, 193, 142, 0.2);
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #A2C18E;
  background-color: #f8fff0;
  box-shadow:
      0 0 15px rgba(162, 193, 142, 0.4),
      inset 0 0 6px rgba(60, 30, 10, 0.1);
  color: #2b1c0f;
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

button {
  background: linear-gradient(135deg, #A2C18E, #E3DAC9);
  color: #2b1c0f;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid #A2C18E;
  cursor: pointer;
  min-width: 160px;
  width: auto;
  box-shadow: 0 6px 16px rgba(60,30,10,0.2);
  transition: all 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #E3DAC9, #A2C18E);
  transform: scale(1.05);
  box-shadow: 0 0 20px 4px rgba(162, 193, 142, 0.5);
  color: #2b1c0f;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-color: #E3DAC9;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%232b1c0f' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  border-radius: 12px;
  border: 2px solid #A2C18E;
  box-shadow: inset 0 0 10px rgba(60, 30, 10, 0.05),
              0 4px 12px rgba(162, 193, 142, 0.2);
}

select::-ms-expand {
  display: none;
}
