html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #060807;
    color: #d8c6a0;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(240, 220, 180, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: mistDrift 60s linear infinite;
    z-index: 1;
    opacity: 0.18;
}

@keyframes mistDrift {
    0% { background-position: 0 0; }
    100% { background-position: 80px 150px; }
}

#navigation {
    position: relative;
    width: 60%;
    margin-top: -10px;
    padding: 40px 15px; 
    background: linear-gradient(to bottom right, #0d0d0d, #1a1a1a); 
    clip-path: polygon(0 0, 100% 10%, 95% 90%, 5% 100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    opacity: 0.65;
    border-top: 4px solid #a98c5d;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 18px;
    border-bottom: 3px dashed #8f7a50;
    z-index: 5;
}
#navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px; 
    font-size: 14px;   
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Cinzel Decorative', serif;
    color: #d8c9aa;
    background: transparent;
    border: none;
    position: relative;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

#navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d8c9aa, #bfa974, #8f7a50);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    border-radius: 3px;
}

#navigation a:hover {
    color: #f0e6d2;
}

#navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

a:link,
a:visited {
    color: #cbbda1;
    font-size: 24px;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d8c9aa, #bfa974, #8f7a50);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:hover {
    color: #e0d6b7;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


i, em {
    color: #b6a98d;
    font-style: italic;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #2e2e2e, #1a1a1a);
    padding: 4px 7px;
    border-radius: 4px;
    box-shadow: inset 0 0 4px rgba(100, 100, 100, 0.3);
    transition: all 0.3s ease;
}

i:hover, em:hover {
    background: linear-gradient(to right, #3a3a3a, #2a2a2a);
    color: #f5e9d4;
}

b, strong {
    font-weight: 800;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f0e6d2;
    padding: 4px 10px;
    border-radius: 4px;
    background: linear-gradient(135deg, #bfa974, #d8c9aa, #8f7a50);
    box-shadow: 0 0 8px rgba(223, 191, 141, 0.6),
                inset 0 0 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

b:hover, strong:hover {
    background: linear-gradient(135deg, #d8c9aa, #bfa974, #a38a5b);
    color: #2c2c2c;
    box-shadow: 0 0 12px rgba(255, 235, 180, 0.8),
                inset 0 0 8px rgba(0, 0, 0, 0.25);
}

#content {
    margin: 23px auto;
    position: relative;
    width: 63%;margin-top:-40px;
}

.contentx {
    margin: 0 0 50px 0;
    padding: 25px;
    font-size: 16px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 500 !important;
    text-align: justify;
    color: #cbbda1;
    line-height: 25px;
    letter-spacing: 2px;
    border-radius: 30px;
    opacity: 0.75;
}

blockquote {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #d8c6a0;
    background: linear-gradient(145deg, #1c1c1c, #101010);
    padding: 40px 50px;
    margin: 40px auto;
    border-left: 10px double #5a4f3f;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(60, 50, 40, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 860px;
    position: relative;
    line-height: 1.9;
    letter-spacing: 0.6px;
}

blockquote::before,
blockquote::after {
    font-size: 60px;
    color: #6e5c44;
    position: absolute;
    opacity: 0.3;
}

blockquote::before {
    content: "❝";
    top: 10px;
    left: 20px;
}

blockquote::after {
    content: "❞";
    bottom: 10px;
    right: 20px;
}

textarea,
input,
select {
    width: 100%;
    max-width: 600px;
    padding: 16px 20px;
    margin: 16px 0;
    font-family: 'Tahoma', sans-serif;
    font-size: 18px;
    color: #e6dbc3;
    background: linear-gradient(145deg, #2e2e2e, #1c1c1c);
    border: 2px solid #7f705e;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(40, 40, 40, 0.5);
    transition: all 0.3s ease;
    caret-color: #d6c3a1;
}

textarea:focus,
input,
select {
    outline: none;
    border-color: #9e8e76;
    background-color: #292929;
    box-shadow: 0 0 14px rgba(180, 160, 130, 0.3), inset 0 0 6px rgba(0, 0, 0, 0.2);
}
h1 {
    position: relative;
    display: inline-block;
    padding: 30px 60px;
    color: #f9fbfa;
    font-size: 44px;
    font-family: 'Cinzel Decorative', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 10px 10px 0 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    background: none; /* remove old bg */
    z-index: 1;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;  
    background: linear-gradient(90deg, #d8c9aa, #bfa974, #8f7a50);
    border-radius: 3px;
    transition: background 0.3s ease;
}

a:link,
a:visited {
    color: #cbbda1;
    font-size: 24px;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d8c9aa, #bfa974, #8f7a50);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:hover {
    color: #e0d6b7;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#footer {
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #b8a987;
    text-align: center;
    padding: 60px 20px 35px;
    margin-top: 60px;
    opacity: 0.9;
    letter-spacing: 0.7px;
    line-height: 1.4;
}

#footer a {
    color: #d1c1a5;
    text-decoration: none;
    border-bottom: 1px dashed #bba98a;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #f5e2c0;
    border-bottom: 1px solid #f5e2c0;
    text-shadow: 0 0 8px rgba(180, 160, 130, 0.3);
}

#header {background-color: #060807;
  position: relative;
  background-image: url('images/head.jpg');
  background-repeat: no-repeat;
  background-position: center;
  height: 524px;
  width: 100%;
  margin-top: 0;
}

#gif-container {
  position: absolute;
  top: 290px;  
  left: 350px; 
  z-index: 10;
  opacity: 1 !important; 
  pointer-events: auto !important;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #d8c9aa;
  border-radius: 6px;
  padding: 5px;opacity:0.7;
}

#gif-container img {
  width: 245px;
  height: auto;
  display: block;
}
#music-toggle {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    color: #f0e2c0;
    background: linear-gradient(to right, #2a2a2a, #1c1c1c);
    border: 2px solid #7e6e54;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(180, 160, 130, 0.3);
}

#music-toggle:hover {
    background: #3a3a3a;
    color: #fff3e0;
    box-shadow: 0 0 12px rgba(220, 190, 150, 0.5);
}

p.lyrics {
  column-count: 2;
  column-gap: 2em;
  white-space: pre-wrap; 
}