html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #DBCCCB;
    background-repeat: repeat;
      font-family: 'Lora', serif;
    font-weight: 400!important;
    text-align: center;
    font-size: 14px;
    color: #3D2B29;
    overflow-x: hidden;
}


#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center; 
    height: 668px;
    width: 100%;
    margin-top: -5px;
}

h1 {
    position: relative;
    opacity: 0.8;
    display: inline-block;
    padding: 16px 36px;
    margin: 60px auto 30px;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 23px;
    letter-spacing: 5px;
    color: #8B4513; 
    background: linear-gradient(135deg, #fff6e5 0%, #f0d8a8 60%, #d4a373 100%);
    border-radius: 12px 12px 6px 6px;
    box-shadow: 0 6px 15px rgba(180, 120, 50, 0.3);
    text-shadow: 0 0 6px rgba(255, 240, 200, 0.8);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

h1:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(200, 130, 50, 0.5);
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-style: italic;
    padding: 30px 40px;
    margin: 40px auto;
    width: 70%;
    max-width: 700px;
    opacity: 0.9;
    color: #704214;
    background: linear-gradient(135deg, #fff8ec, #faecd6);
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(180, 120, 50, 0.25);
    position: relative;
    z-index: 1;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease;
}

blockquote:hover {
    transform: scale(1.02);
}

blockquote::before {
    content: '“';
    font-size: 60px;
    color: rgba(180, 120, 50, 0.25);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Lora', serif;
}

blockquote::after {
    content: '”';
    font-size: 60px;
    color: rgba(180, 120, 50, 0.25);
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: 'Lora', serif;
}


#navigation {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 18px 0;
  background: linear-gradient(135deg, #f6eee2 0%, #e8d5b7 60%, #d8bc8c 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 15px rgba(100, 60, 20, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(210, 175, 120, 0.5);
  text-align: center;
  z-index: 999;opacity:0.7;
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

#navigation a {
  display: inline-block;
  position: relative;
  font-family: 'Lora', serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #5c3a21;
  margin: 0 14px;
  padding: 12px 20px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  transition: all 0.5s ease;
}

#navigation a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #b48b56;
  transition: width 0.4s ease;
}

#navigation a:hover::before {
  width: 80%;
}

#navigation a:hover {
  color: #926b3b;
  text-shadow: 0 0 6px rgba(180, 140, 90, 0.4);
}


.content {
  width: 60%;
  margin: 40px auto;
  padding: 0 20px;
  text-align: justify;
  font-family: 'Lora', serif;
  color: #6b4226;
  line-height: 1.6;
}


.contentx {opacity:0.6;
  background: linear-gradient(145deg, #fbf6ef 0%, #f0e2ca 60%, #e3d0ad 100%);
  padding: 40px;
  border-radius: 16px;
  font-size: 18px;
  font-family: 'Lora', serif;
  color: #4b3220;
  text-align: justify;
  box-shadow:
    0 8px 40px rgba(80, 50, 20, 0.08),
    inset 0 0 25px rgba(255, 248, 236, 0.25);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(160, 120, 60, 0.15);
}

.contentx::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(255, 240, 200, 0.2), transparent 60%);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 220, 0.7), transparent),
    radial-gradient(2px 2px at 80% 70%, rgba(255, 255, 200, 0.6), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 240, 0.8), transparent),
    radial-gradient(2px 2px at 70% 20%, rgba(255, 245, 180, 0.5), transparent);
  animation: twinkle 6s infinite alternate;
  z-index: 1000;
}

@keyframes twinkle {
  from {opacity: 0.5;}
  to {opacity: 0.9;}
}

