/* ===== CONTACT ===== */

.contact-page {
    min-height: calc(100vh - 80px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 80px 20px;
}


.contact-card {
    width: 100%;
    max-width: 700px;

    padding: 55px 45px;

    background: #151515;

    border: 1px solid rgba(255, 140, 0, 0.15);

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);

    text-align: center;

    position: relative;

    overflow: hidden;
}


/* Oranžová čára nahoře */

.contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #ff8c00;
}


/* Ikona */

.contact-icon {
    font-size: 55px;

    margin-bottom: 10px;
}


/* Nadpis */

.contact-card h1 {
    margin: 0;

    color: #ff8c00;

    font-size: 52px;

    font-weight: 800;
}


/* Úvod */

.contact-intro {
    margin: 15px 0 35px;

    color: #d0d0d0;

    font-size: 19px;
}


/* ===== TLAČÍTKA ===== */

.contact-options {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.contact-option {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 20px;

    background: #202020;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 14px;

    color: white;

    text-decoration: none;

    text-align: left;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.contact-option:hover {
    transform: translateY(-3px);

transform: scale(1.08);
    
    background: #252525;

    border-color: rgba(255, 140, 0, 0.4);
}


/* Ikona tlačítka */

.contact-option-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 140, 0, 0.12);

    border-radius: 11px;

    font-size: 22px;
}


/* Název */

.contact-option strong {
    display: block;

    color: white;

    font-size: 17px;

    margin-bottom: 3px;
}


/* Malý popis */

.contact-option small {
    color: #999;

    font-size: 14px;
}


/* Spodní text */

.contact-note {
    margin: 30px 0 0;

    color: #888;

    font-size: 14px;

    line-height: 1.6;
}


/* ===== MOBIL ===== */

@media (max-width: 600px) {

    .contact-page {
        padding: 50px 15px;
    }

    .contact-card {
        padding: 45px 22px;
    }

    .contact-card h1 {
        font-size: 42px;
    }

}

#contactToast {

    position: fixed;

    left: 50%;
    bottom: 25px;

    transform:
        translateX(-50%)
        translateY(80px);

    background: #222;

    color: white;

    padding: 14px 22px;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.4);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    z-index: 9999;
}


#contactToast.show {

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}
