/* BUTTON TELEFON */

.button-tel {
    background-color: #9EC83D; 
    border-radius: 100px;
    color: #ffffff;
    padding: 30px 30px;
    text-align: center;
    display: flex;
    font-weight: 800;
    font-size: 18px;
    width: 70px;
    height: 70px;
    margin: 0px 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    background-image: url('../img/tel.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
}

a.button-tel {
    transition: all 500ms;
}

a.button-tel:hover {
    background-color: #2c70ee;
    padding: 30px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

/* BUTTON EMAIL */

.button-mail {
    background-color: #9EC83D; 
    border-radius: 100px;
    color: #ffffff;
    padding: 30px 30px;
    text-align: center;
    display: flex;
    font-weight: 800;
    font-size: 18px;
    width: 70px;
    height: 70px;
    margin: 0px 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    background-image: url('../img/mail.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
}

a.button-mail {
    transition: all 500ms;
}

a.button-mail:hover {
    background-color: #2c70ee;
    padding: 30px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

/* BUTTON HERO */

.button-hero {
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid #ffffff;
    color: #ffffff;
    display: inline-flex;
    align-items: center;      /* vertikálně */
    justify-content: center;  /* horizontálně */
    font-weight: 800;
    font-size: 24px;
    width: 260px;
    height: 70px;
    letter-spacing: 3px;
    margin: 30px 0;   /* ↑↓ mezera nad a pod */
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

a.button-hero {
    transition: all 500ms;
}

a.button-hero:hover {
    background-color: transparent;
    border: 2px solid #9EC83D;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}


/* BUTTON tel a mail */

.button-kontakt {
    background-color: #2c70ee; 
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;      /* vertikálně */
    justify-content: center;  /* horizontálně */
    gap: 5px;
    font-weight: 800;
    font-size: 18px;
    width: 260px;
    height: 70px;
    letter-spacing: 1px;
    margin: 0px 0;   /* ↑↓ mezera nad a pod */
    cursor: pointer;
    box-shadow: 0 8px 6px -4px rgba(0, 0, 0, 0.25);
}

a.button-kontakt {
    transition: all 500ms;
}

a.button-kontakt:hover {
    background-color: #9EC83D;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.button-kontakt .icon {
    width: 50px;
    height: 50px;
    display: block;          /* ⬅️ odstraní „textové“ chování */
    fill: currentColor;
}


.button-kontakt2 {
    background-color: transparent;
    border-radius: 10px;
    border: 1px solid #2c70ee;
    color: #ffffff;
    display: inline-flex;
    align-items: center;      /* vertikálně */
    justify-content: center;  /* horizontálně */
    gap: 5px;
    font-weight: 800;
    font-size: 14px;
    width: 200px;
    height: 50px;
    letter-spacing: 1px;
    margin: 0px 0;   /* ↑↓ mezera nad a pod */
    cursor: pointer;
    box-shadow: 0 8px 6px -4px rgba(0, 0, 0, 0.25);
}

a.button-kontakt2 {
    transition: all 500ms;
}

a.button-kontakt2:hover {
    background-color: transparent;
    border-radius: 10px;
    border: 1px solid #9EC83D;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.button-kontakt2 .icon {
    width: 40px;
    height: 40px;
    display: block;          /* ⬅️ odstraní „textové“ chování */
    fill: currentColor;
}




/* BUTTON NA PODSTRÁNKU */

.button-link {
    background-color: transparent; 
    border-radius: 0px;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: inline-flex;
    align-items: center;      /* vertikálně */
    justify-content: center;  /* horizontálně */
    font-weight: 400;
    font-size: 16px;
    width: 220px;
    height: 50px;
    letter-spacing: 1.5px;
    margin: 30px 0;   /* ↑↓ mezera nad a pod */
    cursor: pointer;
}

a.button-link {
    transition: all 500ms;
}

a.button-link:hover {
    background-color: transparent;
    width: 200px;
    height: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.buttonS {
    background-color: #2c70ee; 
    border-radius: 100px;
    color: #ffffff;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
}