#header {
    background-image: url('images/head.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 933px;
    width: 100%;
    position: relative;
    z-index: 0;
    top: 0px;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Libre+Baskerville&family=Special+Elite&display=swap');

body {
    background: linear-gradient(
        160deg,
        #1a0b2e,
        #2a0f45,
        #3b1563
    );
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'Libre Baskerville', serif;
    color: #e6dcff;
    overflow-x: hidden;
    padding-top: 120px;
}

html::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        linear-gradient(
            180deg,
            rgba(181, 140, 255, 0.16) 0%,
            rgba(125, 76, 255, 0.22) 45%,
            rgba(26, 11, 46, 0.45) 100%
        ),
        radial-gradient(
            at 15% 12%,
            rgba(215, 191, 255, 0.22),
            transparent 60%
        ),
        radial-gradient(
            at 85% 85%,
            rgba(125, 76, 255, 0.28),
            transparent 65%
        );
}


#navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(26, 11, 46, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(181, 140, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    z-index: 1000;
}

#navigation a {
    margin: 0 22px;
    padding: 10px 6px;
    font-size: 15px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #d7bfff;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

#navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        #7d4cff,
        #b58cff
    );
    transform: translateX(-50%);
    transition: width 0.25s ease;
    border-radius: 2px;
}

#navigation a:hover {
    color: #ffffff;
}

#navigation a:hover::after {
    width: 100%;
}

#navigation a.active {
    color: #ffffff;
}

#navigation a.active::after {
    width: 100%;
}


#layout-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

#content {
    width: 80%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 70px;
}


.contentx {
    width: 100%;
    max-width: 1020px;
    margin: 0px auto 90px auto;
    padding: 52px 58px;
    border-radius: 70px 45px 65px 40px;
    font-size: 22px;
    line-height: 1.95;
    text-align: justify;
    color: #f0eaff;
    background: linear-gradient(
        160deg,
        #2a0f45,
        #3b1563
    );
    box-shadow:
        inset 0 0 0 1px rgba(181, 140, 255, 0.25),
        0 25px 60px rgba(0, 0, 0, 0.7);
    opacity: 0.72;
}


blockquote {
    margin: 90px auto;
    padding: 28px 42px;
    max-width: 640px;
    background: rgba(42, 15, 69, 0.9);
    border-left: 5px solid #b58cff;
    border-radius: 14px;
    font-size: 24px;
    line-height: 1.6;
    color: #efe7ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 46px;
    font-weight: 400;
    text-align: center;
    color: #d7bfff;
    margin: 40px auto 70px;
    line-height: 1.25;
}

h1::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(
        to right,
        rgba(181, 140, 255, 0),
        rgba(181, 140, 255, 0.8),
        rgba(125, 76, 255, 0.8),
        rgba(181, 140, 255, 0)
    );
    border-radius: 4px;
}

h1:hover {
    color: #ffffff;
}


textarea,
input,
select {
    width: 40%;
    max-width: 650px;
    padding: 20px 26px;
    margin: 32px 0;
    background: linear-gradient(
        to right,
        #2a0f45,
        #3b1563
    );
    border-radius: 36px;
    border: 1px solid rgba(181, 140, 255, 0.35);
    font-size: 17px;
    color: #f0eaff;
}

textarea:focus,
input:focus,
select:focus {
    box-shadow: 0 0 25px rgba(181, 140, 255, 0.7);
    outline: none;
}


a {
    font-size: 25px;
    color: #b58cff;
    text-decoration: none;
    position: relative;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        to right,
        #7d4cff,
        #d7bfff
    );
    border-radius: 6px;
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.25s ease;
}

a:hover::after {
    transform: scaleX(1);
}


i,
em {
    color: #d7bfff;
    background: rgba(181, 140, 255, 0.15);
    padding: 2px 6px;
    border-radius: 6px;
}

b,
strong {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 18px;
    background: linear-gradient(
        to right,
        #7d4cff,
        #b58cff
    );
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
