/* Custom Styles */

/* Light Mode Background */
[color-scheme="light"] body {
    background-image: url('../img/hero/Untitled-3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Dark Mode Background */
[color-scheme="dark"] body {
    background-image: url('../img/hero/Untitled-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Mobile Optimization - Show more of the right side */
@media (max-width: 768px) {
    [color-scheme="light"] body {
        background-position: 70% center;
        background-size: cover;
    }

    [color-scheme="dark"] body {
        background-position: 70% center;
        background-size: cover;
    }
}

/* Text Highlight */
.text-highlight {
    color: #FFD700 !important;
    /* Gold/Yellow */
}