/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

html {
    font-size: 16px !important;
    scroll-behavior: smooth;
}

body {
    /* For sticky menu to work */
    height: auto !important;
    min-height: 100%;
    background: #141414 url("/images/hero_background.jpg") no-repeat center top / 100% 600px !important;
}

.hero {
    padding-top: 20px;
    min-height: 500px;
}

#main-nav {
    /*margin-top: 20px;*/
    /*position: sticky;*/
    /*top: 0;*/
    /*z-index: 10000;*/
}

#main-nav.scrolled {
    background-color: #1b1c1d;
}

.intro {
    text-align: center;
    color: #fff;
    padding-top: 70px;
}

.ui.segment.stripe {
    background-color: #FFFFFF;
    padding: 10em 0;
    border-radius: 0;
    margin: 0;
}

.ui.segment.stripe.alternate {
    background-color: #F2F3F5;
}

.ui.segment.stripe.feature {
    padding: 3em 0;
}

.ui.segment.stripe.feature .row {
    margin-top: 60px;
}

.ui.segment.stripe.footer {
    padding: 3em 0;
}

.ui.list.relaxed.spaced .item {
    margin-bottom: 20px;
}

/* CSS to hide elements when the window width is below 770px */
@media (max-width: 767px) {
    .desktop-nav {
        display: none !important;
    }
}

/* CSS to hide elements when the window width is above 770px */
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.ui.modal .header.custom {
    padding: 10px 0 6px 0;
}

.ui.modal .header.custom > .ui.menu {
    border: none
}