/*
 * Globals
 */


/* Custom default button */
.btn-primary {
  background-color: #e5780f;
  border-color: #e5780f;
  color: #ffffff;
  text-shadow: none; /* Prevent inheritance from `body` */
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #d16a0e; /* Darker orange on hover */
    border-color: #c5640d;
    text-decoration: none; /* Remove underline from link */
}

.btn-primary:focus {
    color: #ffffff;
    background-color: #d16a0e;
    border-color: #c5640d;
    box-shadow: 0 0 0 .25rem rgba(229, 120, 15, 0.5);
}

.btn-primary:active {
    color: #ffffff;
    background-color: #b85c0d; /* Even darker when clicked */
    border-color: #ad570c;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #484848;
  text-shadow: none; /* Prevent inheritance from `body` */
}

.btn-secondary:hover {
    color: #000000;
}

.text-success {
    color: #15d10e !important;
}

/*
 * Base structure
 */

html, body {
    background-color: #FFFFFF;
}

h1, h2, h3, h4 {
    font-family: "Rokkitt";
}

header .display-2 .nav-link {
    color: #000;
}

header nav .nav-link {
    color: #000;
    font-size: 18px;
}
header nav .nav-link:hover {
    color: #484848;
}

.background-gray {
    background-color: #484848;
}

.background-dark {
    background-color: #000000;
}

.header-logo {
    max-width: 70px;
    margin-right: 26px;
    margin-bottom: 20px;
}

.hero-image {
    max-width: 400px;
    margin-left: 50px;
}

.product-section .card {
    border: none;
    background-color: #f8f9fa;
    text-align: left;
    max-width: 60%;
    margin-bottom: 1.5rem; /* Spacing between cards */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.product-section .product-card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    padding-right: 2rem;
}

.product-section .product-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    padding-left: 2rem;
}

.product-image {
    max-width: 280px;
    padding: 1.5rem;
}

.how-it-works-step {
    padding: 1rem;
}

main a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

main a:hover {
    text-decoration: underline;
}

.list-group-item {
    background-color: transparent !important;
    border: none;
}

.table.no-style td {
    background-color: transparent !important;
    border: none !important;
}

.homepage-banner {
  background-image: url('/images/banner-atoomkit.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  color: white;
}

.hero-text-banner {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  max-width: 650px;
}

.faq-card {
    position: relative;
    background-color: #f8f9fa;
    border-radius: .5rem;
    padding: 3rem;
    padding-right: 350px; /* Make space for the image */
    overflow: hidden; /* Ensures the image respects the card's border-radius */
}

.faq-content {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    padding-right: 2rem;
}

.faq-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 350px;
    z-index: 0;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.banner-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    color: white;
}

.banner-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: #15d10e;
}

.testimonial-section .blockquote {
    font-style: italic;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-section .blockquote-footer {
    color: #6c757d;
}

@media (max-width: 768px) {
    .faq-card {
        padding: 2rem;
        text-align: center;
    }

    .faq-content {
        padding-left: 0;
        border-left: none;
    }

    .faq-image {
        position: relative;
        width: 50%;
        margin: 2rem auto 0 auto;
        right: auto;
        bottom: auto;
    }

    .product-section .card {
        max-width: 95%;
        padding: 1rem 0;
        text-align: center;
    }

    .product-section .product-card:nth-child(odd),
    .product-section .product-card:nth-child(even) {
        margin-left: auto;
        margin-right: auto;
    }

    .product-image {
        padding-bottom: 0;
    }
}