/*
Theme Name: Beyond Splendid Ventures - Hello Elementor Child
Template: hello-elementor
Theme URI: https://beyondsplendidventures.com
Author: Beyond Splendid Ventures
Author URI: https://beyondsplendidventures.com
Description: A custom child theme for Beyond Splendid Ventures travel agency based on Hello Elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor-child
Requires at least: 5.0
Tested up to: 6.3
Requires PHP: 7.4
Elementor tested up to: 3.15.0
Elementor Pro tested up to: 3.15.0
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

/* Import custom styles */
@import url("custom-styles.css");

/* Basic overrides for the parent theme */
:root {
    --primary-color: #0E3D4D;
    --secondary-color: #0C513F;
    --accent-color: #D4AC34;
    --text-color: #333333;
    --light-color: #FFFBEE;
    --dark-color: #222222;
    --heading-font: 'Playfair Display', sans-serif;
    --body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.site-header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
}

/* Elementor compatibility styles */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

.elementor-widget-heading .elementor-heading-title {
    font-family: var(--heading-font);
}

.elementor-widget-text-editor {
    font-family: var(--body-font);
}

.elementor-button {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.elementor-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.elementor-widget-image-box .elementor-image-box-content .elementor-image-box-title {
    font-family: var(--heading-font);
    color: var(--dark-color);
}

.elementor-widget-image-box .elementor-image-box-content .elementor-image-box-description {
    font-family: var(--body-font);
    color: var(--text-color);
}
