html, body {
    height: 100%;
    margin: 0;
    background-color:#F7F7F7;
    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');

#header {
    background-image: url('images/halloween.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    width: 100%;
    margin-top: 0; 
    position: relative;
    z-index: 0; background-color:#E1E1E1;
}

a:link, a:visited {
    color: #FF7518;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 6px rgba(255, 117, 24, 0.4);
}

a:hover, a:focus {
    color: #ff9950;
    text-decoration: underline;
    text-shadow:
        0 0 10px #FF7518,
        0 0 18px #ff9950,
        0 0 25px #FF7518;
    cursor: pointer;
}

a:active {
    color: #cc4f00;
    text-shadow: none;
    transform: scale(0.98);
    transition: color 0.15s ease;
}

b {
    color: #2b1c0f;
    font-weight: 700;
    text-shadow:
        0 0 6px rgba(255, 117, 24, 0.4),
        0 0 12px rgba(255, 140, 50, 0.5);
    background: #E3DAC9;
    padding: 2px 6px;
    border-radius: 4px;
}

i {
    color: #cc4f00;
    font-style: italic;
    text-shadow:
        0 0 4px rgba(255, 117, 24, 0.3),
        1px 1px 2px rgba(0, 0, 0, 0.2);
    font-family: 'Lora', serif;
    font-size: 95%;
}

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; }

#navigation {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background: #E3DAC9;
    border-bottom: 6px solid #FF7518;
    display: flex;
    justify-content: center;
    gap: 60px;
    font-family: 'Metamorphous', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow:
        inset 0 -4px 6px rgba(60, 30, 10, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

#navigation a {
    color: #FF7518;
    text-decoration: none;
    position: relative;
    padding: 6px 12px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

#navigation a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #FF7518;
    transition: width 0.3s;
    margin: 4px auto 0;
}

#navigation a:hover {
    color: #cc4f00;
    text-shadow: 0 0 10px rgba(255, 117, 24, 0.7);
}

#navigation a:hover::after {
    width: 100%;
}

blockquote {
    font-family: 'Lora', serif;
    font-size: 26px;
    color: #2b1c0f;
    background: #E3DAC9;
    padding: 30px 40px;
    margin: 40px auto;
    border-left: 8px solid #FF7518;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(60, 30, 10, 0.15), 
                0 0 10px rgba(255, 117, 24, 0.1);
    max-width: 800px;
    position: relative;
    line-height: 1.8;
    text-shadow: 0 0 3px rgba(255, 117, 24, 0.2);
}

textarea,
input,
select {
    width: 100%;
    max-width: 600px;
    padding: 14px 18px;
    margin: 12px 0;
    font-family: 'Spectral', serif;
    font-size: 17px;
    color: #2b1c0f;
    background: #E3DAC9;
    border: 2px solid #FF7518;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(60, 30, 10, 0.05),
                0 0 6px rgba(255, 117, 24, 0.15);
    transition: all 0.3s ease;
    caret-color: #FF7518;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #cc4f00;
    background-color: #fff8f0;
    box-shadow:
        0 0 15px rgba(255, 117, 24, 0.4),
        inset 0 0 4px rgba(60, 30, 10, 0.1),
        0 0 30px rgba(255, 117, 24, 0.1);
    color: #2b1c0f;
}

#content {
    margin: 20px auto;
    width: 60%;
    position: relative;
    padding-bottom: 80px;
}

.contentx {
    padding-bottom: 70px;
    margin: 0 0 130px;
    padding: 25px;
    font-size: 18px;
    font-family: 'Lora', serif;
    font-weight: 500;
    text-align: justify;
    color: #2b1c0f;
    line-height: 35px;
    letter-spacing: 1.5px;
    opacity: 0.85;
}
