html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #E4E4E4;
    font-family: 'Playfair Display', serif!important;
    font-weight: 400!important;
    color: #2C2A28;
    text-align: center;
    overflow-x: hidden;
}

#navigation {
    position: relative;
    width: 90%;
    opacity:0.6;
    max-width: 900px;
    margin: 10px auto 70px auto;
    padding: 40px 20px;
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    text-align: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

#navigation a {
    display: inline-block;
    font-family: 'Pacifico', cursive;
    font-weight: 700;
    font-size: 24px;
    color: #5F4B4B;
    margin: 0 20px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

#navigation a::after {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    margin-top: 6px;
    border-radius: 2px;
    background: linear-gradient(90deg, #B89A8A 0%, #B89A8A 25%, #D7BBA2 50%, #B89A8A 75%, #B89A8A 100%);
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: center;
}

#navigation a:hover::after {
    transform: scaleX(1);
}

#header {
    background-image: url('images/head.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 450px;
    width: 100%;
    margin-top: -5px;
}

.contentcontainer a {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600!important;
    font-size: 16px;
    color: #6B4F4B;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.contentcontainer a:hover {
    color: #8C6F6A;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    background: linear-gradient(90deg, #D7BBA2, #B89A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

b, i {
    font-family: 'Handlee', cursive;
    font-size: 20px;
    font-weight: 400!important;
    color: #5F4B4B;
    text-shadow: 0 1px 1px rgba(255,255,255,0.4);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    background: linear-gradient(135deg, #D7BBA2, #B89A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

b:hover, i:hover {
    color: #8C6F6A;
    transform: scale(1.05);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

#container {
    margin: 100px auto;
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.contentcontainer {
    margin: 0 auto 60px auto;
    padding: 40px;
    opacity:0.6;
    font-family: 'Libre Baskerville', serif;
    font-weight: 500!important;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 1.3px;
    text-align: justify;
    color: #2C2A28;
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(230,220,210,0.2));
    border-radius: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    text-shadow: 0 0 2px #fff;
    transition: all 0.3s ease;
}

.contentcontainer:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

blockquote {
    background: linear-gradient(135deg, #F3E8DF, #E7DDD1);
    border-left: 8px solid #B89A8A;
    padding: 25px 35px;
    margin: 30px 0;
    font-style: italic;
    color: #3E3B38;
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 1px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05), inset 0 2px 5px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.3s ease;
}

blockquote::before {
    content: "“";
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    color: rgba(184, 154, 138, 0.4);
    position: absolute;
    top: 10px;
    left: 15px;
}

blockquote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08), inset 0 2px 6px rgba(0,0,0,0.03);
    background: linear-gradient(135deg, #F9F1E9, #E7DDD1);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #8F6E74;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    border-bottom: 2px solid #CBB8B0;
    padding-bottom: 12px;
    margin-bottom: 30px;
    background: linear-gradient(120deg, #D7C4B9, #EADDD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contentcontainer input,
.contentcontainer textarea,
.contentcontainer select {
    background: linear-gradient(145deg, #F5EDE7, #E7DCD2);
    border: 2px solid #B59E94;
    padding: 12px 16px;
    color: #5F4B4B;
    border-radius: 14px;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.05) inset;
}

.contentcontainer input:focus,
.contentcontainer textarea:focus,
.contentcontainer select:focus {
    outline: none;
    border-color: #8C6F6A;
    box-shadow: 0 0 14px rgba(172,150,150,0.3);
}

.contentcontainer textarea {
    min-height: 150px;
    resize: vertical;
}

#footer {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    color: #5F4B4B;
    letter-spacing: 1px;
    position: relative;
    margin-top: 80px;
}

#footer::before {
    content: "❦ ❧ ❦";
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
    color: #B89A8A;
    letter-spacing: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#footer a {
    color: #6B4F4B;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #8C6F6A;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

#footer span.ornament {
    font-size: 18px;
    margin: 0 6px;
    color: #B89A8A;
    opacity: 0.5;
}