/* Watermark Styles */
.watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
}

.watermark::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/dark-logo.jpg');
    background-repeat: repeat;
    background-position: center;
    background-size: 400px;
    transform: rotate(-15deg);
}

/* Dark Mode Adjustments */
body {
    position: relative;
    min-height: 100vh;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 46, 20, 0.05) 0%, rgba(18, 18, 18, 0.95) 100%);
    pointer-events: none;
    z-index: 1;
}

.container,
.header,
section {
    position: relative;
    z-index: 2;
}