#header {
    background-image: url('images/head.jpg'),url('images/bg1.jpg');
    background-repeat: no-repeat,repeat-x;
    background-position: center;
    height: 916px;
    width: 100%;
    position: relative;
    z-index: 0;
}


body {
    background-image: url('images/bg.jpg');
    background-repeat: repeat;
    margin: 0;
    padding: 0;
    font-family: 'Libre Baskerville', serif;
    color: #7a3e3e;
}

#navigation {
    width: 61%;
    margin: 30px auto 60px auto;
    padding: 22px 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #ffd6cc, #ffc2b3);
    border-radius: 60px;
    box-shadow:
        0 15px 40px rgba(200, 80, 80, 0.35),
        0 5px 15px rgba(255, 160, 140, 0.25);
    position: relative;
    z-index: 5;opacity:0.7;
}

#navigation::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -1;
    background: radial-gradient(circle, rgba(255,160,140,0.4), transparent 70%);
    filter: blur(35px);
    border-radius: 80px;
}

#navigation a {
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ffb3a7, #ff8f8f); 
    color: #7a1f1f;
    transition: 0.3s ease;
    box-shadow: 0 5px 12px rgba(120,0,0,0.15);
}

#navigation a:hover {
    background: linear-gradient(90deg, #ff7a7a, #cc1f1f); 
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(150,0,0,0.25);
}


#content {
    position: relative;
    margin-top: -390px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,200,190,0.3), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255,150,150,0.3), transparent 60%),
        linear-gradient(180deg, #fff4f1cc, #ffe9e3cc);
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 50px rgba(200,80,80,0.2);
    border-radius: 24px;
    opacity: 0.7;
}

.contentx {
    text-align: justify;
    font-size: 21px;
    line-height: 1.9;
    letter-spacing: 0.6px;
    margin: 100px 0;
    padding: 0 80px;
    color: #7a3e3e;
}


h1 {
    position: relative;
    display: inline-block;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 4px;
    margin: 60px auto 40px auto;
    padding: 30px 70px;
    text-align: center;
    background: linear-gradient(135deg, #ffcfc2, #ffb3a7);
    border-radius: 100px;
    color: #8b0000;     opacity: 0.7;
    box-shadow:
        0 15px 40px rgba(200,80,80,0.3),
        inset 0 0 0 2px rgba(255,255,255,0.6);
}



a {
    font-weight: 600;
    font-size: 19px;
    color: #b22222;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #ff8f8f,
        #ff8f8f 6px,
        #cc1f1f 6px,
        #cc1f1f 12px
    );
    transition: 0.4s ease;
    border-radius: 4px;
}

a:hover::after {
    width: 100%;
}


blockquote {
    max-width: 900px;
    margin: 70px auto;
    padding: 48px 64px;
    font-size: 22px;
    line-height: 1.9;
    color: #7a3e3e;    opacity: 0.7;
    background: linear-gradient(180deg, #fff0ec, #ffe4dc);
    border-left: 5px solid #cc1f1f;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(200,80,80,0.25);
}



b, strong {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #8b0000;
    position: relative;
    padding: 0 6px;
    text-shadow:
        0 0 6px rgba(200, 50, 50, 0.25),
        0 2px 4px rgba(120, 0, 0, 0.15);
}
b::after,
strong::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: -4px;
    width: 80%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #ffb3a7,
        #cc1f1f,
        #ffb3a7,
        transparent
    );
    border-radius: 4px;
    opacity: 0.6;
}

i, em {
    font-family: 'Cinzel Decorative', serif;
    font-style: italic;
    color: #b22222;
    position: relative;
    padding-left: 24px;
    text-shadow: 0 0 6px rgba(200,50,50,0.2);
}

i::before,
em::before {
    content: "❦";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    font-size: 0.9em;
    color: #cc1f1f;
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(255,120,120,0.4);
}

b:hover, strong:hover,
i:hover, em:hover {
    color: #cc1f1f;
    text-shadow:
        0 0 10px rgba(200, 0, 0, 0.4),
        0 0 20px rgba(255, 120, 120, 0.4);
    transition: 0.3s ease;
}

textarea,
input,
select {
    width: 40%;
    max-width: 500px;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 16px;
    color: #7a3e3e;
    background: #fff0ec;
    border: 2px solid #ffb3a7;
    border-radius: 14px;
    transition: 0.3s ease;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: #cc1f1f;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(200,50,50,0.4);
}


#footer {
    font-size: 19px;
    color: #8b5a5a;
    text-align: center;
    padding: 60px 25px 40px;
    margin-top: 80px;    opacity: 0.7;
}    

#footer a:link {
    font-weight: 600; opacity: 0.7;
    font-size: 18px;
    color: #b22222; 
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    background: linear-gradient(90deg, #ffd6cc, #ffb3a7);
    box-shadow: 0 5px 12px rgba(200,80,80,0.2);
    transition: 0.3s ease;
    display: inline-block;
}

#footer a:visited {
    color: #8b0000;
}

#footer a:hover {
    background: linear-gradient(90deg, #ff8f8f, #cc1f1f);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(150,0,0,0.25);
}

#footer a:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(150,0,0,0.2);
}