/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://rediscoveringtheway.com
 Description:  Child theme for Rediscovering The Way website, based on Hello Elementor
 Author:       Rediscovering The Way
 Author URI:   https://rediscoveringtheway.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v3 or later
 License URI:  https://www.gnu.org/licenses/gpl-3.0.html
 Text Domain:  hello-elementor-child
*/

/* 
 * Custom styles for Rediscovering The Way
 * Add your channel branding, colors, and custom CSS here
 */

/* Import parent theme styles */
@import url('../hello-elementor/style.css');

/* Custom Branding Colors - Update these to match your channel */
:root {
    --rtw-primary-color: #0066cc;
    --rtw-secondary-color: #333333;
    --rtw-accent-color: #ff6600;
    --rtw-text-color: #333333;
    --rtw-link-color: #0066cc;
}

/* YouTube Embed Styling */
.rtw-youtube-embed-wrapper {
    margin: 2em 0;
}

.rtw-youtube-embed-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rtw-youtube-link {
    margin-top: 1em;
    font-size: 0.9em;
    color: #666;
}

.rtw-youtube-link a {
    color: var(--rtw-link-color);
    text-decoration: underline;
}

.rtw-youtube-link a:hover {
    color: var(--rtw-accent-color);
}

/* Blog Post Styling */
.single-post .entry-content,
.single .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Custom Header/Footer Branding */
/* Add your custom header and footer styles here */

/* Responsive adjustments */
@media (max-width: 768px) {
    .rtw-youtube-embed-wrapper {
        margin: 1em 0;
    }
}

