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

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Libre+Baskerville&family=Special+Elite&display=swap');

body {
    background: #D7D7D7;
    margin: 0;
    padding: 0;
    font-family: 'Libre Baskerville', serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

#navigation {
    width: 61%;
    margin: -10px auto 60px;
    padding: 28px 40px;
    font-family: 'Cinzel Decorative', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.4) 8px,
        rgba(240, 240, 240, 0.3) 8px,
        rgba(240, 240, 240, 0.3) 16px
    );
    backdrop-filter: blur(10px);
    border-radius: 48px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: 0.3s ease-in-out;
}

#navigation a {
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: 'Special Elite', serif;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

#navigation a:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: scale(1.05);
}

#layout-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    margin-top: 40px;
}

#content {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(6px);
}

.contentx { background-image:url(images/cont.png);
    background-repeat:no-repeat;
    margin-bottom: 60px;
    padding: 35px;
    text-align: justify;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 1px;
    border-radius: 16px;

    background-color:#D6D3D3;

    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    color: #1c1c1c;
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #2F2F2F;
    background: rgba(255, 255, 255, 0.4);
    padding: 40px 50px;
    margin: 60px auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    position: relative;
    line-height: 1.85;
    letter-spacing: 0.8px;
    text-align: center;
}

textarea,
input,
select {
    width: 40%;
    max-width: 600px;
    padding: 16px 20px;
    margin: 20px 0;
    font-family: 'Special Elite', serif;
    font-size: 16px;
    color: #2a2a2a;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.03);
    transition: 0.3s ease-in-out;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.55);
}

h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: #111;
    margin: 80px auto 40px;
    padding: 20px 40px;
    max-width: 800px;

    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);

    text-shadow: 1px 1px 0 #fff,
                 2px 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

h1, #navigation {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#footer {
    font-family: 'Special Elite', serif;
    font-size: 14px;
    color: #444;
    text-align: center;
    padding: 60px 25px;
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#footer a,
a {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

a:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

i, em {
    color: #2c2c2c;
    font-style: italic;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 5px;
    border-radius: 4px;
}

b, strong {
    color: #111;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.04);
}
