/* root/styles.css */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    background-color: rgba(0,100,0,0.2);
}

.logo-image {
    width: 50%;
    height: auto;
}

li a {
    list-style-type: none;
    color: darkgreen;
    /* padding: 1em; */

    /* BCA tweaks */
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 3px;
    padding: 0.75em;
    text-decoration: none;
}

/* Testimonial carousel look & feel */
#testimonials .box {
  background: #ffffff;          /* white card */
  color: #1e1e1e;               /* dark text */
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

#testimonials .box q { 
  quotes: "“" "”" "‘" "’";
}
#testimonials .box q::before { content: open-quote; }
#testimonials .box q::after  { content: close-quote; }

#testimonials .box a { 
  color: #0d6efd;               /* readable link */
  text-decoration: none;
}
#testimonials .box a:hover {
  text-decoration: underline;
}

/* ensure carousel controls/indicators show up on light bg */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100%);
}
#testimonialCarousel .carousel-indicators li {
  background-color: #333;
}
#testimonialCarousel .carousel-indicators .active {
  background-color: #0d6efd;
}


/* Profile Images */



/* Three columns side by side */
.column {
    float: left;
    width: 47.5%;
    margin-bottom: 16px;
    padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media screen and (max-width: 650px) {
    .column {
        width: 100%;
        display: block;
    }
}

/* Add some shadows to create a card effect */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container {
    padding: 0 16px;
}

/* Clear floats */
.container::after,
.row::after {
    content: "";
    clear: both;
    display: table;
}

.title {
    color: grey;
}

.button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.button:hover {
    background-color: #555;
}





/* Core Styles */
body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    background: #eaeaea;
    color: #fff;
    font-size: 1em;
    line-height: 1.5;
    text-align: center;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 1em 0;
}

p {
    margin: 0;
    padding: 1em 0;
}

.btn {
    display: inline-block;
    background: #333;
    color: #fff;
    text-decoration: none;
    padding: 1em 2em;
    border: 1px solid #777;
    margin: .5em 0;
}

.btn:hover {
    background: #eaeaea;
    color: #333;
}

/* Header */
#showcase {
    min-height: 450px;
    color: #fff;
    text-align: center;
}

#showcase .bg-image {
    position: absolute;
    background: url("falls1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 450px;
    z-index: -1;
}

#showcase h1 {
    padding-top: 100px;
    padding-bottom: 0;
}

#showcase .content-wrap,
#section-a .content-wrap {
    padding: 0 1.5em;
}

/* Section A */
#section-a {
    background: #eaeaea;
    color: #333;
    padding-bottom: 1em;
}

/* Section B */
#section-b {
    padding: 2em 2em;
    background: #333;
}

#section-b ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#section-b li {
    margin-bottom: 1em;
    background: #fff;
    color: #333;
}

.card-content {
    padding: 1.5em;
}

/* Section C */
#section-c {
    background: #fff;
    color: #333;
    padding: 0em;
    height: auto;
}

/* Section D */
#section-d .box {
    padding: 2em;
    color: #000;
    background: #555;
}

#section-d .box:first-child {
    background: #555;
}


/* Footer */
#main-footer {
    padding: 2em;
    background: #111;
    color: #fff;
    text-align: center;
}

#main-footer a {
    color: #2690d4;
    text-decoration: none;
}

/* Media Queries */

@media(min-width: 700px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
    }

    #section-a .content-text {
        columns: 2;
        column-gap: 2em;
    }

    #section-a .content-text p {
        padding-top: 0;
    }

    .content-wrap,
    #section-b ul {
        grid-column: 2/4;
    }

    .box,
    #main-footer div {
        grid-column: span 2;
    }

    #section-b ul {
        display: flex;
        justify-content: space-around;
    }

    #section-b li {
        width: 31%;
    }

    /* place the carousel in the centered two columns like your other content */
    #testimonialCarousel { grid-column: 2 / 4; }
}
