/*
Theme Name: MindMap Theme 
Theme URI: https://webbuilder.gr
Author: WEbBUILDer
Author URI: https://webbuilder.gr
Description: Custom theme with Elementor compatibility
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mindmap-theme
*/
/* RESET */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* CONTAINER FULL WIDTH */
.container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* NAV */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav li {
    display: inline-block;
    margin-right: 25px;
}
.main-nav a {
    text-decoration: none;
}

/* ELEMENTOR FULL WIDTH */
.elementor-section {
    margin: 0 !important;
    padding: 0 !important;
}

/* FULL BLEED */
.full-bleed {
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* HERO FULL HEIGHT */
.hero-full {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO OVERLAY */
.hero-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.hero-full > * {
    position: relative;
    z-index: 2;
}