#footer {opacity:0.5;
  background: linear-gradient(135deg, #f8efe0 0%, #e2cfb1 60%, #c9aa7a 100%);
  color: #4a301c;
  text-align: center;
  padding: 70px 30px;
  margin-top: 80px;
  border-top: 3px double #a88353;
  clip-path: polygon(0 50px, 12% 45px, 25% 55px, 38% 48px, 50% 60px, 62% 50px, 75% 58px, 88% 50px, 100% 60px, 100% 100%, 0 100%);
  box-shadow:
    inset 0 10px 20px rgba(120, 90, 40, 0.08),
    0 10px 15px rgba(100, 70, 30, 0.12);
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px;
  letter-spacing: 0.8px;
  position: relative;
  transition: all 0.4s ease;
}

#footer a {
  color: #a06a2f;
  text-decoration: none;
  border-bottom: 1.5px dashed #b9945d;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
  font-weight: 600;
}

#footer a:hover {
  color: #6b4321;
  border-bottom: 1.5px solid #a88353;
  text-shadow: 0 0 8px rgba(230, 200, 150, 0.5);
  cursor: pointer;
}

.contentx a:link,
.contentx a:visited {
  position: relative;
  font-family: 'Lora', serif;
  font-weight: 500;
  color: transparent;
  background: linear-gradient(135deg, #c98a2e, #a65e1e);
  -webkit-background-clip: text;
  background-clip: text;
  text-decoration: none;
  transition: all 0.4s ease;
}

.contentx a:hover {
  background: linear-gradient(135deg, #ffda7f, #d1882c);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(255, 210, 130, 0.7));
}

.contentx b {
  color: #8b4513;
  text-shadow: 0 0 6px rgba(255, 220, 150, 0.4);
  font-weight: 600;
}

.contentx i {
  color: #b87333;
  text-shadow: 0 0 4px rgba(240, 200, 140, 0.3);
  font-style: italic;
}

.contentx input,
.contentx textarea,
.contentx select {
  width: 60%;
  max-width: 350px;
  padding: 12px 16px;
  margin: 14px 0;
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #5c3921;
  background: linear-gradient(145deg, #fff8ec, #f6e5c2);
  border: 1.5px solid rgba(170, 120, 60, 0.4);
  border-radius: 14px;
  box-shadow:
    inset 0 0 8px rgba(255, 240, 210, 0.6),
    0 3px 6px rgba(180, 110, 40, 0.15);
  transition: all 0.35s ease;
  caret-color: #c98a2e;
}

.contentx input:focus,
.contentx textarea:focus,
.contentx select:focus {
  outline: none;
  border-color: #d4a017;
  box-shadow:
    0 0 12px rgba(210, 160, 70, 0.6),
    inset 0 0 10px rgba(255, 235, 190, 0.8);
  background: linear-gradient(145deg, #fff9e8, #f9e2b5);
  transform: scale(1.02);
}

.contentx select {
  appearance: none;
  background:
    linear-gradient(145deg, #fff8ec, #f6e5c2),
    radial-gradient(circle at 95% 50%, #d4a017 0%, #fff0c5 50%, transparent 70%);
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-size: 12px 12px;
  cursor: pointer;
  padding-right: 38px;
}

.contentx input:hover,
.contentx textarea:hover,
.contentx select:hover {
  box-shadow:
    0 0 10px rgba(255, 220, 160, 0.5),
    inset 0 0 6px rgba(255, 245, 210, 0.5);
  border-color: #e4b74f;
}

.contentx textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  background: linear-gradient(145deg, #fffaf1, #f7e8ca);
}


.contentx input::placeholder,
.contentx textarea::placeholder {
  color: rgba(140, 90, 40, 0.6);
  font-style: italic;
}


@keyframes glowShift {
  0% { box-shadow: 0 0 8px rgba(255, 230, 150, 0.4); }
  50% { box-shadow: 0 0 14px rgba(255, 215, 100, 0.6); }
  100% { box-shadow: 0 0 8px rgba(255, 230, 150, 0.4); }
}

.contentx input:focus,
.contentx textarea:focus {
  animation: glowShift 2s ease-in-out infinite;
}

