/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
 Description:  Hello Elementor Child Theme
 Author:       Elementor Team
 Author URI:   https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v3 or later.
 License URI:  http://www.gnu.org/licenses/gpl-3.0.html
 Text Domain:  hello-elementor-child
*/

/* Custom Stitch Design CSS */
.gradient-text {
    background: linear-gradient(to right, #B8860B, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.ornate-border {
    border: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, #D4AF37, transparent) 1;
    position: relative;
}

.ornate-border::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    pointer-events: none;
    z-index: -1;
}

.golden-border-box {
    position: relative;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 253, 240, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 6px -1px rgba(139, 69, 19, 0.1), 0 2px 4px -1px rgba(139, 69, 19, 0.06);
}

.dark .golden-border-box {
    background: linear-gradient(to bottom right, rgba(35, 22, 15, 0.95), rgba(57, 21, 2, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.corner-ornament {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
}

.corner-tl {
    top: 4px;
    left: 4px;
    border-right: 0;
    border-bottom: 0;
}

.corner-tr {
    top: 4px;
    right: 4px;
    border-left: 0;
    border-bottom: 0;
}

.corner-bl {
    bottom: 4px;
    left: 4px;
    border-right: 0;
    border-top: 0;
}

.corner-br {
    bottom: 4px;
    right: 4px;
    border-left: 0;
    border-top: 0;
}

.group:hover .corner-ornament {
    width: 30px;
    height: 30px;
    border-color: #FF9933;
}

.silk-texture {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.om-watermark {
    position: absolute;
    font-family: "Tiro Devanagari Hindi", serif;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}