/**
 * Plugin Name: PixelcraftDev Elementor Addon
 * Author: Supapong Sakulkoo (K.Auu)
 * Author URI: https://supapongai.com
 * License: Commercial - Proprietary
 * Copyright: (c) 2026 PixelcraftDev. All rights reserved.
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 */
/**
 * Pixelcraft Heading with Subtitle Styles
 */

.pixelcraft-heading-subtitle-container {
    display: flex;
    flex-direction: column;
}

.pixelcraft-heading-subtitle-small {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.pixelcraft-heading-subtitle-separator {
    display: block;
    height: 2px;
    background-color: #c5a47e; /* Default gold */
    margin: 10px 0;
    transition: all 0.3s ease;
}

.pixelcraft-heading-subtitle-main {
    margin: 0;
    padding: 0;
    line-height: 1.1;
    transition: all 0.3s ease;
}

/* Alignment Helpers */
.pixelcraft-heading-subtitle-align-left {
    align-items: flex-start;
    text-align: left;
}
.pixelcraft-heading-subtitle-align-center {
    align-items: center;
    text-align: center;
}
.pixelcraft-heading-subtitle-align-right {
    align-items: flex-end;
    text-align: right;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .pixelcraft-heading-subtitle-main {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}
