* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif Devanagari', serif;
}

body {
    background: url('/Bug-Fixes/assets/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f5e6c8;
    text-align: center;
    padding: 20px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    z-index: -1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 3px 10px rgba(212, 175, 55, 0.4);
    z-index: 1000;
}

.navbar .logo {
    color: #d4af37;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

.navbar .menu {
    list-style: none;
    display: flex;
}

.navbar .menu li {
    margin: 0 15px;
}

.navbar .menu li a {
    color: #f5e6c8;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.navbar .menu li a:hover {
    color: #d4af37;
}

.container {
    max-width: 1000px;
    margin: 80px auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid #d4af37;
    text-align: center;
}

.artist-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center; /* Centers the image */
    border-radius: 10px;
    border: 3px solid #d4af37;
}

h1 {
    color: #d4af37;
    margin: 20px 0;
    font-size: 50px;
    text-align: center;
}
h2 {
    color: #f5e6c8;
    margin-top: 25px;
    font-size: 24px;
    text-align: center;
    padding-bottom: 5px;
    position: relative;
    display: inline-block; /* Keeps width only as wide as text */
}

h2::after {
    content: "";
    display: block;
    width: 100%; /* Controls the border width */
    height: 5px;
    background-color: #d4af37;
    margin: auto; /* Centers the border */
    margin-top: 5px; /* Adds space between text and border */
}


p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background: #d4af37;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.back-button:hover {
    background: #ffcc33;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #d4af37;
    box-shadow: 0px -3px 10px rgba(212, 175, 55, 0.4);
}

.footer a {
    color: #f5e6c8;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.3s;
}

.footer a:hover {
    color: #d4af37;
}