@charset "UTF-8";
/*
Theme Name:		Gustari Spatiale
Theme URI:		https://gustarispatiale.com/
Author: 		Gustari Spatiale
Author URI:		https://gustarispatiale.com/
Description:	Gustari Theme
Version: 		1.0.0
License: 		GNU General Public License v2 or later
License URI: 	LICENSE
Text Domain: 	Gustari Spatiale
*/

:root {
    --bg-main: #050b2a;
    --bg-alt: #101842;
    --accent: #ff9b1a;
    --accent-soft: #ffc94a;
    --text-main: #ffffff;
    --text-muted: #c2c7f5;
    --card-bg: #141b3f;
    --badge-bg: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
    --radius-xl: 22px;
    --transition-fast: 0.2s ease-out;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    /* background: radial-gradient(circle at top, #1c2563 0, var(--bg-main) 55%); */
    background-color: black;
    min-height: 100vh;
    margin: 0;
}

/*TYPOGRAPHY*/
.h1 .elementor-heading-title {
    font-size: 56px !important;
    line-height: 1.2 !important;

    @media (max-width: 1024px) {
        font-size: 44px !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
    }

    @media (max-width: 767px) {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }
}

.h2 .elementor-heading-title {
    font-size: 36px;
    line-height: 1.3;

    @media (max-width: 1024px) {
        font-size: 32px;
        line-height: 1.4;
        font-weight: 600;
    }

    @media (max-width: 767px) {
        font-size: 24px;
        line-height: 1.35;
    }
}

.h3 .elementor-heading-title {
    font-size: 28px;
    line-height: 1.35;

    @media (max-width: 1024px) {
        font-size: 24px;
        line-height: 1.4;
        font-weight: 600;
    }

    @media (max-width: 767px) {
        font-size: 20px;
        line-height: 1.4;
    }
}

.h4 .elementor-heading-title {
    font-size: 24px;
    line-height: 1.4;

    @media (max-width: 1024px) {
        font-size: 20px;
        line-height: 1.45;
        font-weight: 600;
    }

    @media (max-width: 767px) {
        font-size: 18px;
        line-height: 1.45;
    }
}

.h5 .elementor-heading-title {
    font-size: 20px;
    line-height: 1.5;

    @media (max-width: 1024px) {
        font-size: 18px;
        line-height: 1.5;
        font-weight: 600;
    }

    @media (max-width: 767px) {
        font-size: 16px;
        line-height: 1.5;
    }
}

p {
    margin-top: 0 !important;
}

p:only-child,
p:last-child {
    margin-bottom: 0;
}

.highlight {
    span {
        color: var(--accent) !important;
    }
}

.highlight-soft {
    span {
        color: var(--accent-soft) !important;
    }
}

.pill {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-size: 11px;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    background: rgba(8, 11, 52, 0.7);
}

/*SECTION*/
.padding-large {
    padding: 80px 0;

    @media (max-width: 1024px) {
        padding: 60px 0;
    }

    @media (max-width: 767px) {
        padding: 40px 0;
    }
}
.padding-medium {
    padding: 60px 0;

    @media (max-width: 1024px) {
        padding: 40px 0;
    }

    @media (max-width: 767px) {
        padding: 20px 0;
    }
}

.pt-0 {
    padding-top: 0 !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}

.hero-section {
    padding-top: 160px !important;
}
