/*
 * 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.
 */

/*import 'air-datepicker/air-datepicker.css';*/

:root {
    --fete-color-dark-black: #1D1D1D;
    --bs-btn-border-radius: 0px;
    --bs-btn-border-radius-lg: none;

    --sg-bright: #FBF4A1;
    --sg-gray: #656565;
}

html {
    background-color: #121212;
    /*color: white;*/
}

body {
    background-color: #202020;
}

.btn.btn-lg, .btn {
    --bs-btn-border-radius: 0px;
    --bs-btn-border-radius-lg: none;
    --bs-btn-bg: var(--sg-gray);
    --bs-btn-hover-bg: var(--sg-bright);
    --bs-btn-border-color: var(--sg-gray);
    --bs-btn-hover-border-color: var(--sg-bright);
    --bs-btn-hover-color: var(--sg-gray);

}

.form-control, .form-select {
    border-radius: 0px;
}


.accordion {
    --bs-border-color: transparent;
    --bs-accordion-active-color: transparent;
}

.accordion .accordion-item, 
.accordion .accordion-header,
.accordion .accordion-button  {
    border-radius: 0px;
    background-color: #515151;
    border: none;
}

.accordion .accordion-button  {
    font-size: 1.5rem;
    padding-top: 20px;
    padding-bottom: 20px;
}

.accordion .accordion-header {
    border-bottom: 0px;
}


html, body {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#home-header {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-color: rgba(0, 0, 0, 0.7);
}

.home-header_content {
    width: 100%;
    flex: 1;

    color: white;
    display: flex;
    align-items: center;

    .container-fluid {
        width: 100%;
    }

    h1 {
        font-size: clamp(2rem, 10vh, 8rem);
        word-break: break-word;
    }
}

.video_background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

#about {
    padding-top: 100px;
    padding-bottom: 100px;
}

.consulting-list {
    .consulting-item {
        color: #FFFFFF;
        background-color: #515151;
        padding: 20px;
        margin-bottom: 15px;

        h4 {
            padding-bottom: 0px;
            margin-bottom: 0px;
        }
    }
}

#marketing-banner {
    position: relative;
}

footer {
    background-color: #121212;
}

.nav.nav-main {
    .nav-item {
        padding-top: 30px;
    }
    .nav-item a, .nav-item button {
       font-size: clamp(10px, 2vw, 50px);
        text-decoration: none;
    }
}


#classes-tabs {
    button {
        padding: 20px 60px 20px 60px;
        font-size: 25px;
        border-radius: 40px;
        color: white;
        display: block;
    }

    @media screen and (max-width: 512px) {
        button {
            font-size: 16px;
            padding: 10px 30px 10px 30px;
        }
    }

    button.active {
        background-color: #5E5601;
    }
}

.pages-services {
    background-color: #FFFCD4;

    .nav.nav-main:not(.mobile-nav) {
        .nav-item:not(.mobile-nav) {
            padding-top: 30px;
        }
        .nav-item:not(.mobile-nav) a, .nav-item:not(.mobile-nav) button {
            color: black !important;
        }
    }

}

label {
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: normal;
    text-transform: uppercase;
}

.form-control:active, .form-control:focus {
    box-shadow: 0px 0px 10px 0px white;
}

* { box-sizing: border-box; }


/* Modifier class to force rectangular day cells */
.calendar__rectangular .days div {
    aspect-ratio: auto !important;  /* Remove the square aspect ratio */
    height: 50px !important;        /* Set a fixed height; adjust this value as needed */
}

.calendar {
    #datepicker {
        width: 100%;
        padding: 20px;
        background-color: #7C7C7C;
    }
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    #datepicker .nav {
        cursor: pointer;
        padding: 5px;
    }
    #datepicker .month-year {
        font-weight: bold;
        font-size: 25px;
    }
    .weekdays, .days {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 2px;
        resize: horizontal;
    }
    .weekdays div {
        text-align: center;
        padding: 5px 0;
        font-weight: bold;
    }
    .days div {
        background-color: #D9D9D9;
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1;
        cursor: pointer;
        font-weight: bold;
    }
    .days div:hover {
        background-color: #727272;
        color: white;
    }
    .days div.selected {
        background-color: #727272;
        color: white;
    }
    .days div.available {
        background-color: #4CAF50;
        color: white;
    }
    .days div.available.selected {
        background-color: #0e2911;
        color: white;
    }
    .days div.available:hover {
        background-color: #45a049;
    }
}


.trix-button  {
    background-color: white !important;
}

.hover-util {
    .hover-show {
        display: none !important;
    }

    &:hover {
        .hover-show {
            display: block !important;
        }
    }
}

/* Dropdown menu hover styles */
.dropdown-menu .dropdown-item:hover {
  background-color: rgba(33, 30, 41, 0.9) !important;
  color: white !important;
}