/* Christmas Decorations */
.christmas-decorations {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.decoration-tree {
    position: absolute;
    bottom: 40px;
    width: 120px;
    height: 180px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.tree-left {
    left: 5%;
    transform: rotate(-2deg);
}

.tree-right {
    right: 5%;
    transform: rotate(2deg);
}

.decoration-tree:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .decoration-tree {
        width: 80px;
        height: 120px;
        bottom: 20px;
    }
}