html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color:#0B090A;
    font-family: 'Lora', serif;
    font-weight: 400!important;
    color: #d9c8a0;
    text-align: center;
    font-size: 14px;
    overflow-x: hidden;
}

h1 {
    position: relative;
    display: inline-block;
    padding: 20px 48px;
    margin: 60px auto 30px;
    font-size: 24px;
    letter-spacing: 5px;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 800;
    border-radius: 12px;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    z-index: 0;
    background: linear-gradient(135deg, #2b0000, #1a0000);
    color: #ff1a1a;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6), 0 0 12px rgba(255, 50, 50, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

h1::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, #330000, #1a0000);
    z-index: -1;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

h1:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #400000, #1a0000);
    box-shadow: 0 18px 40px rgba(255, 0, 0, 0.4);
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-style: italic;
    padding: 30px 40px;
    margin: 40px auto;
    width: 70%;
    max-width: 700px;
    color: #ff4d4d;
    background: linear-gradient(to bottom right, #120000, #1a0000);
    border-left: 5px solid #800000;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
    position: relative;
    text-align: center;
    z-index: 1;
    transition: transform 0.3s ease;
}

blockquote:hover {
    transform: scale(1.02);
}

blockquote::before,
blockquote::after {
    font-family: 'Lora', serif;
    font-size: 60px;
    color: rgba(255, 0, 0, 0.15);
    position: absolute;
}

blockquote::before {
    content: '“';
    top: -20px;
    left: 20px;
}

blockquote::after {
    content: '”';
    bottom: -20px;
    right: 20px;
}

#navigation {
  position: relative;
  margin-top: 16px;
  text-align: center;
  background: none;
  box-shadow: none;
  padding: 6px 0;
}

#navigation::after {
  display: none; /* remove decorative elements */
}

#navigation a {
  position: relative;
  display: inline-block;
  margin: 0 18px;
  padding: 6px 0;
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px; /* bigger for emphasis */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff4d4d;
  text-decoration: none;
  transition: color 0.3s ease;
}

#navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4d4d, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

#navigation a:hover {
  color: #ff6666;
}

#navigation a:hover::after {
  transform: scaleX(1);
}

.content {
    opacity: 0.9;
    width: 85%;
    max-width: 900px;
    margin: -90px auto;
    padding: 20px 80px;
    text-align: justify;
    font-family: 'Lora', serif;
    color: #A7A7A7;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
}


.contentx {
    padding: 48px 40px;
    border-radius: 18px 18px 10px 10px;
    font-size: 21px;
    font-family: 'Lora', serif;
    color: #A7A7A7;
    text-align: justify;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.content a,
.content b,
.content i {
    background: linear-gradient(135deg, #ff3333, #b30000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contentx button {
    background: linear-gradient(135deg, #660000, #990000);
    border: 1.5px solid rgba(255, 0, 0, 0.5);
    color: #ff4d4d;
}

.contentx button:hover,
.contentx button:focus {
    background: linear-gradient(135deg, #b30000, #ff1a1a);
    color: #fff;
    border-color: rgba(255, 0, 0, 0.8);
}

#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 556px;
    width: 100%;
    margin-top: -4px;
}

textarea,
input,
select {
    width: 40%;
    max-width: 600px;
    padding: 14px 18px;
    margin: 12px 0;
    font-family: 'Lora', serif;
    font-size: 17px;
    color: #f5e6e6;
    background-color: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(150, 30, 30, 0.4); 
    border-radius: 10px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    caret-color: #d94a4a;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #b03030;
    background-color: rgba(20, 10, 10, 0.98);
    box-shadow: 0 0 8px rgba(179, 48, 48, 0.4);
}