/*
 * 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("/assets/hero_background-14ebd515.webp") no-repeat center top / 100% 100vh !important;*/
}

.hero {
    padding-top: 20px;
    height: 100vh;
    min-height: 300px;
    background: #141414 url("/assets/hero_background-14ebd515.webp") no-repeat center top / 100% 100% !important;
}

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

.intro-container {
    display: flex;
    align-items: center;      /* vertical centering */
    justify-content: center;
    height: 100vh;
    min-height: 300px;
}

.intro {
    text-align: center;
    color: #fff;
}


/* Mobile */
.intro .ui.header.main {
    font-size: 40px;
    margin-top: 0;
}

/* Tablet */
@media (min-width: 723px) {
    .intro .ui.header.main {
        font-size: 40px;
    }
}


/* Desktop */
@media (min-width: 933px) {
    .intro .ui.header.main {
        font-size: 60px;
    }
}



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

@media (min-width: 933px) {
    .ui.segment.stripe {
        padding: 10em 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
}


.quick, .docket {
    position: relative;
    display: inline-block;

    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 12s infinite ease-in-out;
}


.quick {
    background-image: linear-gradient(
            90deg,
            #2eb4f1 0%,
            #2eb4f1 45%,
            #ffffff 50%,
            #2eb4f1 55%,
            #2eb4f1 100%
    );
    animation-delay: 0.4s;
    animation-fill-mode: backwards;
}

.docket {
    background-image: linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 45%,
            #afe8f8 50%,
            #ffffff 55%,
            #ffffff 100%
    );
}

@keyframes shine {
    0%   { background-position: -80% 0; }
    10%  { background-position: -80% 0; }  /* long pause */
    20%  { background-position: 120% 0; }   /* sweep */
    30%  { background-position: 120% 0; }   /* exit + pause */
    100% { background-position: 120% 0; }   /* long rest */
}




.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: all 700ms ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.pswp__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
}

.pswp__img {
    border-radius: 16px;
}