@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Libre+Baskerville&family=Special+Elite&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    color: #222;
    font-family: "Georgia", serif;
    background-image: url('images/bg1.jpg');
    background-repeat:repeat;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 998;
    background: linear-gradient(135deg, rgba(255, 255, 180, 0.15), rgba(128, 145, 50, 0.15));
}


#header {
    background-image: url('images/head.jpg'),url('images/bg.jpg');
    background-repeat: no-repeat,repeat;
    background-position: center;
    height: 649px;
    width: 100%;
    top: 0px;
}

#nav-full {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(160deg, rgba(25, 45, 35, 0.95), rgba(10, 10, 18, 0.92));
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

#nav-full a {
    position: relative;
    margin: 0 12px;
    padding: 22px 32px;
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(245, 240, 230, 0.95);
    border-radius: 26px 10px 26px 10px;
    background: linear-gradient(135deg, rgba(30, 60, 40, 0.6), rgba(15, 15, 25, 0.95));
    border-left: 5px solid transparent;
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.03), 0 0 18px rgba(0, 0, 0, 0.5);
    transition: all 0.45s ease;
}

#nav-full a:nth-child(1) { border-left-color: rgba(255, 233, 77, 0.9); }
#nav-full a:nth-child(2) { border-left-color: rgba(255, 106, 223, 0.8); }
#nav-full a:nth-child(3) { border-left-color: rgba(109, 255, 156, 0.75); }
#nav-full a:nth-child(4) { border-left-color: rgba(125, 249, 255, 0.75); }
#nav-full a:nth-child(5) { border-left-color: rgba(255, 160, 90, 0.7); }
#nav-full a:nth-child(6) { border-left-color: rgba(180, 120, 255, 0.75); }

#nav-full a:hover {
    transform: translateX(10px);
    color: #ffe94d;
    background: linear-gradient(135deg, rgba(255, 233, 77, 0.14), rgba(255, 106, 223, 0.1), rgba(15, 15, 25, 0.95));
}

#main-content {
    width: 70%;
    margin: -30px auto;
    padding: 60px 50px;
    border-radius: 20px;
    color: #222;
    opacity: 0.65;
    line-height: 2.2;
    font-family: "Georgia", serif;
    font-size: 20px;
}

#main-content h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 56px;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    background: linear-gradient(135deg, #064e3b, #0d4f8b); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

#main-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60%;
    height: 8px;
    background: radial-gradient(circle, #064e3b 20%, #0d4f8b 50%, #064e3b 80%);
    border-radius: 4px;
}


#main-content a {
    color: #1a73e8;
    text-decoration: underline;
    font-weight: 600;
    position: relative;
    line-height: 2.2;
    font-family: "Georgia", serif;
    font-size: 20px;
}

#main-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #7df9ff, #ff6adf, #ffe94d);
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.35s ease;
}

#main-content a:hover { color: #ff6adf; }
#main-content a:hover::after { transform: scaleX(1); }

#main-content b, #main-content strong {
    color: #0c0d12;
    line-height: 2.2;
    font-family: "Georgia", serif;
    font-size: 20px;
    background: linear-gradient(120deg, #ffe94d, #ff6adf);
    padding: 4px 12px;
    border-radius: 14px 6px;
    box-shadow: 0 0 18px rgba(255, 106, 223, 0.45);
}

#main-content i, #main-content em {
    color: #1a73e8;
    line-height: 2.2;
    font-family: "Georgia", serif;
    font-size: 20px;
    background: rgba(135, 206, 250, 0.2);
    padding: 3px 10px;
    border-radius: 10px 4px;
    border-left: 4px solid rgba(30, 144, 255, 0.5);
}

blockquote {
    position: relative;
    margin: 80px auto;
    padding: 50px 60px 50px 70px;
    max-width: 720px;
    font-family: "Libre Baskerville", serif;
    font-size: 26px;
    line-height: 2.4;
    font-style: italic;
    color: #222;
    background: linear-gradient(165deg, rgba(255, 233, 77, 0.12), rgba(255, 106, 223, 0.08), rgba(250,250,250,0.95));
    border-left: 8px solid rgba(255, 233, 77, 0.95);
    border-radius: 36px 14px;
    backdrop-filter: blur(8px);
    overflow: hidden;
}

blockquote::before {
    content: "❝";
    position: absolute;
    top: -22px;
    left: 20px;
    font-size: 92px;
    color: rgba(255, 233, 77, 0.35);
    text-shadow: 0 0 20px rgba(255, 233, 77, 0.45), 0 0 36px rgba(255, 106, 223, 0.25);
}

