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

body {
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
    background:
        radial-gradient(circle at bottom, rgba(255,182,193,0.25), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fff7fa 40%, #ffeef4 70%, #ffe4ec 100%);
    color: #5a4a52;
    overflow-x: hidden;
}

#navigation {
    width: 100%;
    padding: 42px 30px;
    background:
        linear-gradient(160deg, #ffffff, #ffeef4);
    box-shadow:
        0 4px 20px rgba(255,182,193,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

#navigation a {
    position: relative;
    font-family: 'Lora', serif;
    font-size: 17px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d98ca0;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

#navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #ffb6c1,
        #ffc0cb,
        transparent
    );

    transform: translateX(-50%);
    transition: width 0.35s ease;
    border-radius: 2px;
}

#navigation a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 6px;

    background: rgba(255,182,193,0.25);
    filter: blur(6px);

    transform: translateX(-50%);
    transition: width 0.35s ease;
}

#navigation a:hover::after,
#navigation a:hover::before {
    width: 80%;
}

#navigation a:hover {
    color: #ffb6c1;
    opacity: 1;
}

.nav-ornament::before {
    content: "✦ ❖ ✶ ❖ ✦";
    color: rgba(255,182,193,0.5);
}

#content {
    width: 70%;
    max-width: 1100px;
    margin: 90px auto;
    padding: 0 60px;
}

.contentx {
    font-size: 19px;
    line-height: 1.75;
    letter-spacing: 1px;
    color: #5a4a52;
    opacity: 0.95;
}

.contentx h1 {
    margin: 60px auto 30px auto;
    padding: 18px 30px;
    font-size: 28px;
    font-family: 'Cinzel Decorative', serif;
    text-align: center;
    max-width: 500px;

    color: #c06080;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(255,182,193,0.25),
        0 2px 6px rgba(255,182,193,0.2);

    position: relative;
    letter-spacing: 2px;

    transition: all 0.3s ease;
}


.contentx h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin: 12px auto 0;
    background: linear-gradient(to right, transparent, #ffb6c1, transparent);
    opacity: 0.8;
}

.contentx h1:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 35px rgba(255,182,193,0.35),
        0 4px 10px rgba(255,182,193,0.25);
}

.contentx h2 {
    margin: 40px auto 20px auto;
    padding: 8px 18px;
    font-size: 20px;
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 2px;
    text-align: center;
    color: #d98ca0;
    background: linear-gradient(135deg, #fff0f5, #ffe4ec);
    border-radius: 20% 10% 20% 10% / 15% 30% 15% 30%;
    box-shadow:
        0 2px 8px rgba(255,182,193,0.2);
    opacity: 0.95;
}

a {
    color: #d98ca0;
}

a:hover {
    color: #ffb6c1;
}

blockquote {
    border-left: 3px solid rgba(255,182,193,0.6);
    background: rgba(255,240,245,0.6);
    color: #6b5a63;
}

b, strong {
    color: #c06080;
}

i, em {
    color: #b07a8c;
}

input,
textarea,
select {
    width: 40%;
    padding: 14px 18px;
    font-family: 'Lora', serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #5a4a52;
    background: #fff;
    border: 1px solid rgba(255,182,193,0.4);
    border-radius: 6px;
    box-shadow:
        0 2px 6px rgba(255,182,193,0.2);
    transition: all 0.25s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 1px solid #ffb6c1;
    box-shadow:
        0 0 8px rgba(255,182,193,0.4);
}

::placeholder {
    color: rgba(200,150,160,0.6);
    font-style: italic;
}

#footer {
    margin-top: 50px;
    padding: 20px 20px 50px;
    text-align: center;
    font-family: 'Lora', serif;
    letter-spacing: 2px;
    color: #a07a88;
    background:
        radial-gradient(circle at top, rgba(255,182,193,0.25), transparent 70%),
        linear-gradient(180deg, #fff7fa 0%, #ffeef4 60%, #ffe4ec 100%);
    border-top: 1px solid rgba(255,182,193,0.3);
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    margin: 0 auto 25px;

    background: linear-gradient(
        to right,
        transparent,
        #ffb6c1,
        transparent
    );

    opacity: 0.8;
}

#footer::after {
    content: "✧ ✦ ✧";
    display: block;
    margin-top: 20px;
    letter-spacing: 10px;
    font-size: 14px;
    color: rgba(255,182,193,0.5);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    margin-top: 18px;
}

.footer-links a {
    margin: 0 12px;
    color: #d98ca0;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #ffb6c1;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 70%;
}

.footer-links a:hover {
    color: #ffb6c1;
}

.footer-small {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.6;
    letter-spacing: 1px;
}