@charset "UTF-8";
/* Donate sekce – DashCam Travel */

/* Mírné úpravy layoutu na této stránce */
#content {
    margin-top: 4rem;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

section {
    margin: 4rem 0rem;
}

/* =========================================================
   Dvě donate karty vedle sebe
   ========================================================= */

.dct-donate-two-cards {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2.5rem;
    flex-wrap: wrap; /* stackne je pod sebe na menších displejích */
	margin-top: 4rem;
}

/* =========================================================
   Společný styl karet (PayPal/Revolut + CZ účet)
   ========================================================= */

.dct-donate-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 2.4rem 2rem 2.2rem;

    width: 340px;
    max-width: 340px;
    flex: 1 0 340px;

    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #001435;
    box-sizing: border-box;

    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
    transform: translateZ(0);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* 👈 BYLO: space-between */
}

.dct-donate-card:hover,
.dct-donate-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* Logo nahoře – používá se v global kartě */
.dct-donate-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.dct-donate-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

/* Texty v kartě */
.dct-donate-text {
    margin-bottom: 1.6rem;
}

.dct-donate-title-main {
    margin: 0.2rem 0 0.35rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #001435;
}

.dct-donate-subtitle {
    margin: 0;
    font-size: 0.98rem;
    color: #4a4d52;
}

/* =========================================================
   PayPal / Revolut tlačítka
   ========================================================= */

.dct-donate-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* PayPal button (žluté) */
.dct-paypal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.9rem 1.4rem;
    background: #ffc439; /* PayPal yellow */
    color: #111b2b;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
    transition: transform 0.08s ease-out,
                box-shadow 0.08s ease-out,
                background-color 0.08s ease-out;
}

.dct-paypal-logo {
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    background: #003087; /* PayPal blue */
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.dct-paypal-text {
    white-space: nowrap;
}

.dct-paypal-button:hover {
    background: #ffb822;
    box-shadow: 0 8px 22px rgba(0,0,0,0.22);
    transform: translateY(-1px);
}

.dct-paypal-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Revolut button (modré) */
.dct-revolut-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0.9rem 1.4rem;
    background: #0054f5; /* Revolut blue */
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
    transition: transform 0.08s ease-out,
                box-shadow 0.08s ease-out,
                filter 0.08s ease-out;
}

.dct-revolut-logo {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #ffffff;
    color: #0054f5;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.dct-revolut-text {
    white-space: nowrap;
}

.dct-revolut-button:hover {
    filter: brightness(1.06);
    box-shadow: 0 8px 22px rgba(0,0,0,0.24);
    transform: translateY(-1px);
}

.dct-revolut-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Bezpečnostní poznámka pod tlačítky */
.donate-note {
    margin-top: auto;          /* posune poznámku na spodek karty */
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.dct-global-account {
    margin: 2rem 0;
}

.dct-cz-account {
    margin: 0.3rem 0;
}

.dct-cz-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: #001435;
    margin: 0;
}

.dct-qr-wrap {
    margin-top: 1rem;
    text-align: center;
}

.dct-qr-img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* ================================
   CHIPS – small labeled badges
   ================================ */

.dct-chip-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    min-height: 40px;   /* nebo podle reálné výšky chipů */
}

.dct-chip {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    display: inline-block;
    letter-spacing: 0.02em;
    color: #001435;
    background: #eef1f7;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: 0.15s ease-out;
    user-select: none;
}

.dct-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* PAYPAL chip – žlutý */
.dct-chip-paypal {
    background: #ffdd7a;
    color: #664200;
}

/* REVOLUT chip – modrý */
.dct-chip-revolut {
    background: #e3ecff;
    color: #0033cc;
}

/* INTERNATIONAL chip – pastel teal */
.dct-chip-international {
    background: #d8f7f4;
    color: #005f56;
}

/* CZECH chip – česká kombinace pastel modré */
.dct-chip-czech {
    background: #e4ecf9;
    color: #002b65;
}

#behindDevelopment {
    margin: 4em auto;
    text-align: center;
    padding: 0 0.5em;
}

#behindDevelopment .section-intro,
#behindDevelopment .section-outro {
    margin: 1.5em auto;
    line-height: 1.75rem;
    color: #444;
}

.behind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2em;
    margin-top: 3em;
    margin-bottom: 2em;
}

.behind-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.behind-grid .caption {
    margin-top: 0.8em;
    font-size: 0.85rem;
    color: #666;
}

.behind-item img {
    width: 100%;
    border-radius: 8px; /* stejný jako flexNonText */
    transition: transform .2s;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 20%), 0 4px 20px 0 rgb(0 0 0 / 19%);
}

.behind-item img:hover {
    transform: scale(1.15);
}

.one-dev {
    font-weight: 700;
    color: #2565AE;
}


/* =========================================================
   Responsivita
   ========================================================= */

@media (max-width: 820px) {
    .dct-donate-two-cards {
        flex-direction: column;
        align-items: center;
    }

    .dct-donate-card {
        width: 100%;
        max-width: 420px;
        flex: 0 0 auto;         /* ať se přizpůsobí obsahu */
    }
}

@media (max-width: 480px) {
    .dct-donate-card {
        padding: 1.8rem 1.4rem 1.9rem;
        border-radius: 18px;
    }

    .dct-donate-title-main {
        font-size: 1.4rem;
    }

    .dct-paypal-button,
    .dct-revolut-button {
        max-width: 100%;
    }
}
