#header {
    background-image: url('images/cats.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 477px;
    width: 100%;
    margin-top:-4px;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url('images/catsbg.jpg');
    background-repeat: repeat;
    font-family: 'Lora', serif;
    font-weight: 400 !important;
    color: #ddd;
    text-align: center;
    font-size: 14px;
    overflow-x: hidden;
}

#navigation { opacity:0.6;
    width: 60%;
    margin: 0 auto 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #0d0b19, #1a1a3d 90%);
    border-radius: 24px;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    position: relative;
}

#navigation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(61, 174, 233, 0.1), transparent 70%);
    mix-blend-mode: screen;
}

#navigation a {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #7ecfff;
    margin: 0 12px;          
    padding: 10px 18px;    
    border-radius: 16px;
    background: rgba(61, 174, 233, 0.1);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

#navigation a:hover,
#navigation a:focus {
    background: rgba(61, 174, 233, 0.35);
    color: #d0f0ff;
    transform: scale(1.1);
}

h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 60px auto 30px;
    padding: 20px 40px;
    color: #fff;
    background: linear-gradient(135deg, #0a4e8c, #3daee9); 
    border-radius: 18px;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.9),
        inset 0 0 8px rgba(61, 174, 233, 0.4);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;opacity:0.7;
}

h1:hover {
    transform: scale(1.03);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 1),
        inset 0 0 12px rgba(61, 174, 233, 0.6);
}

.content {
    width: 60%;
    margin: -40px auto;
    padding: 0 25px;
    text-align: justify;
    font-family: 'Lora', serif;
    color: #ddd;
    line-height: 1.75;
    border-radius: 14px;
    transition: box-shadow 0.3s ease;
}

.contentx { opacity:0.6;
    padding: 48px 40px 48px 40px;
    border-radius: 18px 18px 10px 10px;
    font-size: 19px;
    font-family: 'Lora', serif;
    color: #ccc; 
    text-align: justify;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}
.content a,
.content b,
.content i {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #2a5c9e, #3daee9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: filter 0.3s ease;
}

.content a:hover,
.content b:hover,
.content i:hover {
    filter: brightness(1.4);
}

.contentx input,
.contentx textarea,
.contentx select {
    width: 40%;
    max-width: 350px;
    padding: 10px 14px;
    margin: 12px 0;
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #ccc;
    background: #222;
    border: 1px solid #3daee9;
    border-radius: 12px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7), 0 0 4px rgba(61, 174, 233, 0.6);
    transition: all 0.3s ease;
    caret-color: #3daee9;
}

.contentx input:focus,
.contentx textarea:focus,
.contentx select:focus {
    outline: none;
    border-color: #3daee9;
    box-shadow: 0 0 0 2px rgba(61, 174, 233, 0.8);
}

.contentx select {
    background: #222;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #3daee9 50%),
        linear-gradient(135deg, #1a1a1a 50%, transparent 50%);
    background-position:
        calc(100% - 20px) center,
        calc(100% - 15px) center;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.dropdown-menu {
    background: #222;
    color: #ccc;
    border: 1px solid #3daee9;
    box-shadow: 0 2px 10px rgba(61, 174, 233, 0.5);
}

.dropdown-menu:hover {
    background: #0a2a4a;
    color: #a9d6ff;
}

#footer { opacity:0.7;
    background: linear-gradient(135deg, #0a2a4a, #1a4e7a, #3daee9);
    color: #cce6ff;
    text-align: center;
    padding: 70px 30px;
    margin-top: 80px;
    border-top: 4px double rgba(255, 255, 255, 0.1);
    clip-path: polygon(
        0 50px, 12% 45px, 25% 55px, 38% 48px, 50% 60px, 62% 50px,
        75% 58px, 88% 50px, 100% 60px, 100% 100%, 0 100%
    );
    box-shadow:
        inset 0 10px 20px rgba(0, 0, 0, 0.9),
        0 10px 15px rgba(0, 0, 0, 0.9);
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

#footer a {
    color: #7ec8ff;
    text-decoration: none;
    border-bottom: 1.5px dashed rgba(126, 200, 255, 0.5);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
    font-weight: 600;
}

#footer a:hover {
    color: #c0e6ff;
    border-bottom: 1.5px solid #c0e6ff;
}

.footer-credit {
    margin-top: 10px;
    font-size: 14px;
    color: #6aa9d7;
    font-style: italic;
}