#footer {
    margin: 130px auto 60px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.6);
}

#footer::before {
    content: "";
    display: block;
    margin: 0 auto 26px;
    width: 420px;
    height: 2px;
    background: radial-gradient(ellipse at center, #ffe94d, transparent 75%);
}

#footer::after {
    content: "🦖 ✦ 🦴 ✦ 🦖";
    display: block;
    margin-top: 16px;
    color: rgba(255, 233, 77, 0.7);
}

#footer a:link {
    color: #0c0d12;
    background: linear-gradient(135deg, rgba(255, 233, 77, 0.18), rgba(255, 106, 223, 0.12));
    border: 1px solid rgba(255, 233, 77, 0.45);
    box-shadow: 0 0 14px rgba(255, 233, 77, 0.35), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

#footer a:hover {
    color: #0c0d12;
    background: linear-gradient(135deg, #ffe94d, #ff6adf);
    box-shadow: 0 0 26px rgba(255, 233, 77, 0.55), 0 0 44px rgba(255, 106, 223, 0.4);
}

@media (max-width: 1024px) {
    #main-content {
        width: 85%;
        margin: 60px auto;
        padding: 50px 35px;
        font-size: 18px;
        line-height: 2;
    }

    #main-content h1 {
        font-size: 48px;
        margin-bottom: 50px;
    }

    #main-content h1::after {
        height: 5px;
        width: 55%;
    }
}

@media (max-width: 768px) {
    #main-content {
        width: 90%;
        margin: 50px auto;
        padding: 35px 25px;
        font-size: 16px;
        line-height: 1.9;
    }

    #main-content h1 {
        font-size: 38px;
        margin-bottom: 35px;
    }

    #main-content h1::after {
        height: 4px;
        width: 50%;
    }

    #nav-full {
        flex-wrap: wrap;
        padding: 40px 0;
    }

    #nav-full a {
        padding: 12px 18px;
        margin: 6px 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #main-content {
        width: 95%;
        margin: 40px auto;
        padding: 25px 15px;
        font-size: 15px;
        line-height: 1.8;
    }

    #main-content h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    #main-content h1::after {
        height: 3px;
        width: 45%;
    }

    #nav-full a {
        padding: 10px 14px;
        margin: 4px 6px;
        font-size: 12px;
    }
}

::-webkit-scrollbar {
    width: 16px; 
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 180, 0.1);
    border-radius: 12px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffe94d, #ff6adf); 
    border-radius: 12px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6adf, #ffe94d);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ff6adf rgba(255,255,180,0.1);
}


select, input, textarea {
    width: 56%;
    padding: 14px 20px;
    margin: 12px 0;
    font-family: "Georgia", serif;
    font-size: 18px;
    color: #222;
    background: #ffffff;
    border: 2px solid rgba(255, 233, 77, 0.4);
    border-radius: 16px 8px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
    outline: none;
}

select:hover, input:hover, textarea:hover,
select:focus, input:focus, textarea:focus {
    border-color: #ff6adf;
    box-shadow: inset 0 2px 12px rgba(255,106,223,0.2), 0 4px 16px rgba(255, 233, 77, 0.25);
    background: linear-gradient(135deg, rgba(255, 233, 77, 0.15), rgba(255, 106, 223, 0.1));
}

input::placeholder, textarea::placeholder {
    color: rgba(34, 34, 34, 0.5);
    font-style: italic;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ff6adf' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
    padding-right: 48px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

#linklist ul li {
    width: calc(45% - 15px);
    box-sizing: border-box;
    margin: 0;
    padding: 25px 50px;

 
    background: linear-gradient(
        160deg,
        rgba(255, 245, 180, 0.85),  
        rgba(128, 145, 50, 0.85)     
    );

    border-radius: 26px;
    text-align: center;

    font-style: italic;
    font-family: "Libre Baskerville", serif;

    color: #2c2c1f; 

    border: 1px solid rgba(128, 145, 50, 0.35);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.45),
        inset 0 0 16px rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#linklist ul li:hover {
    transform: translateY(-6px);
    color: #333300;
    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 0 30px rgba(255, 245, 180, 0.25),
        0 0 55px rgba(128, 145, 50, 0.15);
}

#linklist ul li::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(255, 245, 180, 0.15),
        transparent 70%
    );

    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#linklist ul li:hover::before {
    opacity: 1;
}
