#header {
    background-image: url('images/winter.jpg'),url('images/winterbg1.jpg');
    background-repeat: no-repeat,repeat-x;
    background-position: center;
    height: 822px;
    width: 100%;
    top: 0px;
}

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

* {
    box-sizing: border-box;
}

html, body {
    color: #2f557d;
    background-image: url('images/winterbg.jpg');
    background-repeat: repeat;
}

b, strong {
    color: #ffffff;
    background: linear-gradient(120deg, #a9d3e3, #c2e0f0);
    box-shadow: 0 2px 6px rgba(180, 210, 230, 0.3);
}

i, em {
    color: #e0f4fb;
    background: rgba(180, 210, 230, 0.25);
    padding: 2px 6px;
    border-radius: 6px;
}

#layout-container {
    display: flex;
    margin-top: -120px;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 60px;
    position: relative;
    z-index: 5;
    opacity: 0.8;
}

#navigation {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 300px;
    padding: 44px 42px;
    background:
        linear-gradient(160deg, rgba(121, 167, 187, 0.75), rgba(112, 160, 188, 0.85)),
        radial-gradient(circle at top right, rgba(121, 167, 187, 0.6), transparent 60%);
    border-radius: 28px;
    border: 2px solid rgba(112, 160, 188, 0.25);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        0 15px 40px rgba(112, 160, 188, 0.25);
    backdrop-filter: blur(8px);
}

#navigation a {
    position: relative;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(121, 167, 187, 0.65), rgba(112, 160, 188, 0.6));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 10px rgba(112, 160, 188, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.45s ease;
}

#navigation a:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(121, 167, 187, 0.85), rgba(112, 160, 188, 0.85));
    box-shadow: 0 8px 22px rgba(121, 167, 187, 0.35);
}

#navigation a.active {
    background: linear-gradient(160deg, #79A7BB, #70A0BC);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 26px rgba(112, 160, 188, 0.45);
}

#content {
    width: 100%;
    max-width: 1050px;
}

.contentx {
    margin: 0 auto 90px;
    padding: 50px 55px;
    font-size: 22px;
    line-height: 1.95;
    text-align: justify;
    color: #ffffff;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #d6f0fa, #ffffff, #a9d3e3, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    border-radius: 24px;
    padding: 12px 20px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 16px rgba(214, 240, 250, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 120px;
    height: 4px;
    transform: translateX(-50%);
    background: linear-gradient(to right, #ffffff, #d6f0fa, #79A7BB, #70A0BC, #ffffff);
    opacity: 0.9;
    border-radius: 2px;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


blockquote {
    margin: 70px auto;
    padding: 48px 72px;
    max-width: 640px;
    background: linear-gradient(160deg, rgba(121, 167, 187, 0.2), rgba(112, 160, 188, 0.15));
    border-left: 8px solid #79A7BB;
    border-radius: 32px 8px 32px 8px;
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(112, 160, 188, 0.3);
    position: relative;
    opacity: 0.9;
}

blockquote::before {
    content: "“";
    font-size: 64px;
    position: absolute;
    top: -24px;
    left: 20px;
    color: rgba(121, 167, 187, 0.35);
    font-family: 'Great Vibes', cursive;
}

.contentx a {
    color: #d6f0fa;
    text-decoration: none;
    position: relative;
    font-weight: 500;
}

.contentx a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #d6f0fa, #ffffff);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.contentx a:hover::after {
    transform: scaleX(1);
}

.contentx a:hover {
    color: #ffffff;
}

textarea,
input,
select {
    width: 40%;
    padding: 1.9rem 1rem;
    background: rgba(121, 167, 187, 0.15);
    border: 0.08rem solid rgba(112, 160, 188, 0.35);
    border-radius: 6rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    box-shadow: inset 0 1px 3px rgba(112, 160, 188, 0.2);
    transition: all 0.3s ease;
}

textarea:focus,
input:focus,
select:focus {
    box-shadow: 0 0 1rem rgba(121, 167, 187, 0.5);
    outline: none;
}

#footer {
    position: relative;
    margin: 120px auto 60px;
    padding: 40px 20px 30px;
    text-align: center;
    color: #e0f4fb;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 420px;
    height: 2px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, #d6f0fa, #c2e0f0, transparent 75%);
}

#footer::after {
    content: "❦   ❦";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    letter-spacing: 24px;
    color: rgba(214, 240, 250, 0.6);
}

#footer a {
    color: #d6f0fa;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.35s ease;
}

#footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #d6f0fa, #ffffff);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.35s ease;
}

#footer a:hover {
    color: #ffffff;
}

#footer a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    #layout-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 20px;
    }

    #navigation {
        min-width: 90%;
        padding: 30px 24px;
    }

    #navigation a {
        font-size: 11px;
        padding: 14px 20px;
    }

    .contentx {
        padding: 30px 25px;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 60px;
    }

    textarea,
    input,
    select {
        width: 80%;
    }

    h1 {
        font-size: 36px;
        padding: 6px 12px;
    }

    blockquote {
        padding: 30px 40px;
        font-size: 18px;
        max-width: 90%;
    }

    b, strong {
        font-size: 20px;
        padding: 4px 10px;
    }

    i, em {
        font-size: 16px;
        padding: 1px 4px;
    }

    #footer {
        font-size: 12px;
        padding: 30px 10px 20px;
    }

    #footer a {
        font-size: 12px;
    }
}
