@import url('https://fonts.googleapis.com/css2?family=Baloo+2&family=Comic+Neue:ital,wght@0,400;1,700&family=Fredoka:wght@500&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Comic Neue', cursive;
    background-color:#000000;
}

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

a:link {
    color: #eeeeee;
    background-color: transparent;
    border-bottom: 1px dotted #5c0a0a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:visited {
    color: #bbbbbb;
    border-bottom: 1px dotted #732020;
}

a:hover {
    color: #ffffff;
    border-bottom: 1px solid #8b0000;
    text-shadow: 0 0 6px rgba(139, 0, 0, 0.4);
}

a:active {
    color: #ff4d4d;
    border-bottom: 1px solid #a60000;
}

#navigation { opacity:0.6;
    width: 55%;
    margin: -30px auto 0;
    padding: 40px 24px;
    background: linear-gradient(to bottom, #111111, #1c1c1c);
    border-top: 3px solid #5c0a0a;
    border-bottom: 2px dashed #732020;
    box-shadow: 0 0 12px rgba(92, 10, 10, 0.25);
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    border-radius: 0 0 40px 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

#navigation a {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #eeeeee;
    background: #1e1e1e;
    border: 1px solid #5c0a0a;
    border-radius: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

#navigation a:hover {
    background: #5c0a0a;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(92, 10, 10, 0.3);
}

#navigation a:active {
    transform: scale(0.98);
    background-color: #732020;
    box-shadow: inset 0 0 4px rgba(92, 10, 10, 0.2);
}

#content {
    margin: 30px auto;
    width: 65%;
    font-family: 'Libre Baskerville', cursive;
}

.contentx {
    padding: 24px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
    border-radius: 15px;
    text-align: justify;
    color: #dddddd;
    opacity:0.7;
}

h1 {
    font-family: 'Baloo 2', cursive; opacity:0.6;
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    max-width: 600px;
    margin: 40px auto 20px;
    background: linear-gradient(to right, #8b0000, #5c0a0a, #8b0000);
    padding: 14px 24px;
    border-radius: 24px;
    box-shadow:
        0 0 10px rgba(139, 0, 0, 0.5),
        inset 0 0 5px rgba(255, 0, 0, 0.1);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    animation: floatTitle 6s ease-in-out infinite;
}

h1::after {
    content: "";
    display: block;
    width: 50px;
    height: 6px;
    margin: 10px auto 0;
    background: linear-gradient(to right, #8b0000, #5c0a0a);
    clip-path: polygon(
        0 0, 10% 100%, 20% 20%, 30% 100%, 
        40% 30%, 50% 100%, 60% 30%, 70% 100%, 
        80% 20%, 90% 100%, 100% 0
    );
    opacity: 0.35;
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #dddddd;
    background: linear-gradient(to bottom, #1a1a1a, #121212);
    padding: 36px 40px;
    margin: 40px auto;
    max-width: 800px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    position: relative;
    border-left: 6px solid #5c0a0a;
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(92, 10, 10, 0.25),
        inset 0 0 10px rgba(139, 0, 0, 0.05);
    transition: all 0.3s ease;
}

blockquote::before {
    content: "“";
    font-size: 64px;
    color: #732020;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
    font-family: 'Georgia', serif;
    z-index: 0;
}

blockquote::after {
    content: "”";
    font-size: 64px;
    color: #732020;
    position: absolute;
    bottom: -30px;
    right: 20px;
    opacity: 0.2;
    font-family: 'Georgia', serif;
    z-index: 0;
}

blockquote::after {
    content: "";
    display: block;
    width: 60px;
    height: 8px;
    margin: 20px auto 0;
    background: linear-gradient(to right, #5c0a0a, #8b0000);
    clip-path: polygon(
        0 0, 10% 100%, 20% 20%, 30% 100%,
        40% 30%, 50% 100%, 60% 30%, 70% 100%,
        80% 20%, 90% 100%, 100% 0
    );
    opacity: 0.4;
}




textarea, input, select {
    width: 100%;
    max-width: 600px;
    padding: 12px 18px;
    margin: 16px 0;
    font-family: 'Comic Neue', cursive;
    font-size: 16px;
    color: #eeeeee;
    background: #2a2a2a;
    border: 1px solid #5c0a0a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

textarea:focus, input:focus, select:focus {
    outline: none;
    background-color: #333;
    border-color: #8b1f1f;
    box-shadow: 0 0 6px rgba(92, 10, 10, 0.4);
}

#footer {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(to top, #1e1e1e, #111);
    color: #aaaaaa;
    text-align: center;
    padding: 50px 20px;
    margin-top: 70px;
    border-top: 3px dashed #5c0a0a;
    clip-path: polygon(0 50px, 10% 40px, 20% 50px, 30% 45px, 40% 55px, 50% 50px, 60% 60px, 70% 50px, 80% 55px, 90% 50px, 100% 60px, 100% 100%, 0% 100%);
}

#footer a {
    color: #bbbbbb;
    text-decoration: none;
    border-bottom: 1px dashed #732020;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 4px rgba(211, 47, 47, 0.4);
    transform: scale(1.03);
}

b, strong {
    color: #fff;
    background-color: #732020;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}