body {
    font-family: 'Cinzel', serif;
    background: url('background-purple.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
}

.sidebar {
    width: 260px;
    background: rgba(40, 10, 60, 0.9);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 5px 0 15px rgba(100, 0, 200, 0.5);
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.nav-buttons a {
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(145deg, #2c0e37, #1a071e);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    width: 90%;
    text-align: center;
    transition: all 0.3s;
    box-shadow: inset 3px 3px 6px #000, inset -3px -3px 6px #45284e;
    font-size: 22px;
    text-transform: uppercase;
    border: 2px solid #5e2763;
}

.nav-buttons a:hover {
    background: linear-gradient(145deg, #3b0f4d, #240a2e);
    transform: scale(1.1);
    box-shadow: inset 3px 3px 10px #000, inset -3px -3px 10px #752c8d;
}

.contact-icons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s, filter 0.3s;
    filter: drop-shadow(0px 0px 5px #a05ce5);
}

.contact-icons a:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0px 0px 10px #e1b0ff);
}

footer {
    background: transparent;
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: none;
}
