﻿/*| Element | Kleur | Hex | Omschrijving |
| ------------------------- | ----- | --------- | ---------------------------------------------------------------------- |
| **Primair blauw** | 🔵 | `#1D3557` | Diep vertrouwenwekkend blauw, minder schreeuwerig dan standaard blauw. |
| **Accent groen** | 🟢 | `#4CAF50` | Krachtig maar niet neon, geeft een frisse tech-vibe. |
| **Achtergrond** | ⚪ | `#F5F7FA` | Lichtgrijs-blauw, oogvriendelijk en modern. |
| **Donkere tekst** | ⚫ | `#1A1A1A` | Bijna zwart voor goede leesbaarheid. |
| **Optioneel neon-accent** | 💚 | `#00FF9D` | Voor subtiele hover- of glow-effecten. Niet voor hoofdgebruik. |
*/

:root {
    --bs-primary: #4CAF50;
    --bs-primary-rgb: 76, 175, 80;
    --bs-secondary: #1D3557;
    --bs-secondary-rgb: 29, 53, 87;
    --bs-body-bg: #F5F7FA; /* Zwarte achtergrond als je echt een 'tech/mining' feel wil */
    --bs-body-color: #1A1A1A;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #43a047 !important; /* iets donkerder groen voor hover */
    border-color: #43a047 !important;
}

.btn-secondary {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    color: #fff !important;
}

    .btn-secondary:hover {
        background-color: #0D2547 !important; /* iets donkerder blauw voor hover */
        border-color: #0D2547 !important;
    }

.btn-outline-secondary {
    color: #1D3557;
    border-color: #1D3557;
}

    .btn-outline-secondary:hover,
    .btn-outline-secondary:active,
    .btn-outline-secondary:focus {
        background-color: #1D3557;
        color: white;
    }

/* Info button content homepage */
#infoButton {
    background-color: #063543
}
#infoButton:hover {
    color: white;
    background-color: #063543;
}

/* Glow */
.text-glow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Rounded corners */
.rounded-6 {
    border-radius: 1.6rem !important;
}
.rounded-top-6 {
    border-top-left-radius: 1.6rem !important;
    border-top-right-radius: 1.6rem !important;
}
.rounded-bottom-6 {
    border-bottom-left-radius: 1.6rem !important;
    border-bottom-right-radius: 1.6rem !important;
}


/* Currencies */
.bg-currency-BTC {
    background-color: #f7931a; /* officiële oranje kleur van Bitcoin */
}
.bg-currency-LTC {
    background-color: #BFBBBB; /* officiële kleur van Litecoin */
}
.bg-currency-DOGE {
    background-color: #C2A633; /* officiële kleur van Dogecoin */
}
.currency-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    font-size: 0.8em;
}


html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #212529;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner-content {
    max-width: 800px;
    margin: 0 auto;
}


.faq-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #444;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.25rem;
}

.accordion-button {
    background-color: var(--bs-info-bg-subtle);
    color: #212529;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

    .accordion-button:not(.collapsed) {
        background-color: var(--bs-info);
        color: white;
    }

    .accordion-button::after {
        transition: transform 0.2s ease;
    }

    .accordion-button:not(.collapsed)::after {
        transform: rotate(90deg);
    }

.accordion-body {
    background-color: #f1f3f5;
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.25rem;
    color: #333;
}

.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}