html, body {
    height: 100%;
    margin: 0;
}

#footer { height:90px;}

body {
    background-color: #D2D2D2;
    font-family: 'Lora', serif;
    font-weight: 400!important;
    color: #d9c8a0;
    text-align: center;
    font-size: 19px;
    overflow-x: hidden;
}

#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 1000px;
    width: 100%;
    margin-top: -5px;
}

h1 {
    position: relative;
    display: inline-block;
    padding: 25px 60px;
    margin: 60px auto 30px;
    font-size: 36px;
    letter-spacing: 6px;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 900;
    border-radius: 16px;
    cursor: default;
    transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
    z-index: 0;
    color: #f28c42;
    background: linear-gradient(135deg, #f9f4e8, #f0e4d2);
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 8px 20px rgba(220, 170, 100, 0.25);
    border: 2px solid rgba(230, 183, 126, 0.7);
    overflow: hidden;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

h1::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fdf7ee, #f4e7d1);
    z-index: -2;
    filter: blur(8px);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

h1::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 20px;
    border: 2px dashed rgba(230, 140, 70, 0.3);
    z-index: -1;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    pointer-events: none;
}

h1 span {
    display: inline-block;
    background: linear-gradient(45deg, #f28c42, #e68a3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 2px rgba(180, 120, 70, 0.4), 0 3px 6px rgba(220, 170, 100, 0.2);
}

h1:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(230, 150, 80, 0.4);
}

h1:hover span {
    background: linear-gradient(45deg, #f7b76d, #f28c42);
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 23px;
    font-style: italic;
    padding: 30px 40px;
    margin: 40px auto;
    width: 70%;
    max-width: 700px;
    color: #5c4228;
    background: linear-gradient(to bottom right, #fdf7ef, #f4e6d2);
    border-left: 5px solid #e68a3f;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(220, 170, 110, 0.1);
    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(220, 150, 80, 0.15);
    position: absolute;
}

blockquote::before {
    content: '“';
    top: -20px;
    left: 20px;
}

blockquote::after {
    content: '”';
    bottom: -20px;
    right: 20px;
}

#navigation {
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0 60px;
    backdrop-filter: blur(12px);
    background: linear-gradient(to right, rgba(255, 248, 235, 0.95), rgba(255, 240, 210, 0.9));
    border-bottom: 1px solid rgba(220, 160, 100, 0.3);
    box-shadow: 0 8px 20px rgba(220, 160, 100, 0.08);
    text-align: center;
    z-index: 999;
    transition: background 0.4s ease, box-shadow 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 90%, 75% 83%, 60% 92%, 50% 86%, 40% 93%, 25% 85%, 10% 95%, 0 87%);
}

#navigation a {
    display: inline-block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #a85c1f;
    margin: 0 12px;
    padding: 16px 20px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    position: relative;
    text-shadow: 0 1px 1px rgba(255, 248, 235, 0.5);
    transition: all 0.4s ease;
}

#navigation a::before,
#navigation a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: #e6b77e;
    transition: width 0.3s ease;
}

#navigation a::after {
    bottom: 0;
    background: #d98a45;
}

#navigation a:hover::before,
#navigation a:hover::after {
    width: 70%;
}

#navigation a:hover {
    color: #f28c42;
    text-shadow: 0 0 4px rgba(220, 150, 80, 0.2);
}

.content {
    width: 60%;
    margin: -310px auto 80px;
    padding: 40px 65px 80px;
    text-align: justify;
    font-family: 'Lora', serif;
    color: #5c4428;
    line-height: 2.75;
    border-radius: 14px;
    background: #fdf7ef;
    position: relative;
    overflow: hidden;
    opacity: 0.7;margin-bottom:90px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.content:hover {
    box-shadow: 0 12px 40px rgba(210, 160, 90, 0.08);
}

.contentx {
    box-shadow: 0 8px 20px rgba(220, 180, 120, 0.05);
    color: #5c4428;
}

.contentx::before {
    background: radial-gradient(circle at top center, rgba(240, 220, 180, 0.4), rgba(250, 230, 200, 0.25), rgba(255, 245, 220, 0.15), rgba(250, 240, 220, 0.05));
}

.content a,
.content b,
.content i {
    background: linear-gradient(135deg, #e6b77e, #d98a45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contentx button {
    background: linear-gradient(135deg, #f4e1c0, #e8c69a);
    border: 1.5px solid rgba(180, 140, 90, 0.5);
    color: #5c4428;
}

.contentx button:hover,
.contentx button:focus {
    background: linear-gradient(135deg, #d98a45, #e6b77e);
    color: #fff;
    border-color: rgba(160, 120, 70, 0.8);
}