/*
Theme Name: Sirius Starter
Theme URI: https://example.com/sirius-starter
Author: Sirius Tours Development
Author URI: https://example.com
Description: Minimal blank theme for Sirius Tours. Provides base HTML structure, font loading, CSS variables, and compatibility with Elementor, WooCommerce, and all Sirius custom plugins. No opinionated styles — plugins handle their own presentation.
Version: 1.0.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sirius-starter
*/

/* ============================================================
   Minimal Reset — plugins handle their own styling
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main, 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    color: #1e293b;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers, 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    letter-spacing: var(--font-headers-letterspacing, 0);
    line-height: 1.3;
}

/* ── Front page: remove all block editor spacing ─ */
.home main,
.front-page {
    margin: 0 !important;
    padding: 0 !important;
}

.home main > p,
.home main > br,
.home main > .wp-block-shortcode,
.home main > .wp-block-paragraph,
.front-page > p,
.front-page > br,
.front-page > .wp-block-shortcode,
.front-page > .wp-block-paragraph {
    margin: 0 !important;
    padding: 0 !important;
}

.home main p:empty,
.front-page p:empty {
    display: none !important;
    line-height: 0 !important;
    font-size: 0 !important;
    height: 0 !important;
}

/* Hide stray <br> tags between shortcode sections */
.home main > br,
.front-page > br,
.home .hh-hero + br,
.home .shp-section + br,
.front-page .hh-hero + br,
.front-page .shp-section + br {
    display: none !important;
}
