/*
Theme Name: Deamore
Theme URI: https://example.com/deamore
Author: Deamore Design
Description: A luxury wood and leather accessories theme.
Version: 1.0
Text Domain: deamore
*/

/* WordPress Core Alignments */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }

body {
    overflow-x: hidden;
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}