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

body {
    background-color:#13100E;
    color: #f2e9e4;
}

#header {
    background-image: url('images/halloweenhead.jpg'),url('images/halloweenbg1.jpg');
    background-repeat: no-repeat,repeat-x;
    background-position: center;
    height: 845px;
    width: 100%;
    margin-top: -4px;
}

.footer-spacer {
  height: 90px;
}


#navigation {
    width: 90%;
    margin-top: 20px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(20, 10, 0, 0.9), rgba(40, 20, 10, 0.9));
    border-top: 10px solid #ff9800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    text-align: center;
    font-family: 'Tahoma', sans-serif;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 18px;
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 0.85; }
}

#navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #ffeeba;
    background: linear-gradient(145deg, #ff6f00, #d84315);
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.6), inset 0 0 12px rgba(255, 165, 0, 0.25);
    position: relative;
    overflow: hidden;
}

#navigation a:hover {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.5);
    color: #fffbe9;
}

#navigation a:active {
    transform: scale(0.95);
    background: linear-gradient(to right, #4a1a00, #2c0d00);
    color: #ffcc80;
}

#content {
    margin: -230px auto 100px auto;
    width: 65%;
    position: relative;
    float: center;
}

.contentx {
    margin: 0 0 50px;
    padding: 25px;
    font-size: 16px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 500;
    text-align: justify;
    color: #fff7e6;
    line-height: 25px;
    letter-spacing: 1.5px;
    border-radius: 30px;
    background: rgba(50, 20, 0, 0.4);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 140, 0, 0.4);
    opacity: 0.75;
}

h1 {
    background: linear-gradient(145deg, #2c0d00, #3b1a00);
    color: #ffb74d;
    border-left: 6px solid #ff9800;
    opacity: 0.95;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    z-index: 1;
    overflow: hidden;
}

h1::before {
    content: '🦇 ';
    font-size: 1.8rem;
    color: #ffeb3b;
}

h1::after {
    content: ' 🎃';
    font-size: 1.8rem;
    color: #ff9800;
}

a {
    color: #ffd180;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ffb74d, #ff9800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

a:hover::after {
    transform: scaleX(1);
}

a:hover {
    color: #fff9c4;
    text-shadow: 0 0 8px rgba(255, 200, 0, 0.4);
    transform: scale(1.05);
}

b, strong {
    background: linear-gradient(to right, #ff9800, #e65100);
    color: #fff3e0;
    padding: 3px 6px;
    font-family: 'Libre Baskerville', serif;
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(255, 200, 0, 0.3);
}

i, em {
    font-style: italic;
    background-color: rgba(60, 20, 0, 0.6);
    border-left: 3px solid #ffb300;
    color: #ffe082;
    padding: 2px 10px;
    margin: 0 2px;
    border-radius: 4px;
    font-family: 'Libre Baskerville', serif;
}

blockquote {
    position: relative;
    background: linear-gradient(145deg, rgba(40, 15, 0, 0.9), rgba(60, 25, 0, 0.9));
    border-left: 6px solid #ff9800;
    color: #ffecb3;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 12px;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    font-family: 'Libre Baskerville', serif;
}

input, select, textarea {
    opacity: 0.8;
    width: 40%;
    padding: 14px 18px;
    margin: 10px 0;
    font-size: 1rem;
    font-family: 'Libre Baskerville', serif;
    color: #fffde7;
    background: rgba(30, 10, 0, 0.9);
    border: 2px solid #ff6f00;
    border-radius: 12px;
    outline: none;
    box-shadow: inset 0 0 12px rgba(255, 165, 0, 0.2), 0 4px 14px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

input:focus, select:focus, textarea:focus {
    border-color: #ffca28;
    background: rgba(50, 20, 0, 0.95);
    color: #fffde7;
}

button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff8e1;
    background: linear-gradient(to right, #ff6f00, #f57c00);
    border: 2px solid #ffb74d;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Libre Baskerville', serif;
}

button:hover {
    background: linear-gradient(to right, #ff9800, #ffb300);
    color: #212121;
    box-shadow: 0 6px 16px rgba(255, 200, 0, 0.4);
    transform: translateY(-2px);
}

