﻿/* Bootstrap 5 tweak: change color of drop down nav arrow */
.navbar .dropdown-toggle::after {
    color: #6c757d;
}

/* Bootstrap 5 tweak: do not underline links unless hovered over */
a:not([class*="btn"]) {
    text-decoration: none;
}

    /* Bootstrap 5 tweak: do not underline links unless hovered over */
    a:not([class*="btn"]):hover {
        text-decoration: underline;
    }

/* Bootstrap 5 tweak: change the default background-color of the accordion-button when closed/collapsed and change the text to White */
.accordion-button {
    background-color: #f8f9fa;
    color: #000;
}

    /* Bootstrap 5 tweak: change the default color of the accordion-button arrow when closed/collapsed to White */
    .accordion-button:after {
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    }

    /* Bootstrap 5 tweak: removes the accordion drop shadow that outlines the accordion-item */
    .accordion-button:focus {
        box-shadow: inherit;
    }

/* Bootstrap 5 tweak: adds hover effect to a list-group */
.list-group-hover .list-group-item:hover {
    background-color: #E7F1FF;
}

/* Bootstrap 5 tweak: set icon color to primary */
.icon-primary {
    color: #0d6efd;
}

/* Bootstrap 5 tweak: set background color to Bootstrap light blue */
.bg-lightblue {
    background-color: #E7F1FF;
}

/* Bootstrap 5 tweak: set width to 15% */
.w-15 {
    width: 15%;
}

/* For home page hero */
.hero-kitchen {
    position: relative;
    background-image: url('/images/hero-kitchen.webp');
    background-size: cover;
    background-position: center;
}

/* For home page hero in middle of page */
.hero-middle {
    position: relative;
    background-image: url('/images/hero-middle.webp');
    background-size: cover;
    background-position: center;
}

/* For areas we serve page hero in middle of page */
.hero-areas {
    position: relative;
    background-color: #0055B8;
    background-size: cover;
    background-position: center;
}

/* For top banner hero on all pages, except home page */
.hero-banner {
    position: relative;
    background-image: url('/images/hero-banner.webp');
    background-size: cover;
    background-position: center;
}

/* For hero overlays */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 85, 184, 0.8);
    z-index: 1;
}

/* For hero content */
.hero-content {
    position: relative;
    z-index: 2;
}

:root {
    --bs-body-font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700;
}

/* Sets min-height for cards in the Owl Carousel. */
.deck {
    min-height: 350px;
    background-color: #E7F1FF;
}

/* Square box around arrows for Owl Carousel */
.owl-next, .owl-prev {
    background-color: #75787b;
    border-radius: 0;
    height: 29px;
    width: 29px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    color: #fff;
    display: inline-block;
    margin: 0 5px
}

    /* Hover color for square box around arrows for Owl Carousel */
    .owl-next:hover, .owl-prev:hover {
        background-color: #6C757D !important;
    }

/* Spot-On logo blue */
.bg-logoblue {
    background-color: #0055B8;
}

/* Small box behind the icon on area pages */
.box-behind-icon {
    width: 50px;
    height: 50px;
}

/* Testimonial Card Styling */
.testimonial-card {
    border-top: 3px #0d6efd solid !important;
    margin-top: 60px;
    position: relative;
    /* No fixed height here - will be set by JavaScript */
}

/* Testimonial Card Icon Styling */
.quote-icon {
    background-color: #0d6efd;
    width: 70px;
    height: 70px;
    font-size: 3rem;
    position: absolute;
    top: -37.5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    overflow-y: auto; /* Adds scrolling if content exceeds container */
}

/* Sets sizing for Linkedin & Facebook Icons */
.icon-size {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}



