/*
    Name: Noah Amman
    Project: Final Project - The Lost Coin, LLC Website
    Date: 12/05/2025
*/

body {
    background-color: #343a40;
}

/* Logo size */
.site-logo {
    max-height: 100px;
}

/* Title font */
.brand-title {
    font-family: "Comic Relief", cursive;
    font-weight: 700;
    font-size: 2.1rem;
    /* a bit smaller so it sits nicer in the header */
    line-height: 1.1;
    color: #2d1e4f;
}


/* Purple buttons */
.btn-purple {
    background-color: #2d1e4f;
    border-color: #2d1e4f;
    color: #ffffff;
}

.btn-purple:hover,
.btn-purple:focus {
    background-color: #24183f;
    border-color: #24183f;
    color: #ffc0cb;
}




.navbar-nav .nav-link {
    color: #ffffff;
    /* white links */
}


/* Pink hover for nav links */
.navbar-nav .nav-link:hover {
    background-color: #ffc0cb;
    color: #2d1e4f;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
}

/* Social icons */
.social-icon i {
    font-size: 1.4rem;
    color: #2d1e4f;
}

.social-icon:hover i {
    color: #ffc0cb;
}


.service-card {
    background-color: #2d1e4f;
    /* purple */
    color: #ffffff;
    /* white text */
    border: none;
}

.service-card h5,
.service-card p {
    color: #ffffff;
    /* ensure headings + paragraph are white */
}

.service-card i {
    color: #ffffff;
    /* white icons */
}

/* Reusable purple background panel */
.bg-lostcoin {
    background-color: #2d1e4f;
    color: #ffffff;
}

/* Rounded edges on the review carousel */
#reviewCarousel .carousel-inner {
    border-radius: 1rem;
    overflow: hidden;
}

/* Purple footer with white text */
footer {
    background-color: #2d1e4f;
    color: #ffffff;
}

footer p {
    color: #ffffff;
}

/* Make carousel indicator dots black */
.carousel-indicators [data-bs-target] {
    background-color: #000;
    /* black dots */
    opacity: 1;
    /* fully visible */
}

/* Active dot also black */
.carousel-indicators .active {
    background-color: #000;
}

/* Move carousel dots lower */
.carousel-indicators {
    bottom: -10px;
    /* move down */
}

