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

body {
    background-color: #000000;
    background-image: url('premade/bg2.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    color: #ffffff;
}

#navigation {
    position: relative;
    width: 73%;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Tahoma', sans-serif;
    font-weight: 500;
    font-size: 12px;
    padding: 15px 23px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 38px; 
}

#navigation a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background-color: #A13C3B;
    padding: 9px 19px;
    border-radius: 9px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
}

#navigation a:hover {
    color: #ffffff;
    background-color: #802e2d;
    transform: translateY(-2px); 
    box-shadow: 0 5px 17px rgba(161, 60, 59, 0.35);
    opacity: 1;
}

#navigation a:active {
    transform: translateY(0);
}

#navigation i {
    font-family: 'FontAwesome';
    font-style: normal;
    color: inherit;
    font-size: inherit;
}

#header {
    position: relative;
    width: 1349px;
    max-width: 80%;
    height: 459px;
    margin: 0 auto;
    top: -10px;
    background-image: url('premade/raven.jpg'), url('premade/bg2.jpg');
    background-repeat: no-repeat, repeat;
    background-position: center;
}

#container {
    margin: 20px auto;
    position: relative;
    width: 77%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#container .box {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 300;
    font-size: 16px;
    background-color: #D3EEE7;
    text-align: justify;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #7EA49B;
    padding: 25px;
    border-radius: 6px;
}

.contentcontainer {
    padding: 25px;
    margin: 0 auto 25px auto;
    max-width: 1100px;
    line-height: 1.8;
    font-size: 15px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    text-align: justify;
    color: #cccccc;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

blockquote {
    background-color: #151515;
    border-right: 6px solid #A74A46;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: justify;
    color: #b0b0b0;
    font-style: italic;
    border-radius: 7px;
}

h1 {
    color: #A74A46;
    letter-spacing: 1px;
    font-family: 'Sedgwick Ave', cursive;
    font-size: 24px;
    padding: 15px 0;
}

a {
    text-decoration: none;
    color: #A13C3B;
    font-size: 15px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 1px 3px;
    transition: all 0.3s ease-out;
    border-radius: 4px;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
    text-decoration-color: #A13C3B;
}

a:hover {
    color: #AD918B;
    background-color: rgba(173, 145, 139, 0.08);
    opacity: 1;
    text-decoration-color: #AD918B;
}

b, strong {
    color: #c49e97;
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
    text-decoration-color: #c49e97;
}

i, em {
    color: #e0b8af;
    font-style: italic;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
    text-decoration-color: #e0b8af;
}

.contentcontainer form {
    display: flex;
    flex-direction: column;
    align-items: justify;
    gap: 15px;
    margin-top: 20px;
}

.contentcontainer input, 
.contentcontainer textarea, 
.contentcontainer select {
    width: 98%;
    background-color: #151515!important;
    border: 1px solid #A74A46;
    padding: 22px 28px;
    color: #e0b8af;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    border-radius: 24px; 
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.contentcontainer textarea {
    min-height: 120px; 
    resize: vertical;
    border-radius: 16px; 
}

.contentcontainer select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A74A46'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3csvg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.contentcontainer input:focus, 
.contentcontainer textarea:focus, 
.contentcontainer select:focus {
    border-color: #AD918B;
    background-color: #1a1a1a;
    box-shadow: 0 0 10px rgba(167, 74, 70, 0.3), inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

#footer {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 14px;
    padding: 30px 20px;
    line-height: 1.6;
    color: #ffffff;
}

#footer a:link, 
#footer a:visited, 
#footer a:hover {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #CC3333;
    text-decoration: none;
}

#footer {
    position: relative;
    background: transparent !important; /* Forces no background */
    font-family: 'Playfair Display', sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 13px;
    padding: 40px 20px;
    line-height: 1.8;
    color: #949494;
    letter-spacing: 1px;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0.85;
}

#footer p {
    margin: 0;
    padding: 0;
}

#footer a:link, 
#footer a:visited {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #CC3333;
    text-decoration: none;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: #CC3333;
    transition: all 0.3s ease-out;
}

#footer a:hover {
    color: #AD918B;
    text-decoration-color: #AD918B;
    opacity: 1;
}